@jami-studio/core 0.92.26 → 0.92.27
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/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +6 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/observability/store.ts +1313 -1321
- package/corpus/core/src/shared/init-memo.ts +94 -0
- package/dist/observability/store.d.ts +1 -1
- package/dist/observability/store.d.ts.map +1 -1
- package/dist/observability/store.js +311 -316
- package/dist/observability/store.js.map +1 -1
- package/dist/shared/init-memo.d.ts +34 -0
- package/dist/shared/init-memo.d.ts.map +1 -0
- package/dist/shared/init-memo.js +80 -0
- package/dist/shared/init-memo.js.map +1 -0
- package/package.json +1 -1
package/corpus/README.md
CHANGED
package/corpus/core/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @agent-native/core
|
|
2
2
|
|
|
3
|
+
## 0.92.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ee6780b: Workerd-safe init memoization (`createInitMemo` in shared/init-memo.ts): module-scope `let _initPromise` singletons freeze on Cloudflare Workers when the request that created them responds before the init settles — every later awaiter then hangs forever. Proven live: `ensureObservabilityTables` frozen by a get-session-first request ordering wedged every agent chat run at "Starting agent" on the unified runtime. The helper ties the init promise to the creating request via `__cf_ctx.waitUntil` and re-runs a presumed-frozen pending memo under the current request after a bounded wait (init bodies are idempotent DDL). The observability store now uses it; the remaining ~38 `_initPromise` stores are queued for the same conversion.
|
|
8
|
+
|
|
3
9
|
## 0.92.26
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/corpus/core/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.92.
|
|
3
|
+
"version": "0.92.27",
|
|
4
4
|
"description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
|
|
5
5
|
"homepage": "https://github.com/studio-jami/jami-studio#readme",
|
|
6
6
|
"bugs": {
|