Skip to content

WASM v0.10.1

Choose a tag to compare

@github-actions github-actions released this 25 May 08:19
· 22 commits to main since this release
4f8ac88

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

npm install @joaoh82/sqlrite-wasm@0.10.1
// 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.10.1 for the full changelog.

What's Changed

  • chore(release): fix bump-version.sh commit-message hint + untrack accidental worktree gitlinks by @joaoh82 in #135
  • feat(web): v0.10.0 launch — concurrent-writes blog post + site update (SQLR-57) by @joaoh82 in #136
  • feat(web): wire PostHog analytics into sqlritedb.com (SQLR-7) by @joaoh82 in #137
  • ci: pin binaryen / wasm-opt for deterministic WASM builds (SQLR-58) by @joaoh82 in #138
  • feat(web): keyword research + on-page SEO rewrites (SQLR-33) by @joaoh82 in #139
  • feat(examples): SQLR-39 Python LLM agent with persistent memory by @joaoh82 in #140
  • feat(examples): SQLR-40 Node.js MCP-powered notes assistant by @joaoh82 in #141
  • [codex] Fix HNSW delete/reinsert rebuild by @joaoh82 in #142
  • release: v0.10.1 by @joaoh82 in #143

Full Changelog: sdk/go/v0.10.0...sqlrite-wasm-v0.10.1