@voltro/plugin-ai-flows 0.1.5 → 0.2.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 CHANGED
@@ -39,6 +39,22 @@ _Changes staged for the next release accumulate here (rolled up from
39
39
 
40
40
  ---
41
41
 
42
+ ## [0.2.0] — 2026-07-17
43
+
44
+ ### ⚠ BREAKING
45
+
46
+ - **@voltro/cli** — The SQL dialect drivers (`@voltro/sql-postgres`, `@voltro/sql-mysql`, `@voltro/sql-mssql`, `@voltro/sql-sqlite`, `@voltro/sql-turso`) are no longer dependencies of `@voltro/cli`. Each app now declares the driver for its own DB dialect as a dependency, and `voltro dev`/`serve`/`migrate` resolve it from the app root. This keeps every driver — including turso's ~90 MB native binary — out of the production image of an app that doesn't use it: a `store: 'memory'` app ships no SQL driver at all, and a postgres app ships only `@voltro/sql-postgres`. Combined with a `pnpm --prod deploy`-based Dockerfile (the standalone/template Dockerfiles now do this), a memory-API image drops its `node_modules` from ~477 MB to ~330 MB. **Migration:** add the driver for your dialect to the app that uses it — `pnpm add @voltro/sql-postgres` (or `-mysql` for mysql/mariadb, `-mssql`, `-sqlite`, `-turso`). A memory store needs none. Scaffolded projects already declare it, and `voltro add mssql` adds `@voltro/sql-mssql` automatically. If the driver is missing at boot, `voltro serve` now fails with a message naming the exact package to install instead of an opaque module-not-found.
47
+
48
+ ---
49
+
50
+ ## [0.1.6] — 2026-07-17
51
+
52
+ ### Added
53
+
54
+ - **@voltro/cli** — `voltro serve` now logs how long it took to become ready (`serve: ready in <n>ms`), and with `VOLTRO_BOOT_TIMING=1` breaks that total into per-phase timings — `modules` (node init + module-graph load/compile), `config`, `discover`, `store`, `plugins`, `workflow`, `ready`. This is the diagnostic for cold-start latency on scale-to-zero containers: read it from the container's own logs at its real CPU allotment to see which phase dominates. On a cold process the `modules` phase (evaluating the dependency graph) is almost always the largest, and no app-level change — precompiling the API with `voltro build` included — shrinks it; precompiling removes only the transpile of the app's own source files. The feature is a handful of `performance.now()` calls and one log line, safe to leave on in production.
55
+
56
+ ---
57
+
42
58
  ## [0.1.5] — 2026-07-16
43
59
 
44
60
  ### Added
@@ -5,7 +5,7 @@ property of its respective copyright holders and is used under the terms of
5
5
  its license. This file is provided for attribution; it grants no rights in
6
6
  @voltro/plugin-ai-flows itself, which is proprietary (see LICENSE).
7
7
 
8
- Generated from the resolved runtime dependency closure (61 packages).
8
+ Generated from the resolved runtime dependency closure (60 packages).
9
9
 
10
10
  ---
11
11
 
@@ -3468,34 +3468,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3468
3468
  SOFTWARE.
3469
3469
  ```
3470
3470
 
3471
- ## @parcel/watcher-linux-x64-musl@2.5.6
3472
-
3473
- License: MIT
3474
-
3475
- ```
3476
- MIT License
3477
-
3478
- Copyright (c) 2017-present Devon Govett
3479
-
3480
- Permission is hereby granted, free of charge, to any person obtaining a copy
3481
- of this software and associated documentation files (the "Software"), to deal
3482
- in the Software without restriction, including without limitation the rights
3483
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3484
- copies of the Software, and to permit persons to whom the Software is
3485
- furnished to do so, subject to the following conditions:
3486
-
3487
- The above copyright notice and this permission notice shall be included in all
3488
- copies or substantial portions of the Software.
3489
-
3490
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3491
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3492
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3493
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3494
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3495
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3496
- SOFTWARE.
3497
- ```
3498
-
3499
3471
  ## @standard-schema/spec@1.1.0
3500
3472
 
3501
3473
  License: MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltro/plugin-ai-flows",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "AI Flows — durable multi-step AI pipelines (deterministic + agentic) with human-in-the-loop, chaining, and cadence. Author flows in code (defineFlow) or as data (visual editor rows); one engine runs both on @voltro/workflow durability, @voltro/ai generation, storage artifacts, and notifications.",
5
5
  "keywords": [
6
6
  "voltro",
@@ -57,15 +57,15 @@
57
57
  "node": ">=24.0.0"
58
58
  },
59
59
  "dependencies": {
60
- "@voltro/ai": "0.1.5",
61
- "@voltro/database": "0.1.5",
62
- "@voltro/env": "0.1.5",
63
- "@voltro/plugin-audit": "0.1.5",
64
- "@voltro/plugin-multitenancy": "0.1.5",
65
- "@voltro/plugin-soft-delete": "0.1.5",
66
- "@voltro/protocol": "0.1.5",
67
- "@voltro/runtime": "0.1.5",
68
- "@voltro/workflow": "0.1.5"
60
+ "@voltro/ai": "0.2.0",
61
+ "@voltro/database": "0.2.0",
62
+ "@voltro/env": "0.2.0",
63
+ "@voltro/plugin-audit": "0.2.0",
64
+ "@voltro/plugin-multitenancy": "0.2.0",
65
+ "@voltro/plugin-soft-delete": "0.2.0",
66
+ "@voltro/protocol": "0.2.0",
67
+ "@voltro/runtime": "0.2.0",
68
+ "@voltro/workflow": "0.2.0"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "effect": "^3.21.4"