Releases: mmomtchev/sqlite-wasm-http
Releases · mmomtchev/sqlite-wasm-http
v1.2.0
- Update the SQLite WASM distribution to an official release, 3.44.2 built to WASM with emscripten 3.1.46
- Update the integration tests after the breaking changes in Node.js 18.19 TypeStrong/ts-node#2094
- Test the npm package on all platforms
- Update the dependencies
v1.1.2
v1.1.1
- Rebuild the SQLite WASM distribution from the SQLite trunk 2023-03-30
- Eliminate
sqlite3-worker1-promiser-node.mjs
- Greatly reduce the output bundle size by working around webpack#16895
- Fix #18, a race condition occurring only when running on a single CPU core and using the shared backend
v1.1.0
- Support the fully synchronous SQLite OO1 API with both HTTP VFS backend
- Transform the
sqlite3.js
import into a true TypeScript import that can be imported from user code withoutsqlite-wasm-http
- Support SQLite
rowMode: 'object'
- Support passing bindable parameters in an array
- Improve the TypeScript types to allow auto inferring of the overloaded argument of
Promiser
- Add
SQLite.SQLValue
andSQLite.SQLBindable
types for the data coming from or going to the DB - Expose
sqlite3Worker1Promiser
to user code - Fix #13,
PRAGMA TABLE_INFO()
returns an empty result set