picovolt 1.7.1 → 1.8.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/README.md CHANGED
@@ -111,10 +111,24 @@ cargo run --release --example repl # interactive SQL shell (pvsql)
111
111
  cargo run --release --example bench # evaluation harness across modes and workloads
112
112
  ```
113
113
 
114
- Install the first-class CLI with `cargo install picovolt`, then use `pv query`,
115
- `pv inspect`, `pv history`, `pv import`, `pv export`, and `pv bake`. Copyable
116
- Rust, Python, Go, Node, and browser projects are in [`starters/`](starters/README.md); supported adapters
117
- are catalogued in [`docs/INTEGRATIONS.md`](docs/INTEGRATIONS.md).
114
+ Install the full CLI with `cargo install picovolt --features data-tools`, then use `pv query`,
115
+ `pv inspect`, `pv history`, `pv diff`, `pv import`, `pv export`, and `pv bake`.
116
+ Parquet/SQLite conversion, query explanations, inspection, resumable baking,
117
+ and dataset signing are documented in [Data tools](docs/DATA_TOOLS.md).
118
+
119
+ Compare two MVCC snapshots with:
120
+
121
+ ```sh
122
+ pv diff ./data users --from 42 --to 57
123
+ pv diff ./data users --from 42 --to 57 --format jsonl
124
+ ```
125
+
126
+ CSV is the default and identifies each row with an `_change` column. JSONL uses
127
+ `{"change":"added|removed","row":{...}}`. The diff is deterministic and
128
+ duplicate-aware; an update is represented as a removed row followed by an added
129
+ row. Copyable Rust, Python, Go, Node, and browser projects are in
130
+ [`starters/`](starters/README.md); supported adapters are catalogued in
131
+ [`docs/INTEGRATIONS.md`](docs/INTEGRATIONS.md).
118
132
 
119
133
  SQL supports the normal PicoVolt CRUD and schema statements plus projection,
120
134
  filters, aggregates, grouping, time travel, ordering, and pagination. The
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "picovolt",
3
3
  "type": "module",
4
4
  "description": "Embedded SQL database with MVCC history and single-file deployment",
5
- "version": "1.7.1",
5
+ "version": "1.8.0",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",
package/picovolt_bg.wasm CHANGED
Binary file