@theokit/sdk-memory 0.5.0 → 0.5.2-next.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 +25 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Changelog — @theokit/sdk-memory
2
2
 
3
+ ## 0.5.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [01630ec]
8
+ - @theokit/sdk@4.63.4-next.0
9
+
10
+ ## 0.5.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 300d8f9: The declared `@theokit/sdk` floor rises to `>=4.63.0`, which is what this package has needed since
15
+ it stopped carrying copies.
16
+
17
+ `resolveMemoryRoot`, `sessionsDir`, `writeSessionSummary`, `discoverSessionFiles`,
18
+ `discoverWikiFiles`, `persistActiveMemoryTranscript`, `collectMarkdownFiles`, `defaultIndexPath`,
19
+ `lanceStoragePath`, `readAllSqliteFacts` and the diary module all arrived in 4.63.0. Against
20
+ `>=4.60.0` the install resolves and the imports do not exist — `dep-check`'s floor leg has been
21
+ saying so out loud, correctly, since the de-duplication landed.
22
+
23
+ It could not be corrected in that release: a package cannot declare a floor that is not published
24
+ yet, and 4.63.0 was the version that release created. `onlyUpdatePeerDependentsWhenOutOfRange`
25
+ meant changesets would not raise it either, because `>=4.60.0` still admits 4.63.0 and so nothing
26
+ looked out of range. The bump had to wait for the version to exist, which it now does.
27
+
3
28
  ## 0.5.0
4
29
 
5
30
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/sdk-memory",
3
- "version": "0.5.0",
3
+ "version": "0.5.2-next.0",
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.60.0",
41
+ "@theokit/sdk": ">=4.63.4-next.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.63.0"
64
+ "@theokit/sdk": "4.63.4-next.0"
65
65
  },
66
66
  "publishConfig": {
67
67
  "provenance": true,