@dotcom-tool-kit/backend-serverless-app 1.0.0 → 2.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 +28 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v1.0.0...backend-serverless-app-v2.0.0) (2023-04-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* drop support for Node 14 across all packages
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* point backend-serverless-app package.json main field to a file that exists ([f3360ec](https://github.com/Financial-Times/dotcom-tool-kit/commit/f3360ecb819d07678af8d72bae75fb22583010a4))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* drop support for Node 14 across all packages ([aaee178](https://github.com/Financial-Times/dotcom-tool-kit/commit/aaee178b535a51f9c75a882d78ffd8e8aa3eac60))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* The following workspace dependencies were updated
|
|
23
|
+
* dependencies
|
|
24
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^2.1.0 to ^3.0.0
|
|
25
|
+
* @dotcom-tool-kit/husky-npm bumped from ^3.0.0 to ^4.0.0
|
|
26
|
+
* @dotcom-tool-kit/node bumped from ^2.3.3 to ^3.0.0
|
|
27
|
+
* @dotcom-tool-kit/npm bumped from ^2.0.17 to ^3.0.0
|
|
28
|
+
* @dotcom-tool-kit/secret-squirrel bumped from ^1.0.15 to ^2.0.0
|
|
29
|
+
* @dotcom-tool-kit/serverless bumped from ^1.0.0 to ^2.0.0
|
|
30
|
+
|
|
3
31
|
## 1.0.0 (2023-04-05)
|
|
4
32
|
|
|
5
33
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/backend-serverless-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "
|
|
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/husky-npm": "^
|
|
12
|
-
"@dotcom-tool-kit/node": "^
|
|
13
|
-
"@dotcom-tool-kit/npm": "^
|
|
14
|
-
"@dotcom-tool-kit/secret-squirrel": "^
|
|
15
|
-
"@dotcom-tool-kit/serverless": "^
|
|
10
|
+
"@dotcom-tool-kit/circleci-deploy": "^3.0.0",
|
|
11
|
+
"@dotcom-tool-kit/husky-npm": "^4.0.0",
|
|
12
|
+
"@dotcom-tool-kit/node": "^3.0.0",
|
|
13
|
+
"@dotcom-tool-kit/npm": "^3.0.0",
|
|
14
|
+
"@dotcom-tool-kit/secret-squirrel": "^2.0.0",
|
|
15
|
+
"@dotcom-tool-kit/serverless": "^2.0.0"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"bugs": "https://github.com/financial-times/dotcom-tool-kit/issues",
|
|
23
23
|
"homepage": "https://github.com/financial-times/dotcom-tool-kit/tree/main/plugins/backend-serverless-app",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"dotcom-tool-kit": "
|
|
25
|
+
"dotcom-tool-kit": "3.x"
|
|
26
26
|
}
|
|
27
27
|
}
|