@reddb-io/client-bun 1.0.7 → 1.0.8

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 +22 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @reddb-io/client-bun
2
2
 
3
+ ## 1.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [`c92f9e7`](https://github.com/reddb-io/reddb/commit/c92f9e7d386b459107a60a0796a25fce2c23ffc5) Thanks [@filipeforattini](https://github.com/filipeforattini)! - Bundle of work that landed since `v1.0.7`.
8
+
9
+ **Query / engine**
10
+
11
+ - `SELECT … LIMIT $N OFFSET $N` parameterized — completes the `$N` bind sweep (`closes [#361](https://github.com/reddb-io/reddb/issues/361)`).
12
+ - ASK responses now include inline `[^N]` citation markers, parsed by a dedicated `CitationParser` (`closes [#393](https://github.com/reddb-io/reddb/issues/393)`).
13
+
14
+ **Drivers**
15
+
16
+ - **Go.** `c.Query(ctx, sql, params...)` accepts variadic `any` bind values, routed through the binary `QueryWithParams` frame when the server advertises `FEATURE_PARAMS`. Full Go → engine type mapping documented in the driver hub page (`closes [#363](https://github.com/reddb-io/reddb/issues/363)`).
17
+ - **JS / TS.** RedWire `QueryWithParams` frame emit + `FEATURE_PARAMS` capability negotiation in the SDK and thin client.
18
+
19
+ **Infrastructure**
20
+
21
+ - `lru` bumped from `0.12` → `0.16`, picking up the upstream fix for the `IterMut` Stacked Borrows UB flagged by Dependabot (alerts [#19](https://github.com/reddb-io/reddb/issues/19), [#20](https://github.com/reddb-io/reddb/issues/20)).
22
+ - CI workflows replace `arduino/setup-protoc@v3` (Node 20-deprecated) with a local `install-protoc` composite action that downloads protoc 28.3 directly. Eliminates the deprecation warning on every job.
23
+ - Dropped the unsupported `save-always: true` input from `Swatinem/rust-cache@v2` (silently ignored but emitted a warning per build).
24
+
3
25
  ## 1.0.7
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reddb-io/client-bun",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "RedDB wire protocol client for Bun — ultra-fast native TCP",
5
5
  "main": "index.ts",
6
6
  "license": "MIT",