bsb 1.4.10 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/ci.yml +2 -2
- data/.github/workflows/publish.yml +1 -1
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/update_bsb_db.yml +2 -2
- data/.release-please-manifest.json +1 -1
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +21 -0
- data/Gemfile +3 -2
- data/bsb.gemspec +1 -1
- data/config/bsb_bank_list.json +10 -9
- data/config/bsb_db.json +3418 -943
- data/lib/bsb/version.rb +1 -1
- data/test/test_helper.rb +1 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d0ba5337e81172a688a7f3e833bfe2095c20ff82ba1d440249cdcfb78e1f1560
|
|
4
|
+
data.tar.gz: 4f34a5a0e1d416a1f63416be0bea17467f2aad5564dd028b1dda980d7f953101
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd6fed3cb1c4a45a72be527a76356da6ddfd916cd070333f4a03c21d1d9688df162d379e15e1e52c84d63806359b4c651656e668870516e4fac527500010a380
|
|
7
|
+
data.tar.gz: ed725d00d284906fecbfd998818a47f8f7453e0f101c1b26408873c13f16ada726c19a7868718bd3bc96cd2957df48eedd4975760734a5e936cbbdafe4974586
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
AUSPAYNET_SUB_KEY: ${{secrets.AUSPAYNET_SUB_KEY}}
|
|
13
13
|
steps:
|
|
14
14
|
- name: Checkout
|
|
15
|
-
uses: actions/checkout@
|
|
15
|
+
uses: actions/checkout@v6
|
|
16
16
|
|
|
17
17
|
- name: Setup Ruby
|
|
18
18
|
uses: ruby/setup-ruby@v1
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
run: rm -f config/latest_update.json && rm -f ./tmp/key.csv
|
|
33
33
|
|
|
34
34
|
- name: Create Pull Request
|
|
35
|
-
uses: peter-evans/create-pull-request@
|
|
35
|
+
uses: peter-evans/create-pull-request@v8
|
|
36
36
|
with:
|
|
37
37
|
branch: update-bsb-db
|
|
38
38
|
title: "fix: Update BSB Database"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{".":"1.
|
|
1
|
+
{".":"1.5.0"}
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.0](https://github.com/coinjar/bsb/compare/v1.4.11...v1.5.0) (2026-06-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Add Ruby 4.0 support ([#131](https://github.com/coinjar/bsb/issues/131)) ([6e684bc](https://github.com/coinjar/bsb/commit/6e684bc378ab0640810678a96241401d2ccf1f52))
|
|
9
|
+
* Remove Ruby 3.2 support (EOL) ([#127](https://github.com/coinjar/bsb/issues/127)) ([08556c4](https://github.com/coinjar/bsb/commit/08556c4dad8d0746b471142c14f914d6ec3229e6))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* Update BSB Database ([#139](https://github.com/coinjar/bsb/issues/139)) ([1cd15da](https://github.com/coinjar/bsb/commit/1cd15dac148529bdfe3f56296cc83bfaa6226ee7))
|
|
15
|
+
|
|
16
|
+
## [1.4.11](https://github.com/coinjar/bsb/compare/v1.4.10...v1.4.11) (2026-05-05)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* Add minitest/mock as its own gem, for minitest 6+ ([#128](https://github.com/coinjar/bsb/issues/128)) ([31fcf2b](https://github.com/coinjar/bsb/commit/31fcf2bb2d44052e74099e261d68a5a5f102b29e))
|
|
22
|
+
* Update BSB Database ([#126](https://github.com/coinjar/bsb/issues/126)) ([2a58a66](https://github.com/coinjar/bsb/commit/2a58a66e13046eeca0543eca1297910f42cdf1a2))
|
|
23
|
+
|
|
3
24
|
## [1.4.10](https://github.com/coinjar/bsb/compare/v1.4.9...v1.4.10) (2026-02-19)
|
|
4
25
|
|
|
5
26
|
|
data/Gemfile
CHANGED
|
@@ -5,12 +5,13 @@ source 'https://rubygems.org'
|
|
|
5
5
|
# Specify your gem's dependencies in bsb.gemspec
|
|
6
6
|
gemspec
|
|
7
7
|
|
|
8
|
-
gem 'bundler'
|
|
8
|
+
gem 'bundler'
|
|
9
9
|
gem 'csv'
|
|
10
10
|
gem 'faraday'
|
|
11
|
+
gem 'minitest-mock'
|
|
11
12
|
gem 'minitest-stub-const'
|
|
12
13
|
gem 'rake', '~> 13.0'
|
|
13
14
|
gem 'rubocop'
|
|
14
15
|
gem 'vcr'
|
|
15
16
|
|
|
16
|
-
gem 'faraday-follow_redirects', '~> 0.
|
|
17
|
+
gem 'faraday-follow_redirects', '~> 0.5.0'
|
data/bsb.gemspec
CHANGED
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
19
19
|
spec.require_paths = ['lib']
|
|
20
20
|
|
|
21
|
-
spec.required_ruby_version = '>= 3.
|
|
21
|
+
spec.required_ruby_version = '>= 3.3.0'
|
|
22
22
|
|
|
23
23
|
spec.add_dependency 'activemodel'
|
|
24
24
|
|
data/config/bsb_bank_list.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"633": "Bendigo and Adelaide Bank Limited",
|
|
22
22
|
"980": "Bank of China (Australia) Limited",
|
|
23
23
|
"533": "Police & Nurses Limited",
|
|
24
|
-
"252": "
|
|
24
|
+
"252": "Australian Settlements Limited (trading as Banking Circle)",
|
|
25
25
|
"55": "Bank of Melbourne (a division of Westpac Banking Corp)",
|
|
26
26
|
"369": "BNK Banking Corporation Ltd ",
|
|
27
27
|
"585": "Bano Pty Ltd",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"35": "Bank of China",
|
|
30
30
|
"19": "Bank of Melbourne (a division of Westpac Banking Corp)",
|
|
31
31
|
"29": "MUFG Bank, Ltd.",
|
|
32
|
-
"255": "BNP Paribas
|
|
32
|
+
"255": "BNP Paribas",
|
|
33
33
|
"12": "Bank of Queensland Limited",
|
|
34
34
|
"10": "BankSA (a division of Westpac Banking Corp)",
|
|
35
35
|
"26": "Bankers Trust Australia (a division of Westpac Banking Corp)",
|
|
@@ -50,14 +50,15 @@
|
|
|
50
50
|
"818": "Bank of Communications Co., Ltd Sydney Branch",
|
|
51
51
|
"80": "Cuscal Limited",
|
|
52
52
|
"855": "Credit Union SA Ltd",
|
|
53
|
-
"40": "
|
|
53
|
+
"40": "Commonwealth Bank of Australia",
|
|
54
54
|
"24": "Citibank N.A.",
|
|
55
55
|
"814": "Credit Union Australia Ltd (trading as Great Southern Bank)",
|
|
56
|
-
"70": "Indue Ltd",
|
|
56
|
+
"70": "Indue Ltd (a division of Cuscal Limited)",
|
|
57
57
|
"41": "Deutsche Bank Aktiengesellschaft",
|
|
58
58
|
"833": "Defence Bank Limited",
|
|
59
59
|
"889": "DBS Bank Ltd. (Australia Branch)",
|
|
60
60
|
"823": "Australian Mutual Bank Limited",
|
|
61
|
+
"560": "Ebury Partners Australia Pty Ltd",
|
|
61
62
|
"850": "Paynow Technology Pty Ltd",
|
|
62
63
|
"370": "Flash Partners Pty Ltd",
|
|
63
64
|
"630": "Greater Bank (a division of Newcastle Greater Mutual Group Ltd)",
|
|
@@ -99,7 +100,7 @@
|
|
|
99
100
|
"969": "Tyro Payments Limited",
|
|
100
101
|
"08": "National Australia Bank Limited",
|
|
101
102
|
"650": "Newcastle Greater Mutual Group Ltd",
|
|
102
|
-
"
|
|
103
|
+
"020": "Northern Trust Company, The",
|
|
103
104
|
"45": "Oversea-Chinese Banking Corporation Limited",
|
|
104
105
|
"311": "in1bank Limited",
|
|
105
106
|
"815": "Police Bank Ltd (trading as Police Bank)",
|
|
@@ -120,8 +121,8 @@
|
|
|
120
121
|
"728": "Summerland Financial Servces Limited (Trading as Summerland Bank)",
|
|
121
122
|
"611": "Australian Mutual Bank Limited",
|
|
122
123
|
"33": "St.George Bank (a division of Westpac Banking Corp)",
|
|
123
|
-
"635": "Australian Settlements Limited",
|
|
124
|
-
"825": "
|
|
124
|
+
"635": "Australian Settlements Limited (trading as Banking Circle)",
|
|
125
|
+
"825": "Bank Australia Limited",
|
|
125
126
|
"911": "Sumitomo Mitsui Banking Corporation",
|
|
126
127
|
"722": "Southern Cross Credit Union Ltd",
|
|
127
128
|
"840": "Zepto Payments Pty Ltd",
|
|
@@ -131,8 +132,8 @@
|
|
|
131
132
|
"66": "Norfina Limited",
|
|
132
133
|
"15": "Town & Country Bank (a division of Australia & New Zealand Banking Group Limited)",
|
|
133
134
|
"943": "Taiwan Business Bank, Sydney Branch",
|
|
134
|
-
"42": "
|
|
135
|
-
"52": "
|
|
135
|
+
"42": "Commonwealth Bank of Australia",
|
|
136
|
+
"52": "Commonwealth Bank of Australia",
|
|
136
137
|
"812": "Teachers Mutual Bank Limited",
|
|
137
138
|
"946": "UBS AG, Australia Branch",
|
|
138
139
|
"634": "Uniting Financial Services",
|