@dotcom-tool-kit/backend-serverless-app 4.0.4 → 4.1.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 +18 -0
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -267,6 +267,24 @@
|
|
|
267
267
|
* @dotcom-tool-kit/npm bumped from ^4.1.0 to ^4.1.1
|
|
268
268
|
* @dotcom-tool-kit/serverless bumped from ^3.1.0 to ^3.1.1
|
|
269
269
|
|
|
270
|
+
## [4.1.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v4.0.4...backend-serverless-app-v4.1.0) (2025-01-02)
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
### Features
|
|
274
|
+
|
|
275
|
+
* add support for Node 22 ([df20e7c](https://github.com/Financial-Times/dotcom-tool-kit/commit/df20e7c455a16eeb3e75a2e940c93848d618a218))
|
|
276
|
+
* remove npm engine field ([aec1c78](https://github.com/Financial-Times/dotcom-tool-kit/commit/aec1c78aedb8f26a43b25824eb19e30101806182))
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Dependencies
|
|
280
|
+
|
|
281
|
+
* The following workspace dependencies were updated
|
|
282
|
+
* dependencies
|
|
283
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^4.0.4 to ^4.1.0
|
|
284
|
+
* @dotcom-tool-kit/node bumped from ^4.1.1 to ^4.2.0
|
|
285
|
+
* @dotcom-tool-kit/npm bumped from ^4.1.1 to ^4.2.0
|
|
286
|
+
* @dotcom-tool-kit/serverless bumped from ^3.1.1 to ^3.2.0
|
|
287
|
+
|
|
270
288
|
## [4.0.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v3.2.9...backend-serverless-app-v4.0.0) (2024-09-10)
|
|
271
289
|
|
|
272
290
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/backend-serverless-app",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"author": "FT.com Platforms Team <platforms-team.customer-products@ft.com>",
|
|
8
8
|
"license": "ISC",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@dotcom-tool-kit/circleci-deploy": "^4.0
|
|
11
|
-
"@dotcom-tool-kit/node": "^4.
|
|
12
|
-
"@dotcom-tool-kit/npm": "^4.
|
|
13
|
-
"@dotcom-tool-kit/serverless": "^3.
|
|
10
|
+
"@dotcom-tool-kit/circleci-deploy": "^4.1.0",
|
|
11
|
+
"@dotcom-tool-kit/node": "^4.2.0",
|
|
12
|
+
"@dotcom-tool-kit/npm": "^4.2.0",
|
|
13
|
+
"@dotcom-tool-kit/serverless": "^3.2.0"
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"dotcom-tool-kit": "4.x"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": "18.x || 20.x"
|
|
27
|
-
"npm": "7.x || 8.x || 9.x || 10.x"
|
|
26
|
+
"node": "18.x || 20.x || 22.x"
|
|
28
27
|
}
|
|
29
28
|
}
|