Skip to content

Commit 4f32b86

Browse files
Merge pull request #1251 from Adyen/automation/release
Release v14.2.0
2 parents 7181458 + 1eb930a commit 4f32b86

File tree

90 files changed

+2202
-486
lines changed

Some content is hidden

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

90 files changed

+2202
-486
lines changed

.github/workflows/codeql-analysis.yml

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

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
# We must fetch at least the immediate parents so that if this is
1919
# a pull request then we can checkout the head.

.github/workflows/coveralls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111

12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: Use Node.js 18.x
1515
uses: actions/setup-node@v3

.github/workflows/lib-gh-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: write
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }}

.github/workflows/lib-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
pull-requests: write
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
ref: main
2020
- name: Reset promotion branch

.github/workflows/models.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
name: Generate Models
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: install Node dev dependencies
1212
run: npm install --save-dev
1313
- run: make models

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
node-version: [18.x, 20.x]
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
1717
uses: actions/setup-node@v3
1818
with:

.github/workflows/npmpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish-npm:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v3
1414
with:
1515
node-version: 14

.github/workflows/services.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
name: Generate Services + Models
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: install Node dev dependencies
1212
run: npm install --save-dev
1313
- run: make services

.github/workflows/sonarcloud.yml

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

1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
with:
1414
# Disabling shallow clone to improve relevancy of SonarCloud reporting
1515
fetch-depth: 0

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,9 +429,8 @@ The procedure to send In-Person requests using [Terminal API over Local Connecti
429429
// Step 1: Require the parts of the module you want to use
430430
const {Client, TerminalLocalAPI} from "@adyen/api-library";
431431

432-
// Step 2: Add your Merchant Account, Certificate Path and Local Endpoint to the config path. Install the certificate and save it in your project folder as "cert.cer"
432+
// Step 2: Add your Certificate Path and Local Endpoint to the config path. Install the certificate and save it in your project folder as "cert.cer"
433433
const config: Config = new Config();
434-
config.merchantAccount = "Your merchant account";
435434
config.certificatePath = "./cert.cer";
436435
config.terminalApiLocalEndpoint = "The IP of your terminal (eg https://192.168.47.169)";
437436
config.apiKey = "YOUR_API_KEY_HERE";
@@ -462,9 +461,8 @@ If you wish to develop the Local Terminal API integration parallel to your encry
462461
// Step 1: Require the parts of the module you want to use
463462
const {Client, TerminalLocalAPIUnencrypted} from "@adyen/api-library";
464463

465-
// Step 2: Add your Merchant Account, Certificate Path and Local Endpoint to the config path. Install the certificate and save it in your project folder as "cert.cer"
464+
// Step 2: Add your Certificate Path and Local Endpoint to the config path. Install the certificate and save it in your project folder as "cert.cer"
466465
const config: Config = new Config();
467-
config.merchantAccount = "Your merchant account";
468466
config.terminalApiLocalEndpoint = "The IP of your terminal (eg https://192.168.47.169)";
469467
config.apiKey = "YOUR_API_KEY_HERE";
470468

0 commit comments

Comments
 (0)