@voltro/protocol 0.1.5 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -39,6 +39,14 @@ _Changes staged for the next release accumulate here (rolled up from
39
39
 
40
40
  ---
41
41
 
42
+ ## [0.1.6] — 2026-07-17
43
+
44
+ ### Added
45
+
46
+ - **@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.
47
+
48
+ ---
49
+
42
50
  ## [0.1.5] — 2026-07-16
43
51
 
44
52
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltro/protocol",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "The Voltro wire + plugin contract — defineQuery/Mutation/Action/Stream, definePlugin, sessions / JWT / API-keys, and the RPC protocol.",
5
5
  "keywords": [
6
6
  "voltro",
@@ -53,7 +53,7 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@effect/sql": "^0.51.1",
56
- "@voltro/database": "0.1.5",
56
+ "@voltro/database": "0.1.6",
57
57
  "jose": "^6.2.3"
58
58
  },
59
59
  "peerDependencies": {