Skip to content

Commit 4f8cd50

Browse files
Merge pull request #1116 from Adyen/automation/release
Release v13.1.1
2 parents c995dba + 6230bf4 commit 4f8cd50

File tree

8 files changed

+527
-349
lines changed

8 files changed

+527
-349
lines changed

.github/workflows/coveralls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
- uses: actions/checkout@v3
1313

14-
- name: Use Node.js 16.x
14+
- name: Use Node.js 18.x
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: 16.x
17+
node-version: 18.x
1818

1919
- name: npm install, npm test:coverage
2020
run: |

.github/workflows/gh-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
1618
- name: Grab version
1719
uses: actions/github-script@v6
1820
id: release
@@ -27,3 +29,8 @@ jobs:
2729
gh release create v${{steps.release.outputs.version}} \
2830
--title 'Adyen Node API Library v${{steps.release.outputs.version}}' \
2931
--generate-notes --target main
32+
- name: Update develop branch
33+
run: |
34+
git checkout develop
35+
git merge main
36+
git push origin develop

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [12.x, 14.x, 16.x]
12+
node-version: [14.x, 16.x, 18.x]
1313

1414
steps:
1515
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: npm --no-git-tag-version version ${{steps.release.outputs.nextVersion}}
3333
- name: Create Pull Request
3434
id: cpr
35-
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v4.2.3
35+
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v4.2.4
3636
with:
3737
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }}
3838
committer: ${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ node_modules
1313
coverage/
1414
.env
1515
lib/
16-
build/
16+
build/
17+
package-lock.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For more information, refer to our [documentation](https://docs.adyen.com/) or t
4141
## Prerequisites
4242
- [Adyen test account](https://docs.adyen.com/get-started-with-adyen). To start using Adyen APIs, you will need a Merchant Account.
4343
- [API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). For testing, your API credential needs to have the [API PCI Payments role](https://docs.adyen.com/development-resources/api-credentials#roles).
44-
- Node 12 or higher
44+
- Node 14 or higher
4545

4646
## Installation
4747

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adyen/api-library",
3-
"version": "13.1.0",
3+
"version": "13.1.1",
44
"description": "The Adyen API Library for NodeJS enables you to work with Adyen APIs.",
55
"main": "lib/src/index.js",
66
"types": "lib/src/index.d.ts",
@@ -37,28 +37,28 @@
3737
"devDependencies": {
3838
"@types/jest": "27.5.2",
3939
"@types/nock": "11.1.0",
40-
"@typescript-eslint/eslint-plugin": "5.43.0",
41-
"@typescript-eslint/parser": "5.45.0",
40+
"@typescript-eslint/eslint-plugin": "5.55.0",
41+
"@typescript-eslint/parser": "5.55.0",
4242
"acorn": "^8.0.1",
4343
"coveralls": "3.1.1",
4444
"dotenv": "^16.0.0",
45-
"eslint": "8.33.0",
45+
"eslint": "8.36.0",
4646
"jest": "^27.0.6",
4747
"jest-ts-auto-mock": "^2.0.0",
4848
"kind-of": "^6.0.3",
4949
"minimist": ">=1.2.3",
5050
"nock": "13.3.0",
51-
"release-it": "15.5.0",
51+
"release-it": "15.9.0",
5252
"ts-auto-mock": "^3.3.5",
5353
"ts-jest": "^27.0.4",
5454
"ts-loader": "9.4.2",
5555
"ttypescript": "^1.5.10",
56-
"typescript": "4.9.4"
56+
"typescript": "4.9.5"
5757
},
5858
"dependencies": {
5959
"https-proxy-agent": "5.0.1"
6060
},
6161
"optionalDependencies": {
62-
"@types/node": "14.18.36"
62+
"@types/node": "14.18.40"
6363
}
6464
}

0 commit comments

Comments
 (0)