@dotcom-tool-kit/backend-serverless-app 4.1.23 → 6.0.0-beta.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 +23 -0
- package/package.json +7 -7
- package/readme.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -387,6 +387,29 @@
|
|
|
387
387
|
* @dotcom-tool-kit/npm bumped from ^4.2.11 to ^4.2.12
|
|
388
388
|
* @dotcom-tool-kit/serverless bumped from ^3.4.0 to ^3.4.1
|
|
389
389
|
|
|
390
|
+
## [5.0.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v4.1.23...backend-serverless-app-v5.0.0) (2025-10-28)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
### ⚠ BREAKING CHANGES
|
|
394
|
+
|
|
395
|
+
* drop node 18 support by updating related configs
|
|
396
|
+
|
|
397
|
+
### Features
|
|
398
|
+
|
|
399
|
+
* drop node 18 support by updating related configs ([2968f50](https://github.com/Financial-Times/dotcom-tool-kit/commit/2968f50e47a824ec3380346d81aa920dbf45b903))
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
### Dependencies
|
|
403
|
+
|
|
404
|
+
* The following workspace dependencies were updated
|
|
405
|
+
* dependencies
|
|
406
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^4.1.22 to ^5.0.0
|
|
407
|
+
* @dotcom-tool-kit/node bumped from ^4.4.1 to ^5.0.0
|
|
408
|
+
* @dotcom-tool-kit/npm bumped from ^4.2.18 to ^5.0.0
|
|
409
|
+
* @dotcom-tool-kit/serverless bumped from ^3.5.1 to ^4.0.0
|
|
410
|
+
* peerDependencies
|
|
411
|
+
* dotcom-tool-kit bumped from 4.x to 5.0.0
|
|
412
|
+
|
|
390
413
|
## [4.1.23](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v4.1.22...backend-serverless-app-v4.1.23) (2025-10-10)
|
|
391
414
|
|
|
392
415
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/backend-serverless-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0-beta.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": "^
|
|
11
|
-
"@dotcom-tool-kit/node": "^
|
|
12
|
-
"@dotcom-tool-kit/npm": "^
|
|
13
|
-
"@dotcom-tool-kit/serverless": "^
|
|
10
|
+
"@dotcom-tool-kit/circleci-deploy": "^6.0.0-beta.1",
|
|
11
|
+
"@dotcom-tool-kit/node": "^5.0.0",
|
|
12
|
+
"@dotcom-tool-kit/npm": "^5.0.0",
|
|
13
|
+
"@dotcom-tool-kit/serverless": "^4.0.0"
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"bugs": "https://github.com/financial-times/dotcom-tool-kit/issues",
|
|
21
21
|
"homepage": "https://github.com/financial-times/dotcom-tool-kit/tree/main/plugins/backend-serverless-app",
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"dotcom-tool-kit": "
|
|
23
|
+
"dotcom-tool-kit": "5.x"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": "
|
|
26
|
+
"node": ">=20.x"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/readme.md
CHANGED
|
@@ -9,6 +9,7 @@ A bootstrap plugin that provides the minimum required Tool Kit plugins for a "ba
|
|
|
9
9
|
|
|
10
10
|
This bootstrap plugin is also preconfigured to run the `ServerlessRun` task on the hook `run:local`, and binds the tasks defined by the `serverless` plugin to the hooks defined by `circleci-deploy`.
|
|
11
11
|
|
|
12
|
+
|
|
12
13
|
## Installation
|
|
13
14
|
|
|
14
15
|
With Tool Kit [already set up](https://github.com/financial-times/dotcom-tool-kit#installing-and-using-tool-kit), install this plugin as a dev dependency:
|