Skip to content

Releases: joaoh82/rust_sqlite

v0.1.25

03 May 11:25
91ca631

Choose a tag to compare

SQLRite v0.1.25

Per-product releases in this wave:

  • 🦀 Rust enginecrates.io
  • 🤖 MCP servercrates.iocargo install sqlrite-mcp or grab a prebuilt binary tarball; wires SQLRite into Claude Code / Cursor / any MCP client over stdio
  • 🔧 C FFI — prebuilt libsqlrite_c for Linux x86_64/aarch64, macOS aarch64, Windows x86_64
  • 🖥️ Desktop — unsigned installers for Linux (AppImage + deb), macOS (dmg aarch64), Windows (msi)
  • 🐍 PythonPyPI — abi3-py38 wheels for Linux x86_64/aarch64, macOS aarch64, Windows x86_64 + sdist
  • 🟢 Node.jsnpm — N-API bindings with prebuilt .node binaries for Linux x86_64/aarch64, macOS aarch64, Windows x86_64
  • 🌐 WASMnpm — browser/bundler-target WebAssembly build via wasm-pack
  • 🐹 Go SDKgo get github.com/joaoh82/rust_sqlite/sdk/go@v0.1.25database/sql driver via cgo against libsqlrite_c

Auto-generated changelog below ↓

What's Changed

  • docs: Ask feature reference + backend proxy templates + WASM Ask demo by @joaoh82 in #72
  • Phase 7h: sqlrite-mcp — MCP server adapter (incl. 7g.8 ask tool) by @joaoh82 in #73
  • docs: pre-release sweep — surface Phase 7 completion + MCP discoverability by @joaoh82 in #74
  • Release v0.1.25 by @github-actions[bot] in #75

Full Changelog: v0.1.24...v0.1.25

WASM v0.2.0

03 May 21:09
2cb61d5

Choose a tag to compare

Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite-wasm/v/0.2.0

npm install @joaoh82/sqlrite-wasm@0.2.0
// Bundler target — works with webpack, vite, rollup, parcel
import init, { Database } from '@joaoh82/sqlrite-wasm';

await init();
const db = new Database();
db.exec("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)");
db.exec("INSERT INTO users (name) VALUES ('alice')");
const rows = db.query("SELECT id, name FROM users");
// → [{ id: 1, name: 'alice' }]

What's in the package:

  • sqlrite_wasm_bg.wasm — the WebAssembly engine binary
  • sqlrite_wasm.js — auto-generated JS glue (wasm-bindgen)
  • sqlrite_wasm.d.ts — TypeScript types
  • package.json — bundler-target metadata

Build target: bundler (webpack/vite/rollup-friendly).
For web / nodejs / deno targets, build from source via wasm-pack build sdk/wasm --target <target>.

Verify package provenance:

npm audit signatures

See the umbrella release v0.2.0 for the full changelog.

What's Changed

  • cleanup(engine): make process_command stdout-clean (drop REPL-only prints) by @joaoh82 in #76
  • docs(phase-8): plan — full-text search (BM25) + hybrid retrieval by @joaoh82 in #77
  • feat(fts): 8a — standalone algorithms (tokenizer + BM25 + posting list) by @joaoh82 in #78
  • feat(fts): 8b — SQL surface for full-text search by @joaoh82 in #79
  • feat(fts): 8c — cell-encoded persistence + on-demand v4→v5 bump by @joaoh82 in #80
  • feat(fts): 8d — hybrid retrieval worked example (BM25 + vector) by @joaoh82 in #81
  • feat(fts): 8e — sqlrite-mcp bm25_search tool by @joaoh82 in #82
  • feat(fts): 8f — final docs sweep for full-text search by @joaoh82 in #83
  • release: v0.2.0 by @joaoh82 in #84

Full Changelog: sdk/go/v0.1.25...sqlrite-wasm-v0.2.0

WASM v0.1.25

03 May 11:17
91ca631

Choose a tag to compare

Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite-wasm/v/0.1.25

npm install @joaoh82/sqlrite-wasm@0.1.25
// Bundler target — works with webpack, vite, rollup, parcel
import init, { Database } from '@joaoh82/sqlrite-wasm';

