@dotcom-tool-kit/backend-serverless-app 4.0.4 → 4.1.1
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 +27 -0
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -267,6 +267,33 @@
|
|
|
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
|
+
### Dependencies
|
|
271
|
+
|
|
272
|
+
* The following workspace dependencies were updated
|
|
273
|
+
* dependencies
|
|
274
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^4.1.0 to ^4.1.1
|
|
275
|
+
* @dotcom-tool-kit/node bumped from ^4.2.0 to ^4.2.1
|
|
276
|
+
* @dotcom-tool-kit/npm bumped from ^4.2.0 to ^4.2.1
|
|
277
|
+
* @dotcom-tool-kit/serverless bumped from ^3.2.0 to ^3.2.1
|
|
278
|
+
|
|
279
|
+
## [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)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
### Features
|
|
283
|
+
|
|
284
|
+
* add support for Node 22 ([df20e7c](https://github.com/Financial-Times/dotcom-tool-kit/commit/df20e7c455a16eeb3e75a2e940c93848d618a218))
|
|
285
|
+
* remove npm engine field ([aec1c78](https://github.com/Financial-Times/dotcom-tool-kit/commit/aec1c78aedb8f26a43b25824eb19e30101806182))
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
### Dependencies
|
|
289
|
+
|
|
290
|
+
* The following workspace dependencies were updated
|
|
291
|
+
* dependencies
|
|
292
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^4.0.4 to ^4.1.0
|
|
293
|
+
* @dotcom-tool-kit/node bumped from ^4.1.1 to ^4.2.0
|
|
294
|
+
* @dotcom-tool-kit/npm bumped from ^4.1.1 to ^4.2.0
|
|
295
|
+
* @dotcom-tool-kit/serverless bumped from ^3.1.1 to ^3.2.0
|
|
296
|
+
|
|
270
297
|
## [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
298
|
|
|
272
299
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/backend-serverless-app",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
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.
|
|
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.1",
|
|
11
|
+
"@dotcom-tool-kit/node": "^4.2.1",
|
|
12
|
+
"@dotcom-tool-kit/npm": "^4.2.1",
|
|
13
|
+
"@dotcom-tool-kit/serverless": "^3.2.1"
|
|
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
|
}
|