@theokit/sdk-memory 0.3.2 → 0.3.3

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 +46 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # Changelog — @theokit/sdk-memory
2
2
 
3
+ ## 0.3.3
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
+
32
+ - 4b5e468: Raises the `@theokit/sdk` peer floor from `>=4.53.1` to `>=4.54.0`.
33
+
34
+ Not because this package outgrew 4.53.1 — because **4.53.1's own published declarations do not
35
+ compile**. Building against it fails inside the SDK's `.d.ts`, not in any code here:
36
+
37
+ ```
38
+ @theokit/sdk/dist/index.d.ts(350,24): error TS2552: Cannot find name 'AgentBuilderDeps'
39
+ @theokit/sdk/dist/index.d.ts(3004,15): error TS2304: Cannot find name 'DECLARED'
40
+ ```
41
+
42
+ #345 (`e368fc18`) bound the re-exported names the rollup had left unimported, and first shipped in
43
+ 4.54.0. A floor that names 4.53.1 therefore promises a version nobody can build against.
44
+
45
+ Worth separating from the sibling fixes in this release: those floors were wrong because the code
46
+ had outgrown them. This one is wrong because the version it names is broken — a distinct reason to
47
+ audit a floor, now recorded beside it.
48
+
3
49
  ## 0.3.2
4
50
 
5
51
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/sdk-memory",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Memory subsystem for @theokit/sdk — MemoryProvider impls (markdown file store today; LanceDB + embeddings + circuit breaker next iters). Consumes the kernel-facing port from sdk-core.",
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.0.0",
41
+ "@theokit/sdk": ">=4.54.0",
42
42
  "better-sqlite3": "^12.0.0",
43
43
  "sqlite-vec": ">=0.1.0",
44
44
  "@lancedb/lancedb": ">=0.20.0"
@@ -61,7 +61,7 @@
61
61
  "@types/better-sqlite3": "^7.6.13",
62
62
  "better-sqlite3": "^12.10.0",
63
63
  "sqlite-vec": "^0.1.6",
64
- "@theokit/sdk": "4.54.0"
64
+ "@theokit/sdk": "4.59.0"
65
65
  },
66
66
  "publishConfig": {
67
67
  "provenance": true,