@dotcom-tool-kit/base 1.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +10 -7
package/CHANGELOG.md CHANGED
@@ -66,6 +66,36 @@
66
66
  * dependencies
67
67
  * @dotcom-tool-kit/logger bumped from ^4.1.1 to ^4.2.0
68
68
 
69
+ ## [2.0.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/base-v1.3.1...base-v2.0.0) (2025-10-28)
70
+
71
+
72
+ ### ⚠ BREAKING CHANGES
73
+
74
+ * declare Node engines in all libraries
75
+
76
+ ### Features
77
+
78
+ * declare Node engines in all libraries ([648d4d0](https://github.com/Financial-Times/dotcom-tool-kit/commit/648d4d0267d329655056ad38614b6659c80f5409))
79
+
80
+
81
+ ### Dependencies
82
+
83
+ * The following workspace dependencies were updated
84
+ * dependencies
85
+ * @dotcom-tool-kit/conflict bumped from ^1.0.1 to ^2.0.0
86
+ * @dotcom-tool-kit/logger bumped from ^4.2.2 to ^5.0.0
87
+ * @dotcom-tool-kit/validated bumped from ^1.0.3 to ^2.0.0
88
+ * devDependencies
89
+ * @dotcom-tool-kit/config bumped from ^1.1.1 to ^2.0.0
90
+ * @dotcom-tool-kit/plugin bumped from ^1.1.0 to ^2.0.0
91
+
92
+ ## [1.3.1](https://github.com/Financial-Times/dotcom-tool-kit/compare/base-v1.3.0...base-v1.3.1) (2025-10-09)
93
+
94
+
95
+ ### Bug Fixes
96
+
97
+ * bump semver from 7.7.2 to 7.7.3 ([f37e915](https://github.com/Financial-Times/dotcom-tool-kit/commit/f37e915f184786c24dfe6095d3a54267c0738e5b))
98
+
69
99
  ## [1.3.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/base-v1.2.3...base-v1.3.0) (2025-08-12)
70
100
 
71
101
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcom-tool-kit/base",
3
- "version": "1.3.0",
3
+ "version": "2.0.0",
4
4
  "description": "",
5
5
  "main": "lib",
6
6
  "scripts": {
@@ -10,20 +10,23 @@
10
10
  "author": "",
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
- "@dotcom-tool-kit/conflict": "^1.0.1",
14
- "@dotcom-tool-kit/logger": "^4.2.2",
15
- "@dotcom-tool-kit/validated": "^1.0.3",
16
- "semver": "^7.7.2",
13
+ "@dotcom-tool-kit/conflict": "^2.0.0",
14
+ "@dotcom-tool-kit/logger": "^5.0.0",
15
+ "@dotcom-tool-kit/validated": "^2.0.0",
16
+ "semver": "^7.7.3",
17
17
  "winston": "^3.17.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@dotcom-tool-kit/config": "^1.1.1",
21
- "@dotcom-tool-kit/plugin": "^1.1.0",
20
+ "@dotcom-tool-kit/config": "^2.0.0",
21
+ "@dotcom-tool-kit/plugin": "^2.0.0",
22
22
  "type-fest": "^4.41.0",
23
23
  "winston": "^3.17.0",
24
24
  "zod": "^3.24.4"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "zod": "^3.24.4"
28
+ },
29
+ "engines": {
30
+ "node": ">=20.x"
28
31
  }
29
32
  }