@dotcom-tool-kit/backend-serverless-app 4.0.0-beta.6 → 4.0.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 +42 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -216,6 +216,48 @@
|
|
|
216
216
|
* dependencies
|
|
217
217
|
* @dotcom-tool-kit/circleci-deploy bumped from ^3.4.2 to ^3.4.3
|
|
218
218
|
|
|
219
|
+
### Dependencies
|
|
220
|
+
|
|
221
|
+
* The following workspace dependencies were updated
|
|
222
|
+
* dependencies
|
|
223
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^3.4.3 to ^3.4.4
|
|
224
|
+
* @dotcom-tool-kit/node bumped from ^3.4.1 to ^3.4.2
|
|
225
|
+
* @dotcom-tool-kit/npm bumped from ^3.3.1 to ^3.3.2
|
|
226
|
+
* @dotcom-tool-kit/serverless bumped from ^2.4.4 to ^2.4.5
|
|
227
|
+
|
|
228
|
+
### Dependencies
|
|
229
|
+
|
|
230
|
+
* The following workspace dependencies were updated
|
|
231
|
+
* dependencies
|
|
232
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^3.4.4 to ^3.4.5
|
|
233
|
+
|
|
234
|
+
## [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)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### ⚠ BREAKING CHANGES
|
|
238
|
+
|
|
239
|
+
* drop support for Node 16
|
|
240
|
+
* rename `hooks` in toolkitrc to `commands`
|
|
241
|
+
|
|
242
|
+
### Features
|
|
243
|
+
|
|
244
|
+
* rename `hooks` in toolkitrc to `commands` ([45baa66](https://github.com/Financial-Times/dotcom-tool-kit/commit/45baa66b231a1e39332187cd3b8fdc36bec9727d))
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Miscellaneous Chores
|
|
248
|
+
|
|
249
|
+
* drop support for Node 16 ([ab95982](https://github.com/Financial-Times/dotcom-tool-kit/commit/ab95982635e255fec49d08af9894c2833a36500e))
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
### Dependencies
|
|
253
|
+
|
|
254
|
+
* The following workspace dependencies were updated
|
|
255
|
+
* dependencies
|
|
256
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^3.4.5 to ^4.0.0
|
|
257
|
+
* @dotcom-tool-kit/node bumped from ^3.4.2 to ^4.0.0
|
|
258
|
+
* @dotcom-tool-kit/npm bumped from ^3.3.2 to ^4.0.0
|
|
259
|
+
* @dotcom-tool-kit/serverless bumped from ^2.4.5 to ^3.0.0
|
|
260
|
+
|
|
219
261
|
## [3.2.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v3.1.0...backend-serverless-app-v3.2.0) (2024-01-23)
|
|
220
262
|
|
|
221
263
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/backend-serverless-app",
|
|
3
|
-
"version": "4.0.0
|
|
3
|
+
"version": "4.0.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.0
|
|
11
|
-
"@dotcom-tool-kit/node": "4.0.0
|
|
12
|
-
"@dotcom-tool-kit/npm": "4.0.0
|
|
13
|
-
"@dotcom-tool-kit/serverless": "3.0.0
|
|
10
|
+
"@dotcom-tool-kit/circleci-deploy": "^4.0.0",
|
|
11
|
+
"@dotcom-tool-kit/node": "^4.0.0",
|
|
12
|
+
"@dotcom-tool-kit/npm": "^4.0.0",
|
|
13
|
+
"@dotcom-tool-kit/serverless": "^3.0.0"
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
@@ -20,7 +20,7 @@
|
|
|
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": "4.
|
|
23
|
+
"dotcom-tool-kit": "4.x"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": "18.x || 20.x",
|