@theokit/sdk-handoff 0.1.3 → 0.1.4

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 +29 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 1a4bbcf: The declared `@theokit/sdk` peer ranges stop promising versions the packages do not compile against.
8
+
9
+ All three declared `>=4.0.0`. `4.0.1` is the lowest published version that range admits — what a
10
+ consumer pinning conservatively, or resolving under an older transitive constraint, lands on. npm
11
+ resolves the combination with no `ERESOLVE` and no peer warning, and the build then fails on
12
+ `TS2552: Cannot find name` and `TS2305: has no exported member`.
13
+
14
+ The floors were measured by bisecting the 116 stable 4.x releases with a real build as the oracle.
15
+ Each one has its immediately preceding version failing, so these are exact versions rather than
16
+ intervals:
17
+
18
+ | package | floor | evidence |
19
+ | ---------------------- | ---------- | ------------------------------- |
20
+ | `@theokit/sdk-budget` | `>=4.54.0` | `4.53.1` fails, `4.54.0` passes |
21
+ | `@theokit/sdk-handoff` | `>=4.54.0` | `4.53.1` fails, `4.54.0` passes |
22
+ | `@theokit/sdk-memory` | `>=4.53.1` | `4.53.0` fails, `4.53.1` passes |
23
+
24
+ `sdk-memory` sits one release below the other two: this is not one shared migration, it is three
25
+ packages that each drifted past their own declared floor.
26
+
27
+ The oracle deletes every `dist/` before building. Without that the build reads a sibling's output
28
+ compiled against a different version, which is how a package "passes" against an SDK missing its
29
+ symbols — the failure mode that made the earlier measurement disagree with CI
30
+ (usetheokit/theokit-sdk#423).
31
+
3
32
  ## 0.1.3
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/sdk-handoff",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Inter-agent dispatch for @theokit/sdk — typed Handoff descriptors, loop protection, plugin-based wiring.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/usetheokit/theokit-sdk#readme",
@@ -56,7 +56,7 @@
56
56
  ],
57
57
  "peerDependencies": {
58
58
  "@opentelemetry/api": "^1.9.0",
59
- "@theokit/sdk": ">=4.0.0",
59
+ "@theokit/sdk": ">=4.54.0",
60
60
  "zod": "^4.0.0"
61
61
  },
62
62
  "peerDependenciesMeta": {
@@ -70,7 +70,7 @@
70
70
  "typescript": "^5.7.2",
71
71
  "vitest": "^4.1.8",
72
72
  "zod": "^4.0.0",
73
- "@theokit/sdk": "4.54.0"
73
+ "@theokit/sdk": "4.59.0"
74
74
  },
75
75
  "publishConfig": {
76
76
  "provenance": true,