bsb 1.1.8 → 1.1.10
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/workflows/release.yml +1 -1
- data/.github/workflows/update-database.yml +2 -5
- data/.release-please-manifest.json +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +15 -0
- data/Gemfile +1 -1
- data/bsb.gemspec +1 -1
- data/config/bsb_bank_list.json +2 -1
- data/config/bsb_db.json +531 -387
- data/lib/auspaynet/client.rb +2 -27
- data/lib/bsb/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67bb67ba4f07574eab4feccc6e2cd11d7113c2a98015c2b9779197220bc951d9
|
|
4
|
+
data.tar.gz: ea1ab792f48bd30bb5731408ca95b2548a1764c26e2ce66975eaa8340103e1dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0470fb388ec69405ee72b883cbcba478a46fea7baaed170b96e026ad19c24810b333870ce70e7f3543208480532d701800f01ddeb12071839fc29db6a30d237
|
|
7
|
+
data.tar.gz: f4f79a6530d5a9ef508579f8ae53c09e0accd8d17a76490e3c364305eb3f0c2da8144314049801e5def6b624184325624a5a296fc7fdf75bca5d5c89fc5198e0
|
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
name: Update BSB Database & Version
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
16
|
- name: Set up Ruby
|
|
17
17
|
uses: ruby/setup-ruby@v1
|
|
18
18
|
with:
|
|
@@ -21,13 +21,10 @@ jobs:
|
|
|
21
21
|
run: bundle exec rake bsb:sync
|
|
22
22
|
- id: get-date
|
|
23
23
|
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
|
|
24
|
-
- uses: peter-evans/create-pull-request@
|
|
24
|
+
- uses: peter-evans/create-pull-request@v6
|
|
25
25
|
id: raise-pr
|
|
26
26
|
with:
|
|
27
27
|
branch: "bot/${{ steps.get-date.outputs.date }}"
|
|
28
28
|
base: master
|
|
29
29
|
title: "fix: ${{ steps.get-date.outputs.date }} periodic update of config/*.json database files."
|
|
30
|
-
committer: GitHub Actions <actions@github.com>
|
|
31
|
-
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
|
|
32
|
-
signoff: false
|
|
33
30
|
delete-branch: true
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{".":"1.1.
|
|
1
|
+
{".":"1.1.10"}
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1
|
|
1
|
+
3.3.1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.10](https://github.com/coinjar/bsb/compare/v1.1.9...v1.1.10) (2024-06-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 2024-06-05 periodic update of config/*.json database files. ([#53](https://github.com/coinjar/bsb/issues/53)) ([2cbf53b](https://github.com/coinjar/bsb/commit/2cbf53bcca21248e3cc95c9d72adcd7096c2c03a))
|
|
9
|
+
|
|
10
|
+
## [1.1.9](https://github.com/coinjar/bsb/compare/v1.1.8...v1.1.9) (2024-05-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* 2024-05-02 periodic update of config/*.json database files. ([#51](https://github.com/coinjar/bsb/issues/51)) ([b290e4a](https://github.com/coinjar/bsb/commit/b290e4a9ef9427359eb2e92dc5d451fe7ab8fdf0))
|
|
16
|
+
* discard date parsing, misc deps updates ([#50](https://github.com/coinjar/bsb/issues/50)) ([227f91c](https://github.com/coinjar/bsb/commit/227f91c6775d37367e66c2d947ddb315a8b802c5))
|
|
17
|
+
|
|
3
18
|
## [1.1.8](https://github.com/coinjar/bsb/compare/v1.1.7...v1.1.8) (2024-04-16)
|
|
4
19
|
|
|
5
20
|
|
data/Gemfile
CHANGED
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 = '>= 2.7.
|
|
21
|
+
spec.required_ruby_version = '>= 2.7.7'
|
|
22
22
|
|
|
23
23
|
spec.add_dependency 'activemodel'
|
|
24
24
|
|
data/config/bsb_bank_list.json
CHANGED
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"313": "Bank Australia Limited",
|
|
80
80
|
"931": "Mega International Commercial Bank Co, Ltd",
|
|
81
81
|
"918": "Mizuho Bank, Ltd",
|
|
82
|
+
"257": "Monoova Payments Pty Ltd",
|
|
82
83
|
"969": "Tyro Payments Limited",
|
|
83
84
|
"08": "National Australia Bank Limited",
|
|
84
85
|
"650": "Newcastle Greater Mutual Group Ltd",
|
|
@@ -126,5 +127,5 @@
|
|
|
126
127
|
"55": "BML Bank of Melbourne (a division of Westpac Banking Corp)",
|
|
127
128
|
"817": "Warwick Credit Union Ltd",
|
|
128
129
|
"774": "Wise Australia Pty Ltd",
|
|
129
|
-
"670": "
|
|
130
|
+
"670": "National Australia Bank Limited"
|
|
130
131
|
}
|