await init();
const db = new Database();
db.exec("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)");
db.exec("INSERT INTO users (name) VALUES ('alice')");
const rows = db.query("SELECT id, name FROM users");
// → [{ id: 1, name: 'alice' }]

What's in the package:

  • sqlrite_wasm_bg.wasm — the WebAssembly engine binary
  • sqlrite_wasm.js — auto-generated JS glue (wasm-bindgen)
  • sqlrite_wasm.d.ts — TypeScript types
  • package.json — bundler-target metadata

Build target: bundler (webpack/vite/rollup-friendly).
For web / nodejs / deno targets, build from source via wasm-pack build sdk/wasm --target <target>.

Verify package provenance:

npm audit signatures

See the umbrella release v0.1.25 for the full changelog.

What's Changed

  • docs: Ask feature reference + backend proxy templates + WASM Ask demo by @joaoh82 in #72
  • Phase 7h: sqlrite-mcp — MCP server adapter (incl. 7g.8 ask tool) by @joaoh82 in #73
  • docs: pre-release sweep — surface Phase 7 completion + MCP discoverability by @joaoh82 in #74
  • Release v0.1.25 by @github-actions[bot] in #75

Full Changelog: sdk/go/v0.1.24...sqlrite-wasm-v0.1.25

Rust engine v0.2.0

03 May 21:28
2cb61d5

Choose a tag to compare

Published to crates.io: https://crates.io/crates/sqlrite-engine/0.2.0

[dependencies]
sqlrite-engine = "0.2.0"
// The [lib] name stays `sqlrite`, so the import alias is
// the short one even though the package name is longer.
use sqlrite::{Database, ExecutionResult};

See the umbrella release v0.2.0 for the full changelog.

What's Changed

  • cleanup(engine): make process_command stdout-clean (drop REPL-only prints) by @joaoh82 in #76
  • docs(phase-8): plan — full-text search (BM25) + hybrid retrieval by @joaoh82 in #77
  • feat(fts): 8a — standalone algorithms (tokenizer + BM25 + posting list) by @joaoh82 in #78
  • feat(fts): 8b — SQL surface for full-text search by @joaoh82 in #79
  • feat(fts): 8c — cell-encoded persistence + on-demand v4→v5 bump by @joaoh82 in #80
  • feat(fts): 8d — hybrid retrieval worked example (BM25 + vector) by @joaoh82 in #81
  • feat(fts): 8e — sqlrite-mcp bm25_search tool by @joaoh82 in #82
  • feat(fts): 8f — final docs sweep for full-text search by @joaoh82 in #83
  • release: v0.2.0 by @joaoh82 in #84

Full Changelog: sdk/go/v0.1.25...sqlrite-v0.2.0

Rust engine v0.1.25

03 May 11:16
91ca631

Choose a tag to compare

Published to crates.io: https://crates.io/crates/sqlrite-engine/0.1.25

[dependencies]
sqlrite-engine = "0.1.25"
// The [lib] name stays `sqlrite`, so the import alias is
// the short one even though the package name is longer.
use sqlrite::{Database, ExecutionResult};

See the umbrella release v0.1.25 for the full changelog.

What's Changed

  • docs: Ask feature reference + backend proxy templates + WASM Ask demo by @joaoh82 in #72
  • Phase 7h: sqlrite-mcp — MCP server adapter (incl. 7g.8 ask tool) by @joaoh82 in #73
  • docs: pre-release sweep — surface Phase 7 completion + MCP discoverability by @joaoh82 in #74
  • Release v0.1.25 by @github-actions[bot] in #75

Full Changelog: sdk/go/v0.1.24...sqlrite-v0.1.25

Python v0.2.0

03 May 21:13
2cb61d5

Choose a tag to compare

Published to PyPI: https://pypi.org/project/sqlrite/0.2.0/

pip install sqlrite==0.2.0
import sqlrite
conn = sqlrite.connect(":memory:")
conn.execute("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)")
conn.execute("INSERT INTO users (name) VALUES (?)", ("alice",))
for row in conn.execute("SELECT * FROM users"):
    print(row)

