@dotcom-tool-kit/backend-serverless-app 2.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 +19 -0
  2. package/package.json +11 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
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
+
3
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)
4
23
 
5
24
 
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@dotcom-tool-kit/backend-serverless-app",
3
- "version": "2.0.0",
3
+ "version": "2.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.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"
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",
@@ -23,5 +23,9 @@
23
23
  "homepage": "https://github.com/financial-times/dotcom-tool-kit/tree/main/plugins/backend-serverless-app",
24
24
  "peerDependencies": {
25
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
  }