@theokit/sdk-tools 0.27.1 → 0.27.2
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 +18 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.27.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1a4bbcf: The declared `@theokit/sdk` peer range stops promising a version the package does not compile against.
|
|
8
|
+
|
|
9
|
+
It declared `>=4.19.3` and fails at exactly that floor, with `error TS2552: Cannot find name`. npm
|
|
10
|
+
resolves the combination with no `ERESOLVE` and no peer warning, and the break surfaces in the build,
|
|
11
|
+
far from the range that caused it.
|
|
12
|
+
|
|
13
|
+
The real floor is `4.54.0`, measured by bisecting the 116 stable 4.x releases with a real build as the
|
|
14
|
+
oracle: `4.53.1` fails and `4.54.0` passes. They are adjacent in the published list, so this is the
|
|
15
|
+
exact version rather than an interval.
|
|
16
|
+
|
|
17
|
+
This package had been excluded from the sibling finding (usetheokit/theokit-sdk#423) for declaring a
|
|
18
|
+
narrower range than the other four. A narrower range can still be false — it is just false over a
|
|
19
|
+
smaller interval (usetheokit/theokit-sdk#425).
|
|
20
|
+
|
|
3
21
|
## 0.27.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/sdk-tools",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.2",
|
|
4
4
|
"description": "Built-in tools for @theokit/sdk agents — file system, git, subprocess, search-text, vitest runner.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/usetheokit/theokit-sdk#readme",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"LICENSE"
|
|
39
39
|
],
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@theokit/sdk": ">=4.
|
|
41
|
+
"@theokit/sdk": ">=4.54.0",
|
|
42
42
|
"simple-git": "^3.0.0",
|
|
43
43
|
"vitest": ">=2.0.0",
|
|
44
44
|
"zod": "^4.0.0"
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"typescript": "^5.7.2",
|
|
57
57
|
"vitest": "^4.1.8",
|
|
58
58
|
"zod": "^4.0.0",
|
|
59
|
-
"@theokit/sdk": "4.
|
|
60
|
-
"@theokit/sdk-cache": "1.0.
|
|
61
|
-
"@theokit/sdk-handoff": "0.1.
|
|
59
|
+
"@theokit/sdk": "4.59.0",
|
|
60
|
+
"@theokit/sdk-cache": "1.0.1",
|
|
61
|
+
"@theokit/sdk-handoff": "0.1.4"
|
|
62
62
|
},
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"provenance": true,
|