@dotcom-tool-kit/backend-serverless-app 3.0.13 → 3.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 +17 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -174,6 +174,23 @@
|
|
|
174
174
|
* @dotcom-tool-kit/npm bumped from ^3.2.2 to ^3.2.3
|
|
175
175
|
* @dotcom-tool-kit/serverless bumped from ^2.2.12 to ^2.2.13
|
|
176
176
|
|
|
177
|
+
## [3.1.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v3.0.13...backend-serverless-app-v3.1.0) (2024-01-11)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
### Features
|
|
181
|
+
|
|
182
|
+
* add support for Node v20 ([759ac10](https://github.com/Financial-Times/dotcom-tool-kit/commit/759ac10e309885e99f54ae431c301c32ee04f972))
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Dependencies
|
|
186
|
+
|
|
187
|
+
* The following workspace dependencies were updated
|
|
188
|
+
* dependencies
|
|
189
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^3.2.9 to ^3.3.0
|
|
190
|
+
* @dotcom-tool-kit/node bumped from ^3.3.9 to ^3.4.0
|
|
191
|
+
* @dotcom-tool-kit/npm bumped from ^3.2.3 to ^3.3.0
|
|
192
|
+
* @dotcom-tool-kit/serverless bumped from ^2.2.13 to ^2.3.0
|
|
193
|
+
|
|
177
194
|
## [3.0.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v2.1.11...backend-serverless-app-v3.0.0) (2023-10-09)
|
|
178
195
|
|
|
179
196
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/backend-serverless-app",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.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": "^3.
|
|
11
|
-
"@dotcom-tool-kit/node": "^3.
|
|
12
|
-
"@dotcom-tool-kit/npm": "^3.
|
|
13
|
-
"@dotcom-tool-kit/serverless": "^2.
|
|
10
|
+
"@dotcom-tool-kit/circleci-deploy": "^3.3.0",
|
|
11
|
+
"@dotcom-tool-kit/node": "^3.4.0",
|
|
12
|
+
"@dotcom-tool-kit/npm": "^3.3.0",
|
|
13
|
+
"@dotcom-tool-kit/serverless": "^2.3.0"
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dotcom-tool-kit": "3.x"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": "16.x || 18.x",
|
|
27
|
-
"npm": "7.x || 8.x || 9.x"
|
|
26
|
+
"node": "16.x || 18.x || 20.x",
|
|
27
|
+
"npm": "7.x || 8.x || 9.x || 10.x"
|
|
28
28
|
}
|
|
29
29
|
}
|