Wheels in this release:

  • Linux x86_64 (manylinux2014 or newer)
  • Linux aarch64 (manylinux2014 or newer)
  • macOS aarch64 (Apple Silicon)
  • Windows x86_64
  • Source distribution (.tar.gz) — builds from source on other platforms via a local Rust toolchain

All wheels are abi3-py38, so one wheel per platform works on every CPython ≥ 3.8.

See the umbrella release v0.2.0 for the full changelog.

What's Changed

  • cleanup(engine): make process_command stdout-clean (drop REPL-only prints) by @joaoh82 in #76
  • docs(phase-8): plan — full-text search (BM25) + hybrid retrieval by @joaoh82 in #77
  • feat(fts): 8a — standalone algorithms (tokenizer + BM25 + posting list) by @joaoh82 in #78
  • feat(fts): 8b — SQL surface for full-text search by @joaoh82 in #79
  • feat(fts): 8c — cell-encoded persistence + on-demand v4→v5 bump by @joaoh82 in #80
  • feat(fts): 8d — hybrid retrieval worked example (BM25 + vector) by @joaoh82 in #81
  • feat(fts): 8e — sqlrite-mcp bm25_search tool by @joaoh82 in #82
  • feat(fts): 8f — final docs sweep for full-text search by @joaoh82 in #83
  • release: v0.2.0 by @joaoh82 in #84

Full Changelog: sdk/go/v0.1.25...sqlrite-py-v0.2.0

Python v0.1.25

03 May 11:22
91ca631

Choose a tag to compare

Published to PyPI: https://pypi.org/project/sqlrite/0.1.25/

pip install sqlrite==0.1.25
import sqlrite
conn = sqlrite.connect(":memory:")
conn.execute("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)")
conn.execute("INSERT INTO users (name) VALUES (?)", ("alice",))
for row in conn.execute("SELECT * FROM users"):
    print(row)

Wheels in this release:

  • Linux x86_64 (manylinux2014 or newer)
  • Linux aarch64 (manylinux2014 or newer)
  • macOS aarch64 (Apple Silicon)
  • Windows x86_64
  • Source distribution (.tar.gz) — builds from source on other platforms via a local Rust toolchain

All wheels are abi3-py38, so one wheel per platform works on every CPython ≥ 3.8.

See the umbrella release v0.1.25 for the full changelog.

What's Changed

  • docs: Ask feature reference + backend proxy templates + WASM Ask demo by @joaoh82 in #72
  • Phase 7h: sqlrite-mcp — MCP server adapter (incl. 7g.8 ask tool) by @joaoh82 in #73
  • docs: pre-release sweep — surface Phase 7 completion + MCP discoverability by @joaoh82 in #74
  • Release v0.1.25 by @github-actions[bot] in #75

Full Changelog: sdk/go/v0.1.24...sqlrite-py-v0.1.25

Node.js v0.2.0

03 May 21:15
2cb61d5

Choose a tag to compare

Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite/v/0.2.0

npm install @joaoh82/sqlrite@0.2.0
const { Database } = require('@joaoh82/sqlrite');

const db = new Database(':memory:');
db.exec('CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)');
const stmt = db.prepare('INSERT INTO users (name) VALUES (?)');
stmt.run('alice');

for (const row of db.prepare('SELECT * FROM users').iterate()) {
  console.log(row);
}

Binaries bundled in this release:

  • Linux x86_64 (sqlrite.linux-x64-gnu.node)
  • Linux aarch64 (sqlrite.linux-arm64-gnu.node)
  • macOS aarch64 (sqlrite.darwin-arm64.node)
  • Windows x86_64 (sqlrite.win32-x64-msvc.node)

The package's index.js dispatcher auto-selects the right binary at require time — no platform-specific install step.

Verify package provenance:

npm audit signatures

See the umbrella release v0.2.0 for the full changelog.

What's Changed

  • cleanup(engine): make process_command stdout-clean (drop REPL-only prints) by @joaoh82 in #76
  • docs(phase-8): plan — full-text search (BM25) + hybrid retrieval by @joaoh82 in #77
  • feat(fts): 8a — standalone algorithms (tokenizer + BM25 + posting list) by @joaoh82 in #78
  • feat(fts): 8b — SQL surface for full-text search by @joaoh82 in #79
  • feat(fts): 8c — cell-encoded persistence + on-demand v4→v5 bump by @joaoh82 in #80
  • feat(fts): 8d — hybrid retrieval worked example (BM25 + vector) by @joaoh82 in #81
  • feat(fts): 8e — sqlrite-mcp bm25_search tool by @joaoh82 in #82
  • feat(fts): 8f — final docs sweep for full-text search by @joaoh82 in #83
  • release: v0.2.0 by @joaoh82 in #84

