Skip to content

Commit 07841ff

Browse files
author
Shangamesh T
committed
Amazon Pay NodeJS 2.1.5
1 parent f2773eb commit 07841ff

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#### Version 2.1.5 - October 2021
2+
* Fixed Security Vulnerabilities by upgrading 'axios' library version
3+
* ReadMe file updates
4+
15
#### Version 2.1.4 - May 2021
26
* Enabled support for environment specific keys (i.e Public key & Private key). The changes are fully backwards-compatible, where merchants can also use non environment specific keys
37

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ Amazon Pay Checkout v2 Integration
33

44
Please note the Amazon Pay API SDK can only be used for API calls to the pay-api.amazon.com|eu|jp endpoint.
55

6-
If you need to make an Amazon Pay API call that uses the mws.amazonservices.com|jp or mws-eu.amazonservices.com endpoint, then you will need to use the original [Amazon Pay SDK (Node.js)](https://github.com/amzn/amazon-pay-sdk-nodejs).
7-
86
## Requirements
97

108
* Amazon Pay account: To register for Amazon Pay, go to https://pay.amazon.com, choose your region by selecting the flag icon in the upper right corner, and then click "Register".

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@amazonpay/amazon-pay-api-sdk-nodejs",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "Amazon Pay Checkout V2 Integration",
55
"main": "src/client.js",
66
"directories": {},
77
"dependencies": {
8-
"axios": "^0.21.1",
8+
"axios": "^0.21.2",
99
"uuid": "^3.3.3"
1010
},
1111
"devDependencies": {

src/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
module.exports = {
4-
SDK_VERSION: '2.1.4',
4+
SDK_VERSION: '2.1.5',
55
API_VERSION: 'v2',
66
RETRIES: 3,
77
API_ENDPOINTS: {

0 commit comments

Comments
 (0)