@gencode/server 0.4.3 → 0.4.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 +15 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @gencode/server
2
2
 
3
+ ## 0.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 12db0bf: Builtin memory now writes canonical Markdown through a shared document store with cross-process locking, so concurrent agents no longer silently drop recent notes. Appends, recent logs, updates, structured merges, and deletes refresh only their affected SQLite projection files; search stays available from canonical Markdown if refresh fails. External file watches use affected refresh when the file is known and retain full-sync compatibility for directory or unknown events.
8
+
9
+ Builtin memory projection now persists deterministic memory, session, recipe, target, and projected revisions in a versioned meta envelope. Freshness is true only when the persisted target revision equals the projected revision—not dirty flags or chunk counts. Concurrent sync, rebuild, affected, session, and recovery work share a single-flight scheduler so one manager never runs overlapping applies. Failed or partial applies keep the previous projected revision, surface error diagnostics, and recover on a later sync while search can fall back to canonical Markdown. Enabling or disabling session sources, changing the session store identity, or changing embedding recipe settings (provider/model key, chunk size/overlap, vector settings) invalidates the projection until a full-compatible sync repairs it; ranking-only overrides such as max results do not force a rebuild.
10
+
11
+ - Updated dependencies [08214df]
12
+ - Updated dependencies [12db0bf]
13
+ - Updated dependencies [221dd2f]
14
+ - Updated dependencies [766962b]
15
+ - @gencode/agents@0.20.3
16
+ - @gencode/cli@0.17.5
17
+
3
18
  ## 0.4.3
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/server",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aimax-server": "./dist/bin.js"
@@ -19,9 +19,9 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@gencode/agents": "0.20.2",
23
- "@gencode/uni": "0.4.0",
24
- "@gencode/cli": "0.17.4"
22
+ "@gencode/agents": "0.20.3",
23
+ "@gencode/cli": "0.17.5",
24
+ "@gencode/uni": "0.4.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^22.0.0",