@abloatai/ablo 0.41.0 → 0.42.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 +27 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.42.0
4
+
5
+ ### `ablo whoami`: what does this key act on?
6
+
7
+ `whoami` returns the server-confirmed organization, project, and branch a key
8
+ acts on, or fails. Where `status` is the broad health report and deliberately
9
+ degrades when an older or unreachable server cannot confirm identity, `whoami`
10
+ is the strict form of the question, which makes it safe to run before a
11
+ `connect` or `deregister` instead of inferring a key's scope from a failed
12
+ mutation.
13
+
14
+ ### Bound sessions resolve their schema again
15
+
16
+ Every read seam that honored a first-party schema binding substituted the
17
+ owner's organization but kept the caller's own branch, a location where the
18
+ owner's schema never lives. Bound sessions therefore resolved an empty schema:
19
+ bootstraps returned no models and every query answered `unknown_model`. Reads
20
+ and commits now resolve the model map on the owner's branch axis, and an
21
+ absent branch resolves to the owner's root.
22
+
23
+ ### Re-pushing an unchanged schema no longer fails
24
+
25
+ The unchanged-schema fast path skipped the provisioning deferral the real
26
+ migration path has, so an identical `ablo push` was refused on any plane that
27
+ had no DDL to run. The fast path now defers exactly like the real path, and a
28
+ second push of the same schema succeeds with nothing left undone.
29
+
3
30
  ## 0.41.0
4
31
 
5
32
  ### Log in before you have a schema
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abloatai/ablo",
3
- "version": "0.41.0",
3
+ "version": "0.42.0",
4
4
  "description": "The public Ablo SDK for coordinated reads, commits, claims, observation, and reactive applications.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -124,8 +124,8 @@
124
124
  "directory": "packages/ablo"
125
125
  },
126
126
  "dependencies": {
127
- "@abloatai/humans": "^0.41.0",
128
- "@abloatai/transaction": "^0.41.0"
127
+ "@abloatai/humans": "^0.42.0",
128
+ "@abloatai/transaction": "^0.42.0"
129
129
  },
130
130
  "peerDependencies": {
131
131
  "ai": "^6.0.0 || ^7.0.0",