@reddb-io/client-bun 1.0.4 → 1.0.7

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 +24 -0
  2. package/package.json +1 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,24 @@
1
+ # @reddb-io/client-bun
2
+
3
+ ## 1.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [`da708d9`](https://github.com/reddb-io/reddb/commit/da708d979ed3a2289dd5da985db48879504d6b94) Thanks [@filipeforattini](https://github.com/filipeforattini)! - Skips the stalled `v1.0.6` release. This bundles everything that landed since `v1.0.5` plus the infrastructure that makes future releases atomic.
8
+
9
+ **Query / engine**
10
+
11
+ - `$N` positional parameters across the query language (INSERT VALUES, SEARCH SIMILAR, SEARCH HYBRID, SEARCH TEXT, SEARCH MULTIMODAL, SEARCH SPATIAL, SEARCH INDEX — `LIMIT $N`, `MIN_SCORE $N`, `K $N`).
12
+ - `?` positional placeholders in the parser, with mixing detection.
13
+ - HTTP `/query` now accepts a `params` JSON array.
14
+
15
+ **Distribution & docs**
16
+
17
+ - Workspace crates published under the `reddb-io-*` namespace on crates.io (`reddb-io`, `reddb-io-client`, `reddb-io-server`, `reddb-io-wire`, `reddb-io-grpc-proto`, `reddb-io-client-connector`). Rust library import paths (`use reddb::…`, `use reddb_client::…`, etc.) are unchanged.
18
+ - Per-language driver pages under `docs/clients/drivers/` (rust, python, python-asyncio, go, php, dart, cpp, zig, bun) plus a hub matrix at `docs/clients/drivers.md`.
19
+
20
+ **Release pipeline**
21
+
22
+ - macOS Intel binaries (`red-macos-x86_64`, `red_client-macos-x86_64`) are now produced by the release matrix.
23
+ - Adopted [Changesets](https://github.com/changesets/changesets) for atomic version + release: the version bump and the GitHub Release tag are now produced by CI in a single step, eliminating the race that caused `@reddb-io/sdk`'s postinstall to 404 in the window between a local `pnpm version` and the release workflow finishing.
24
+ - `postinstall` scripts now (a) print actionable recovery paths when an asset 404s and (b) skip cleanly when running from a workspace checkout (`pnpm install` in the monorepo no longer surfaces a download error).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reddb-io/client-bun",
3
- "version": "1.0.4",
3
+ "version": "1.0.7",
4
4
  "description": "RedDB wire protocol client for Bun — ultra-fast native TCP",
5
5
  "main": "index.ts",
6
6
  "license": "MIT",