Skip to content

Commit 79a5a20

Browse files
committed
Merge remote-tracking branch 'upstream/master' into add-sasl-mechanism-config
2 parents e9f355a + da84aff commit 79a5a20

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+2343
-693
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
if: runner.os != 'Linux'
4747
run: go test ./... -count 1 -short
4848

49-
- uses: actions/upload-artifact@v2
49+
- uses: actions/upload-artifact@v4
5050
if: ${{ always() }}
5151
with:
5252
name: "go-tooling-reports.zip"

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ jobs:
5353
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
5454

5555
- name: Save Release URL File for publish
56-
uses: actions/upload-artifact@v1
56+
uses: actions/upload-artifact@v4
5757
with:
5858
name: release_url
5959
path: release_url.txt
60+
retention-days: 1
6061

6162
publish:
6263
name: Publish
@@ -76,9 +77,11 @@ jobs:
7677
uses: actions/checkout@v2
7778

7879
- name: Load Release URL File from release job
79-
uses: actions/download-artifact@v1
80+
uses: actions/download-artifact@v4
8081
with:
8182
name: release_url
83+
path: release_url
84+
retention-days: 1
8285

8386
- name: Install
8487
run: make install

CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
## v0.31.5 (Released 2025-01-23)
2+
3+
IMPROVEMENTS
4+
5+
- add SkipChmodAfterUpload to marshal if for SFTP config
6+
7+
BUILD
8+
9+
- build: update cloud.google.com/go/spanner v1.68.0
10+
- build: update github.com/PagerDuty/go-pagerduty v1.8.0
11+
- build: update github.com/ProtonMail/go-crypto v1.1.5
12+
- build: update github.com/moov-io/ach v1.45.3
13+
- build: update github.com/moov-io/base v0.53.0
14+
- build: update github.com/moov-io/go-ftp v0.4.0
15+
- build: update github.com/moov-io/go-sftp v0.15.0
16+
- build: update github.com/prometheus/client_golang v1.20.5
17+
- build: update github.com/rickar/cal/v2 v2.1.21
18+
- build: update github.com/sethvargo/go-retry v0.3.0
19+
- build: update github.com/slack-go/slack v0.15.0
20+
- build: update github.com/stretchr/testify v1.10.0
21+
- build: update golang.org/x/crypto v0.32.0
22+
- build: update golang.org/x/sync v0.10.0
23+
- build: update golang.org/x/text v0.21.0
24+
- build: update google.golang.org/api v0.199.0
25+
26+
## v0.31.4 (Released 2025-01-03)
27+
28+
IMPROVEMENTS
29+
30+
- upload: pass SkipChmodAfterUpload for SFTP
31+
32+
## v0.31.3 (Released 2024-09-27)
33+
34+
IMPROVEMENTS
35+
36+
- fix(repository): correct an issue with shard querying in spanner
37+
38+
BUILD
39+
40+
- build: update upload/download actions
41+
- chore: update go/spanner, moov-io/base,cryptfs, otel, etc
42+
43+
## v0.31.2 (Released 2024-08-30)
44+
45+
BUILD
46+
47+
- build: update deps
48+
- build: update moov-io/ach to read validateOpts in JSON
49+
50+
## v0.31.1 (Released 2024-08-21)
51+
52+
IMPROVEMENTS
53+
54+
- fix: init in-memory files and shard repositories as defaults
55+
56+
## v0.31.0 (Released 2024-07-12)
57+
58+
IMPROVEMENTS
59+
60+
- feat: add client SFTP file support in config and fix docs
61+
- feat: add support for Spanner as a data repository (#220)
62+
63+
BUILD
64+
65+
- build: update deps, moov-io/ach and moov-io/base
66+
- chore: update cryptfs version and test keys (#235)
67+
168
## v0.30.4 (Released 2024-04-12)
269

370
IMPROVEMENTS

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ build:
3131

3232
.PHONY: setup
3333
setup:
34-
docker-compose up -d --force-recreate --remove-orphans
34+
docker compose up -d --force-recreate --remove-orphans
3535

3636
.PHONY: check
3737
check:
@@ -45,8 +45,8 @@ endif
4545

4646
.PHONY: teardown
4747
teardown:
48-
-docker-compose down --remove-orphans
49-
-docker-compose rm -sfv
48+
-docker compose down --remove-orphans
49+
-docker compose rm -sfv
5050

5151
docker: update
5252
docker build --pull --build-arg VERSION=${VERSION} -t moov/achgateway:${VERSION} -f Dockerfile .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ We publish a [public Docker image `moov/achgateway`](https://hub.docker.com/r/mo
3434
Start achgateway and an FTP server:
3535
```
3636
# Inside of ./examples/getting-started/
37-
$ docker-compose up achgateway
37+
$ docker compose up achgateway
3838
...
3939
achgateway_1 | ts=2021-06-18T23:38:06Z msg="public listening on :8484" version=v0.4.1 level=info app=achgateway
4040
achgateway_1 | ts=2021-06-18T23:38:06Z msg="listening on [::]:9494" version=v0.4.1 level=info app=achgateway

assets.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ package achgateway
22

33
import "embed"
44

5-
//go:embed migrations/*.sql
6-
var MigrationFS embed.FS
5+
//go:embed migrations/*.up.mysql.sql
6+
var MySqlMigrationFS embed.FS
7+
8+
//go:embed migrations/*.up.spanner.sql
9+
var SpannerMigrationFS embed.FS
710

811
//go:embed configs/config.default.yml
912
var ConfigFS embed.FS

docs/Gemfile.lock

Lines changed: 51 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (6.1.7.6)
4+
activesupport (6.1.7.8)
55
concurrent-ruby (~> 1.0, >= 1.0.2)
66
i18n (>= 1.6, < 2)
77
minitest (>= 5.1)
88
tzinfo (~> 2.0)
99
zeitwerk (~> 2.3)
10-
addressable (2.8.5)
11-
public_suffix (>= 2.0.2, < 6.0)
12-
base64 (0.1.1)
13-
bulma-clean-theme (0.13.3)
10+
addressable (2.8.7)
11+
public_suffix (>= 2.0.2, < 7.0)
12+
base64 (0.2.0)
13+
bulma-clean-theme (0.14.0)
1414
jekyll (>= 3.9, < 5.0)
1515
jekyll-feed (~> 0.15)
1616
jekyll-paginate (~> 1.1)
@@ -20,11 +20,11 @@ GEM
2020
coffee-script (2.4.1)
2121
coffee-script-source
2222
execjs
23-
coffee-script-source (1.11.1)
23+
coffee-script-source (1.12.2)
2424
colorator (1.1.0)
2525
commonmarker (0.23.10)
26-
concurrent-ruby (1.2.2)
27-
dnsruby (1.70.0)
26+
concurrent-ruby (1.3.4)
27+
dnsruby (1.72.2)
2828
simpleidn (~> 0.2.1)
2929
em-websocket (0.5.3)
3030
eventmachine (>= 0.12.9)
@@ -33,24 +33,25 @@ GEM
3333
ffi (>= 1.15.0)
3434
eventmachine (1.2.7)
3535
execjs (2.9.1)
36-
faraday (2.7.11)
36+
faraday (2.8.1)
3737
base64
3838
faraday-net_http (>= 2.0, < 3.1)
3939
ruby2_keywords (>= 0.0.4)
4040
faraday-net_http (3.0.2)
41-
ffi (1.16.3)
41+
ffi (1.17.0-arm64-darwin)
42+
ffi (1.17.0-x86_64-darwin)
4243
forwardable-extended (2.6.0)
43-
gemoji (3.0.1)
44-
github-pages (228)
45-
github-pages-health-check (= 1.17.9)
46-
jekyll (= 3.9.3)
47-
jekyll-avatar (= 0.7.0)
48-
jekyll-coffeescript (= 1.1.1)
44+
gemoji (4.1.0)
45+
github-pages (231)
46+
github-pages-health-check (= 1.18.2)
47+
jekyll (= 3.9.5)
48+
jekyll-avatar (= 0.8.0)
49+
jekyll-coffeescript (= 1.2.2)
4950
jekyll-commonmark-ghpages (= 0.4.0)
50-
jekyll-default-layout (= 0.1.4)
51-
jekyll-feed (= 0.15.1)
51+
jekyll-default-layout (= 0.1.5)
52+
jekyll-feed (= 0.17.0)
5253
jekyll-gist (= 1.5.0)
53-
jekyll-github-metadata (= 2.13.0)
54+
jekyll-github-metadata (= 2.16.1)
5455
jekyll-include-cache (= 0.2.1)
5556
jekyll-mentions (= 1.6.0)
5657
jekyll-optional-front-matter (= 0.3.2)
@@ -77,28 +78,28 @@ GEM
7778
jekyll-theme-tactile (= 0.2.0)
7879
jekyll-theme-time-machine (= 0.2.0)
7980
jekyll-titles-from-headings (= 0.5.3)
80-
jemoji (= 0.12.0)
81-
kramdown (= 2.3.2)
81+
jemoji (= 0.13.0)
82+
kramdown (= 2.4.0)
8283
kramdown-parser-gfm (= 1.1.0)
8384
liquid (= 4.0.4)
8485
mercenary (~> 0.3)
8586
minima (= 2.5.1)
8687
nokogiri (>= 1.13.6, < 2.0)
87-
rouge (= 3.26.0)
88+
rouge (= 3.30.0)
8889
terminal-table (~> 1.4)
89-
github-pages-health-check (1.17.9)
90+
github-pages-health-check (1.18.2)
9091
addressable (~> 2.3)
9192
dnsruby (~> 1.60)
92-
octokit (~> 4.0)
93-
public_suffix (>= 3.0, < 5.0)
93+
octokit (>= 4, < 8)
94+
public_suffix (>= 3.0, < 6.0)
9495
typhoeus (~> 1.3)
9596
html-pipeline (2.14.3)
9697
activesupport (>= 2)
9798
nokogiri (>= 1.4)
9899
http_parser.rb (0.8.0)
99-
i18n (1.14.1)
100+
i18n (1.14.5)
100101
concurrent-ruby (~> 1.0)
101-
jekyll (3.9.3)
102+
jekyll (3.9.5)
102103
addressable (~> 2.4)
103104
colorator (~> 1.0)
104105
em-websocket (~> 0.5)
@@ -111,27 +112,27 @@ GEM
111112
pathutil (~> 0.9)
112113
rouge (>= 1.7, < 4)
113114
safe_yaml (~> 1.0)
114-
jekyll-avatar (0.7.0)
115+
jekyll-avatar (0.8.0)
115116
jekyll (>= 3.0, < 5.0)
116-
jekyll-coffeescript (1.1.1)
117+
jekyll-coffeescript (1.2.2)
117118
coffee-script (~> 2.2)
118-
coffee-script-source (~> 1.11.1)
119+
coffee-script-source (~> 1.12)
119120
jekyll-commonmark (1.4.0)
120121
commonmarker (~> 0.22)
121122
jekyll-commonmark-ghpages (0.4.0)
122123
commonmarker (~> 0.23.7)
123124
jekyll (~> 3.9.0)
124125
jekyll-commonmark (~> 1.4.0)
125126
rouge (>= 2.0, < 5.0)
126-
jekyll-default-layout (0.1.4)
127-
jekyll (~> 3.0)
128-
jekyll-feed (0.15.1)
127+
jekyll-default-layout (0.1.5)
128+
jekyll (>= 3.0, < 5.0)
129+
jekyll-feed (0.17.0)
129130
jekyll (>= 3.7, < 5.0)
130131
jekyll-gist (1.5.0)
131132
octokit (~> 4.2)
132-
jekyll-github-metadata (2.13.0)
133+
jekyll-github-metadata (2.16.1)
133134
jekyll (>= 3.4, < 5.0)
134-
octokit (~> 4.0, != 4.4.0)
135+
octokit (>= 4, < 7, != 4.4.0)
135136
jekyll-include-cache (0.2.1)
136137
jekyll (>= 3.7, < 5.0)
137138
jekyll-mentions (1.6.0)
@@ -202,24 +203,24 @@ GEM
202203
jekyll (>= 3.3, < 5.0)
203204
jekyll-watch (2.2.1)
204205
listen (~> 3.0)
205-
jemoji (0.12.0)
206-
gemoji (~> 3.0)
206+
jemoji (0.13.0)
207+
gemoji (>= 3, < 5)
207208
html-pipeline (~> 2.2)
208209
jekyll (>= 3.0, < 5.0)
209-
kramdown (2.3.2)
210+
kramdown (2.4.0)
210211
rexml
211212
kramdown-parser-gfm (1.1.0)
212213
kramdown (~> 2.0)
213214
liquid (4.0.4)
214-
listen (3.8.0)
215+
listen (3.9.0)
215216
rb-fsevent (~> 0.10, >= 0.10.3)
216217
rb-inotify (~> 0.9, >= 0.9.10)
217218
mercenary (0.3.6)
218219
minima (2.5.1)
219220
jekyll (>= 3.5, < 5.0)
220221
jekyll-feed (~> 0.9)
221222
jekyll-seo-tag (~> 2.1)
222-
minitest (5.20.0)
223+
minitest (5.25.1)
223224
nokogiri (1.13.10-arm64-darwin)
224225
racc (~> 1.4)
225226
nokogiri (1.13.10-x86_64-darwin)
@@ -229,13 +230,14 @@ GEM
229230
sawyer (~> 0.9)
230231
pathutil (0.16.2)
231232
forwardable-extended (~> 2.6)
232-
public_suffix (4.0.7)
233-
racc (1.7.1)
233+
public_suffix (5.1.1)
234+
racc (1.8.1)
234235
rb-fsevent (0.11.2)
235-
rb-inotify (0.10.1)
236+
rb-inotify (0.11.1)
236237
ffi (~> 1.0)
237-
rexml (3.2.6)
238-
rouge (3.26.0)
238+
rexml (3.3.6)
239+
strscan
240+
rouge (3.30.0)
239241
ruby2_keywords (0.0.5)
240242
rubyzip (2.3.2)
241243
safe_yaml (1.0.5)
@@ -247,19 +249,16 @@ GEM
247249
sawyer (0.9.2)
248250
addressable (>= 2.3.5)
249251
faraday (>= 0.17.3, < 3)
250-
simpleidn (0.2.1)
251-
unf (~> 0.1.4)
252+
simpleidn (0.2.3)
253+
strscan (3.1.0)
252254
terminal-table (1.8.0)
253255
unicode-display_width (~> 1.1, >= 1.1.1)
254-
typhoeus (1.4.0)
256+
typhoeus (1.4.1)
255257
ethon (>= 0.9.0)
256258
tzinfo (2.0.6)
257259
concurrent-ruby (~> 1.0)
258-
unf (0.1.4)
259-
unf_ext
260-
unf_ext (0.0.8.2)
261260
unicode-display_width (1.8.0)
262-
zeitwerk (2.6.12)
261+
zeitwerk (2.6.17)
263262

264263
PLATFORMS
265264
universal-darwin-21

docs/config.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,8 @@ ACHGateway:
254254
Hostname: <host>
255255
Username: <string>
256256
[ Password: <secret> ]
257-
[ ClientPrivateKey: <filename> ]
257+
[ ClientPrivateKey: <string> ]
258+
[ ClientPrivateKeyFile: <filename> ]
258259
[ HostPublicKey: <filename> ]
259260
[ DialTimeout: <duration> | default = 10s ]
260261
[ MaxConnectionsPerFile: <number> | default = 1 ]

docs/usage/docker.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ menubar: docs-menu
88

99
# Docker
1010

11-
You can download a [docker image called `moov/achgateway`](https://hub.docker.com/r/moov/achgateway/) from Docker Hub or use this repository. However it's recommended to [download the code repository](https://github.com/moov-io/achgateway) and running `docker-compose up` in the root directory.
11+
You can download a [docker image called `moov/achgateway`](https://hub.docker.com/r/moov/achgateway/) from Docker Hub or use this repository. However it's recommended to [download the code repository](https://github.com/moov-io/achgateway) and running `docker compose up` in the root directory.
1212

1313
```
14-
$ docker-compose up achgateway
14+
# Inside of ./examples/getting-started/
15+
$ docker compose up achgateway
1516
...
1617
achgateway_1 | ts=2021-06-18T23:38:06Z msg="public listening on :8484" version=v0.4.1 level=info app=achgateway
1718
achgateway_1 | ts=2021-06-18T23:38:06Z msg="listening on [::]:9494" version=v0.4.1 level=info app=achgateway

0 commit comments

Comments
 (0)