Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated-from:a1ae955dd09d1cf3d9d820d45ef6354f287ba25a14bff6f3643b446d7825f2b8 DO NOT REMOVE, DO UPDATE

FROM golang:1.24 as builder
FROM golang:1.25 as builder
WORKDIR /src
ARG VERSION

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- /var/lib/mysql

ftp:
image: moov/fsftp:v0.2.1
image: moov/fsftp:v0.2.2
ports:
- "2121:2121"
- "30000-30009:30000-30009"
Expand All @@ -42,7 +42,7 @@ services:
- "demo:password:::inbound,outbound,reconciliation,returned"

kafka1:
image: docker.redpanda.com/redpandadata/redpanda:v23.2.21
image: docker.redpanda.com/redpandadata/redpanda:v23.3.21
container_name: kafka1
healthcheck: { test: curl -f localhost:9644/v1/status/ready, interval: 1s, start_period: 30s }
volumes:
Expand Down Expand Up @@ -70,7 +70,7 @@ services:
- --default-log-level=info

topics:
image: docker.redpanda.com/redpandadata/redpanda:v23.2.21
image: docker.redpanda.com/redpandadata/redpanda:v23.3.21
depends_on:
kafka1:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion docs/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin]
26 changes: 13 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,40 +5,40 @@ module github.com/moov-io/achgateway
go 1.24.2

require (
cloud.google.com/go/spanner v1.83.0
cloud.google.com/go/spanner v1.86.0
github.com/PagerDuty/go-pagerduty v1.8.0
github.com/ProtonMail/go-crypto v1.3.0
github.com/Shopify/sarama v1.38.1
github.com/Shopify/sarama v1.46.2
github.com/go-kit/kit v0.13.0
github.com/google/uuid v1.6.0
github.com/gorilla/mux v1.8.1
github.com/hashicorp/go-retryablehttp v0.7.8
github.com/igrmk/treemap/v2 v2.0.1
github.com/jlaffaye/ftp v0.2.0
github.com/moov-io/ach v1.52.0
github.com/moov-io/base v0.57.0
github.com/moov-io/ach v1.53.0
github.com/moov-io/base v0.60.0
github.com/moov-io/cryptfs v0.9.0
github.com/moov-io/go-ftp v0.4.0
github.com/moov-io/go-sftp v0.16.0
github.com/moov-io/go-sftp v0.16.1
github.com/ory/dockertest/v3 v3.12.0
github.com/ory/mail/v3 v3.0.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.22.0
github.com/rickar/cal/v2 v2.1.24
github.com/prometheus/client_golang v1.23.2
github.com/rickar/cal/v2 v2.1.25
github.com/robfig/cron/v3 v3.0.1
github.com/sethvargo/go-retry v0.3.0
github.com/slack-go/slack v0.17.3
github.com/spf13/viper v1.20.1
github.com/stretchr/testify v1.10.0
github.com/spf13/viper v1.21.0
github.com/stretchr/testify v1.11.1
go.opentelemetry.io/otel v1.37.0
go.opentelemetry.io/otel/trace v1.37.0
gocloud.dev v0.41.0
gocloud.dev/pubsub/kafkapubsub v0.34.0
goftp.io/server v0.4.1
golang.org/x/crypto v0.39.0
golang.org/x/sync v0.15.0
golang.org/x/text v0.26.0
google.golang.org/api v0.240.0
golang.org/x/crypto v0.43.0
golang.org/x/sync v0.17.0
golang.org/x/text v0.30.0
google.golang.org/api v0.252.0
)

require (
Expand Down
Loading