@abloatai/ablo 0.40.0 → 0.41.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.
- package/CHANGELOG.md +30 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.41.0
|
|
4
|
+
|
|
5
|
+
### Log in before you have a schema
|
|
6
|
+
|
|
7
|
+
`mintUserSessionKey` accepts `controlPlaneOnly` as a third grant form, for
|
|
8
|
+
sessions that exist to prove identity to the dashboard and control surfaces
|
|
9
|
+
rather than to read or write data. An organization that has pushed no schema
|
|
10
|
+
can now complete `ablo login`, which is the very credential pushing requires;
|
|
11
|
+
the old circle (push needs keys, keys need login, login needed a schema) is
|
|
12
|
+
gone. Data sessions are unchanged, and a control-plane session holds no model
|
|
13
|
+
authority.
|
|
14
|
+
|
|
15
|
+
### `connect apply` asks before it touches your database
|
|
16
|
+
|
|
17
|
+
The locate preflight runs before provisioning. When another plane of your
|
|
18
|
+
organization already holds the source, `connect apply` refuses with exit 1,
|
|
19
|
+
names `ablo connect deregister` as the way out, and leaves your database
|
|
20
|
+
exactly as it found it; the same conflict used to be discovered only after a
|
|
21
|
+
run had created roles and a publication. A connection string without a
|
|
22
|
+
password is refused at registration with the field named, instead of failing
|
|
23
|
+
later as a masked server error.
|
|
24
|
+
|
|
25
|
+
### A CLI that says when a command does not exist
|
|
26
|
+
|
|
27
|
+
Typing a command the CLI does not recognize used to print the full help and
|
|
28
|
+
exit zero. It now fails with the name it did not recognize and, when a
|
|
29
|
+
plausible target exists, the command to use: a typo lands on the intended
|
|
30
|
+
command, and a wrong-but-reasonable name like `disconnect` points at
|
|
31
|
+
`ablo connect deregister`.
|
|
32
|
+
|
|
3
33
|
## 0.40.0
|
|
4
34
|
|
|
5
35
|
### The price is a contract, and the pricing page derives from it
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abloatai/ablo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.41.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.
|
|
128
|
-
"@abloatai/transaction": "^0.
|
|
127
|
+
"@abloatai/humans": "^0.41.0",
|
|
128
|
+
"@abloatai/transaction": "^0.41.0"
|
|
129
129
|
},
|
|
130
130
|
"peerDependencies": {
|
|
131
131
|
"ai": "^6.0.0 || ^7.0.0",
|