Full Changelog: sdk/go/v0.1.25...sqlrite-node-v0.2.0

Node.js v0.1.25

03 May 11:21
91ca631

Choose a tag to compare

Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite/v/0.1.25

npm install @joaoh82/sqlrite@0.1.25
const { Database } = require('@joaoh82/sqlrite');

const db = new Database(':memory:');
db.exec('CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)');
const stmt = db.prepare('INSERT INTO users (name) VALUES (?)');
stmt.run('alice');

for (const row of db.prepare('SELECT * FROM users').iterate()) {
  console.log(row);
}

Binaries bundled in this release:

  • Linux x86_64 (sqlrite.linux-x64-gnu.node)
  • Linux aarch64 (sqlrite.linux-arm64-gnu.node)
  • macOS aarch64 (sqlrite.darwin-arm64.node)
  • Windows x86_64 (sqlrite.win32-x64-msvc.node)

The package's index.js dispatcher auto-selects the right binary at require time — no platform-specific install step.

Verify package provenance:

npm audit signatures

See the umbrella release v0.1.25 for the full changelog.

What's Changed

  • docs: Ask feature reference + backend proxy templates + WASM Ask demo by @joaoh82 in #72
  • Phase 7h: sqlrite-mcp — MCP server adapter (incl. 7g.8 ask tool) by @joaoh82 in #73
  • docs: pre-release sweep — surface Phase 7 completion + MCP discoverability by @joaoh82 in #74
  • Release v0.1.25 by @github-actions[bot] in #75

Full Changelog: sdk/go/v0.1.24...sqlrite-node-v0.1.25

sqlrite-mcp v0.2.0

03 May 21:29
2cb61d5

Choose a tag to compare

Published to crates.io: https://crates.io/crates/sqlrite-mcp/0.2.0

Model Context Protocol (MCP) server for SQLRite. Wraps a SQLRite database as a stdio-spawned subprocess that LLM agents (Claude Code, Cursor, mcp-inspector) can drive without custom integration code.

cargo install sqlrite-mcp
// ~/.claude.json
{
  "mcpServers": {
    "sqlrite": {
      "command": "sqlrite-mcp",
      "args": ["/path/to/your.sqlrite"],
      "env": { "SQLRITE_LLM_API_KEY": "sk-ant-…" }
    }
  }
}

Seven tools: list_tables, describe_table, query, execute, schema_dump, vector_search, ask. Pass --read-only to hide execute. Pre-built binary tarballs (no Rust toolchain required) are attached to this release as well — see sqlrite-mcp-v0.2.0-{platform}.tar.gz.

Full docs: https://github.com/joaoh82/rust_sqlite/blob/main/docs/mcp.md

See the umbrella release v0.2.0 for the full changelog.

What's Changed

  • cleanup(engine): make process_command stdout-clean (drop REPL-only prints) by @joaoh82 in #76
  • docs(phase-8): plan — full-text search (BM25) + hybrid retrieval by @joaoh82 in #77
  • feat(fts): 8a — standalone algorithms (tokenizer + BM25 + posting list) by @joaoh82 in #78
  • feat(fts): 8b — SQL surface for full-text search by @joaoh82 in #79
  • feat(fts): 8c — cell-encoded persistence + on-demand v4→v5 bump by @joaoh82 in #80
  • feat(fts): 8d — hybrid retrieval worked example (BM25 + vector) by @joaoh82 in #81
  • feat(fts): 8e — sqlrite-mcp bm25_search tool by @joaoh82 in #82
  • feat(fts): 8f — final docs sweep for full-text search by @joaoh82 in #83
  • release: v0.2.0 by @joaoh82 in #84

Full Changelog: sdk/go/v0.1.25...sqlrite-mcp-v0.2.0