@dotcom-tool-kit/backend-serverless-app 1.0.0 → 2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/package.json +13 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Features
7
+
8
+ * specify Node 18 support in all packages' engines fields ([3b55c79](https://github.com/Financial-Times/dotcom-tool-kit/commit/3b55c79f3f55b448f1a92fcf842dab6a8906ea70))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @dotcom-tool-kit/circleci-deploy bumped from ^3.0.0 to ^3.1.0
16
+ * @dotcom-tool-kit/husky-npm bumped from ^4.0.0 to ^4.1.0
17
+ * @dotcom-tool-kit/node bumped from ^3.0.0 to ^3.1.0
18
+ * @dotcom-tool-kit/npm bumped from ^3.0.0 to ^3.1.0
19
+ * @dotcom-tool-kit/secret-squirrel bumped from ^2.0.0 to ^2.1.0
20
+ * @dotcom-tool-kit/serverless bumped from ^2.0.0 to ^2.1.0
21
+
22
+ ## [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)
23
+
24
+
25
+ ### ⚠ BREAKING CHANGES
26
+
27
+ * drop support for Node 14 across all packages
28
+
29
+ ### Bug Fixes
30
+
31
+ * point backend-serverless-app package.json main field to a file that exists ([f3360ec](https://github.com/Financial-Times/dotcom-tool-kit/commit/f3360ecb819d07678af8d72bae75fb22583010a4))
32
+
33
+
34
+ ### Miscellaneous Chores
35
+
36
+ * drop support for Node 14 across all packages ([aaee178](https://github.com/Financial-Times/dotcom-tool-kit/commit/aaee178b535a51f9c75a882d78ffd8e8aa3eac60))
37
+
38
+
39
+ ### Dependencies
40
+
41
+ * The following workspace dependencies were updated
42
+ * dependencies
43
+ * @dotcom-tool-kit/circleci-deploy bumped from ^2.1.0 to ^3.0.0
44
+ * @dotcom-tool-kit/husky-npm bumped from ^3.0.0 to ^4.0.0
45
+ * @dotcom-tool-kit/node bumped from ^2.3.3 to ^3.0.0
46
+ * @dotcom-tool-kit/npm bumped from ^2.0.17 to ^3.0.0
47
+ * @dotcom-tool-kit/secret-squirrel bumped from ^1.0.15 to ^2.0.0
48
+ * @dotcom-tool-kit/serverless bumped from ^1.0.0 to ^2.0.0
49
+
3
50
  ## 1.0.0 (2023-04-05)
4
51
 
5
52
 
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@dotcom-tool-kit/backend-serverless-app",
3
- "version": "1.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "",
5
- "main": "lib",
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": "^2.1.0",
11
- "@dotcom-tool-kit/husky-npm": "^3.0.0",
12
- "@dotcom-tool-kit/node": "^2.3.3",
13
- "@dotcom-tool-kit/npm": "^2.0.17",
14
- "@dotcom-tool-kit/secret-squirrel": "^1.0.15",
15
- "@dotcom-tool-kit/serverless": "^1.0.0"
10
+ "@dotcom-tool-kit/circleci-deploy": "^3.1.0",
11
+ "@dotcom-tool-kit/husky-npm": "^4.1.0",
12
+ "@dotcom-tool-kit/node": "^3.1.0",
13
+ "@dotcom-tool-kit/npm": "^3.1.0",
14
+ "@dotcom-tool-kit/secret-squirrel": "^2.1.0",
15
+ "@dotcom-tool-kit/serverless": "^2.1.0"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
@@ -22,6 +22,10 @@
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": "2.x"
25
+ "dotcom-tool-kit": "3.x"
26
+ },
27
+ "engines": {
28
+ "node": "16.x || 18.x",
29
+ "npm": "7.x || 8.x || 9.x"
26
30
  }
27
31
  }