@commercetools/connect-payments-sdk 0.27.2 → 0.28.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # @commercetools/connect-payments-sdk
2
2
 
3
+ ## 0.28.0
4
+
5
+ ### Minor Changes
6
+ - 9e2f639: chore(deps): upgrade dependencies to latest stable versions, including security patches
7
+
3
8
  ## 0.27.2
4
9
 
5
10
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools/connect-payments-sdk",
3
- "version": "0.27.2",
3
+ "version": "0.28.0",
4
4
  "description": "Payment SDK for commercetools payment connectors",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,12 +15,12 @@
15
15
  ],
16
16
  "license": "ISC",
17
17
  "dependencies": {
18
- "@commercetools-backend/loggers": "24.5.0",
19
- "@commercetools/platform-sdk": "8.18.0",
20
- "@commercetools/ts-client": "3.4.1",
21
- "jsonwebtoken": "9.0.2",
18
+ "@commercetools-backend/loggers": "27.4.0",
19
+ "@commercetools/platform-sdk": "8.25.0",
20
+ "@commercetools/ts-client": "4.9.1",
21
+ "jsonwebtoken": "9.0.3",
22
22
  "jwks-rsa": "3.2.0",
23
- "lodash": "4.17.21",
23
+ "lodash": "4.18.1",
24
24
  "logform": "2.7.0"
25
25
  }
26
26
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "module": "CommonJS",
5
+ "moduleResolution": "node10",
6
+ "types": ["jest"]
7
+ },
8
+ "include": ["src/**/*.ts"]
9
+ }