@voltro/plugin-clickhouse 0.1.6 → 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,14 @@ _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
+
42
50
  ## [0.1.6] — 2026-07-17
43
51
 
44
52
  ### 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-clickhouse itself, which is proprietary (see LICENSE).
7
7
 
8
- Generated from the resolved runtime dependency closure (51 packages).
8
+ Generated from the resolved runtime dependency closure (50 packages).
9
9
 
10
10
  ---
11
11
 
@@ -3592,34 +3592,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3592
3592
  SOFTWARE.
3593
3593
  ```
3594
3594
 
3595
- ## @parcel/watcher-linux-x64-musl@2.5.6
3596
-
3597
- License: MIT
3598
-
3599
- ```
3600
- MIT License
3601
-
3602
- Copyright (c) 2017-present Devon Govett
3603
-
3604
- Permission is hereby granted, free of charge, to any person obtaining a copy
3605
- of this software and associated documentation files (the "Software"), to deal
3606
- in the Software without restriction, including without limitation the rights
3607
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3608
- copies of the Software, and to permit persons to whom the Software is
3609
- furnished to do so, subject to the following conditions:
3610
-
3611
- The above copyright notice and this permission notice shall be included in all
3612
- copies or substantial portions of the Software.
3613
-
3614
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3615
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3616
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3617
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3618
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3619
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3620
- SOFTWARE.
3621
- ```
3622
-
3623
3595
  ## @upstash/redis@1.38.0
3624
3596
 
3625
3597
  License: MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltro/plugin-clickhouse",
3
- "version": "0.1.6",
3
+ "version": "0.2.0",
4
4
  "description": "ClickHouse AnalyticsSink. Native HTTP ingest into a ClickHouse cluster — self-hosted OR ClickHouse Cloud. Production-grade OLAP for high-cardinality events with millisecond aggregate queries over billions of rows.",
5
5
  "keywords": [
6
6
  "voltro",
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@clickhouse/client": "^1.23.1",
36
- "@voltro/logger": "0.1.6",
37
- "@voltro/runtime": "0.1.6"
36
+ "@voltro/logger": "0.2.0",
37
+ "@voltro/runtime": "0.2.0"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "effect": "^3.21.4"