@abloatai/ablo 0.9.5 → 0.9.6

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.6
4
+
5
+ ### Patch Changes
6
+
7
+ - CLI quickstart simplification (3 commands). `init` now owns login, `migrate` is dropped from the direct-`databaseUrl` quickstart (dev handles it), and the `dev` command is renamed to `push` for honest naming with headless-safe login. **Note:** `ablo dev` is now `ablo push` — update any scripts. Also fixes 3 production bugs surfaced by the new end-to-end journey test harness.
8
+
3
9
  ## 0.9.5
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -53,10 +53,10 @@ npm install @abloatai/ablo
53
53
  npx ablo login # opens the browser: sign in (or sign up) → a sk_test_ key is saved locally
54
54
  npx ablo init # scaffolds ablo/schema.ts (offers to log in if you skipped it)
55
55
  npx ablo migrate # creates the synced tables in YOUR Postgres (reads DATABASE_URL)
56
- npx ablo dev # pushes your schema (sandbox), writes ABLO_API_KEY to .env.local, watches for changes
56
+ npx ablo push # pushes your schema (sandbox), writes ABLO_API_KEY to .env.local, watches for changes
57
57
  ```
58
58
 
59
- After `ablo dev`, the [Quick Start](#quick-start) below runs as-is —
59
+ After `ablo push`, the [Quick Start](#quick-start) below runs as-is —
60
60
  `ABLO_API_KEY` is already in `.env.local` (frameworks load it automatically;
61
61
  plain Node: `node --env-file=.env.local app.ts`). `npx ablo status` shows
62
62
  what's configured at any time.
@@ -94,7 +94,7 @@ const schema = defineSchema({
94
94
 
95
95
  const ablo = Ablo({
96
96
  schema,
97
- apiKey: process.env.ABLO_API_KEY, // written to .env.local by `npx ablo dev`
97
+ apiKey: process.env.ABLO_API_KEY, // written to .env.local by `npx ablo push`
98
98
  databaseUrl: process.env.DATABASE_URL, // your Postgres — rows live here, never with Ablo
99
99
  });
100
100