@dotcom-tool-kit/backend-serverless-app 2.1.11 → 3.0.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/.toolkitrc.yml +0 -2
- package/CHANGELOG.md +28 -0
- package/package.json +5 -7
- package/readme.md +0 -1
package/.toolkitrc.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -85,6 +85,34 @@
|
|
|
85
85
|
* @dotcom-tool-kit/npm bumped from ^3.1.4 to ^3.1.5
|
|
86
86
|
* @dotcom-tool-kit/serverless bumped from ^2.2.1 to ^2.2.2
|
|
87
87
|
|
|
88
|
+
### Dependencies
|
|
89
|
+
|
|
90
|
+
* The following workspace dependencies were updated
|
|
91
|
+
* dependencies
|
|
92
|
+
* @dotcom-tool-kit/circleci-deploy bumped from ^3.2.7 to ^3.2.8
|
|
93
|
+
* @dotcom-tool-kit/node bumped from ^3.3.2 to ^3.3.3
|
|
94
|
+
* @dotcom-tool-kit/npm bumped from ^3.1.5 to ^3.1.6
|
|
95
|
+
* @dotcom-tool-kit/serverless bumped from ^2.2.3 to ^2.2.4
|
|
96
|
+
|
|
97
|
+
## [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)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### ⚠ BREAKING CHANGES
|
|
101
|
+
|
|
102
|
+
* **backend-serverless-app:** drops @dotcom-tool-kit/husky-npm plugin dependency. To continue using it you will need to run `npm install @dotcom-tool-kit/husky-npm -D`.
|
|
103
|
+
|
|
104
|
+
### Features
|
|
105
|
+
|
|
106
|
+
* **backend-serverless-app:** drop secret-squirrel plugin ([2fc860a](https://github.com/Financial-Times/dotcom-tool-kit/commit/2fc860a7862028cfe7451373fd4c74b30e0d5ca6))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Dependencies
|
|
110
|
+
|
|
111
|
+
* The following workspace dependencies were updated
|
|
112
|
+
* dependencies
|
|
113
|
+
* @dotcom-tool-kit/node bumped from ^3.3.1 to ^3.3.2
|
|
114
|
+
* @dotcom-tool-kit/serverless bumped from ^2.2.2 to ^2.2.3
|
|
115
|
+
|
|
88
116
|
## [2.1.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/backend-serverless-app-v2.0.0...backend-serverless-app-v2.1.0) (2023-04-28)
|
|
89
117
|
|
|
90
118
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/backend-serverless-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.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": "^3.2.
|
|
11
|
-
"@dotcom-tool-kit/
|
|
12
|
-
"@dotcom-tool-kit/
|
|
13
|
-
"@dotcom-tool-kit/
|
|
14
|
-
"@dotcom-tool-kit/secret-squirrel": "^2.1.4",
|
|
15
|
-
"@dotcom-tool-kit/serverless": "^2.2.2"
|
|
10
|
+
"@dotcom-tool-kit/circleci-deploy": "^3.2.8",
|
|
11
|
+
"@dotcom-tool-kit/node": "^3.3.3",
|
|
12
|
+
"@dotcom-tool-kit/npm": "^3.1.6",
|
|
13
|
+
"@dotcom-tool-kit/serverless": "^2.2.4"
|
|
16
14
|
},
|
|
17
15
|
"repository": {
|
|
18
16
|
"type": "git",
|
package/readme.md
CHANGED
|
@@ -7,7 +7,6 @@ A bootstrap plugin that provides the minimum required Tool Kit plugins for a "ba
|
|
|
7
7
|
- [`@dotcom-tool-kit/serverless`](https://github.com/Financial-Times/dotcom-tool-kit/tree/main/plugins/serverless)
|
|
8
8
|
- [`@dotcom-tool-kit/node`](https://github.com/Financial-Times/dotcom-tool-kit/tree/main/plugins/node)
|
|
9
9
|
- [`@dotcom-tool-kit/husky-npm`](https://github.com/Financial-Times/dotcom-tool-kit/tree/main/plugins/husky-npm)
|
|
10
|
-
- [`@dotcom-tool-kit/secret-squirrel`](https://github.com/Financial-Times/dotcom-tool-kit/tree/main/plugins/secret-squirrel)
|
|
11
10
|
|
|
12
11
|
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`.
|
|
13
12
|
|