@jami-studio/core 0.92.25 → 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 CHANGED
@@ -27,5 +27,5 @@ rg -n "defineAction|useActionQuery" node_modules/@agent-native/core/corpus
27
27
 
28
28
  ## Generated Counts
29
29
 
30
- - core files: 2155
30
+ - core files: 2156
31
31
  - template files: 5114
@@ -1,5 +1,17 @@
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
+
9
+ ## 0.92.26
10
+
11
+ ### Patch Changes
12
+
13
+ - 64f78fe: ssrfSafeFetch trusts the deployment's OWN configured origins (APP_URL, BETTER_AUTH_URL, WEBHOOK_BASE_URL, WORKSPACE_GATEWAY_URL, workspace app manifest URLs). These are operator configuration, not user input, so a fetch to them is a self-call — the private-address guard was blocking every workspace-internal A2A call (call-agent to a sibling app) on local dev and self-hosted private networks. Only exact origin matches are trusted; redirect hops are still re-validated, so a trusted origin cannot 30x into the private network, and the default posture with no configured origins is unchanged.
14
+
3
15
  ## 0.92.25
4
16
 
5
17
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.92.25",
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": {