Releases: joaoh82/rust_sqlite
v0.1.16
SQLRite v0.1.16
Per-product releases in this wave:
- 🦀 Rust engine → crates.io
- 🔧 C FFI — prebuilt
libsqlrite_cfor Linux x86_64/aarch64, macOS aarch64, Windows x86_64 - 🖥️ Desktop — unsigned installers for Linux (AppImage + deb), macOS (dmg aarch64), Windows (msi)
- 🐍 Python → PyPI — abi3-py38 wheels for Linux x86_64/aarch64, macOS aarch64, Windows x86_64 + sdist
- 🟢 Node.js → npm — N-API bindings with prebuilt
.nodebinaries for Linux x86_64/aarch64, macOS aarch64, Windows x86_64 - 🌐 WASM → npm — browser/bundler-target WebAssembly build via wasm-pack
- 🐹 Go SDK →
go get github.com/joaoh82/rust_sqlite/sdk/go@v0.1.16—database/sqldriver via cgo againstlibsqlrite_c
Auto-generated changelog below ↓
What's Changed
- Phase 7e: JSON column type + path queries by @joaoh82 in #54
- Release v0.1.16 by @github-actions[bot] in #55
Full Changelog: v0.1.15...v0.1.16
WASM v0.1.17
Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite-wasm/v/0.1.17
npm install @joaoh82/sqlrite-wasm@0.1.17// 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 binarysqlrite_wasm.js— auto-generated JS glue (wasm-bindgen)sqlrite_wasm.d.ts— TypeScript typespackage.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 signaturesSee the umbrella release v0.1.17 for the full changelog.
What's Changed
- Phase 7g.1: sqlrite-ask crate (NL → SQL foundational) by @joaoh82 in #56
- Release v0.1.17 by @github-actions[bot] in #57
Full Changelog: sdk/go/v0.1.16...sqlrite-wasm-v0.1.17
WASM v0.1.16
Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite-wasm/v/0.1.16
npm install @joaoh82/sqlrite-wasm@0.1.16// 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 binarysqlrite_wasm.js— auto-generated JS glue (wasm-bindgen)sqlrite_wasm.d.ts— TypeScript typespackage.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 signaturesSee the umbrella release v0.1.16 for the full changelog.
What's Changed
- Phase 7e: JSON column type + path queries by @joaoh82 in #54
- Release v0.1.16 by @github-actions[bot] in #55
Full Changelog: sdk/go/v0.1.15...sqlrite-wasm-v0.1.16
Rust engine v0.1.17
Published to crates.io: https://crates.io/crates/sqlrite-engine/0.1.17
[dependencies]
sqlrite-engine = "0.1.17"// 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.17 for the full changelog.
What's Changed
- Phase 7g.1: sqlrite-ask crate (NL → SQL foundational) by @joaoh82 in #56
- Release v0.1.17 by @github-actions[bot] in #57
Full Changelog: sdk/go/v0.1.16...sqlrite-v0.1.17
Rust engine v0.1.16
Published to crates.io: https://crates.io/crates/sqlrite-engine/0.1.16
[dependencies]
sqlrite-engine = "0.1.16"// 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.16 for the full changelog.
What's Changed
- Phase 7e: JSON column type + path queries by @joaoh82 in #54
- Release v0.1.16 by @github-actions[bot] in #55
Full Changelog: sdk/go/v0.1.15...sqlrite-v0.1.16
Python v0.1.17
Published to PyPI: https://pypi.org/project/sqlrite/0.1.17/
pip install sqlrite==0.1.17import 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.17 for the full changelog.
What's Changed
- Phase 7g.1: sqlrite-ask crate (NL → SQL foundational) by @joaoh82 in #56
- Release v0.1.17 by @github-actions[bot] in #57
Full Changelog: sdk/go/v0.1.16...sqlrite-py-v0.1.17
Python v0.1.16
Published to PyPI: https://pypi.org/project/sqlrite/0.1.16/
pip install sqlrite==0.1.16import 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.16 for the full changelog.
What's Changed
- Phase 7e: JSON column type + path queries by @joaoh82 in #54
- Release v0.1.16 by @github-actions[bot] in #55
Full Changelog: sdk/go/v0.1.15...sqlrite-py-v0.1.16
Node.js v0.1.17
Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite/v/0.1.17
npm install @joaoh82/sqlrite@0.1.17const { 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 signaturesSee the umbrella release v0.1.17 for the full changelog.
What's Changed
- Phase 7g.1: sqlrite-ask crate (NL → SQL foundational) by @joaoh82 in #56
- Release v0.1.17 by @github-actions[bot] in #57
Full Changelog: sdk/go/v0.1.16...sqlrite-node-v0.1.17
Node.js v0.1.16
Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite/v/0.1.16
npm install @joaoh82/sqlrite@0.1.16const { 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 signaturesSee the umbrella release v0.1.16 for the full changelog.
What's Changed
- Phase 7e: JSON column type + path queries by @joaoh82 in #54
- Release v0.1.16 by @github-actions[bot] in #55
Full Changelog: sdk/go/v0.1.15...sqlrite-node-v0.1.16
C FFI v0.1.17
Prebuilt libsqlrite_c for every supported platform, plus the sqlrite.h header.
Download the tarball for your platform, extract, and link:
tar xzf sqlrite-ffi-v0.1.17-<platform>.tar.gz
# lib/ — dynamic + static libraries
# include/sqlrite.h — header to #include
See the umbrella release v0.1.17 for the full changelog.
What's Changed
- Phase 7g.1: sqlrite-ask crate (NL → SQL foundational) by @joaoh82 in #56
- Release v0.1.17 by @github-actions[bot] in #57
Full Changelog: sdk/go/v0.1.16...sqlrite-ffi-v0.1.17