Releases: ncruces/go-sqlite3
v0.33.3
Important
This is one of the first versions of this package to use wasm2go.
wasm2go is a recent project, so you may prefer to stick to previous versions, if you value stability.
Your feedback on this change is very appreciated.
Please read and comment on the discussion.
What's Changed
Updates:
- SQLite 3.53.0
Full Changelog: v0.33.2...v0.33.3
v0.33.2
Important
This is one of the first versions of this package to use wasm2go.
wasm2go is a recent project, so you may prefer to stick to previous versions, if you value stability.
wasm2go had a bug affecting the following GOARCHs: alpha, arm, mipsle, mips64le, riscv, riscv64, sh.
If you have users using these CPUs, please upgrade SQLite to v0.33.2.
Your feedback on this change is very appreciated.
Please read and comment on the discussion.
This is a breaking change, but in most cases, upgrading is as simple as removing this import from your code:
import _ "github.com/ncruces/go-sqlite3/embed"If you were configuring how much memory you gave your SQLite connections, you need to:
// Stop doing this:
sqlite3.RuntimeConfig = wazero.NewRuntimeConfig().WithMemoryLimitPages(512) // 32 MB
// And use this context to open your connections:
sqliteCtx := sqlite3.WithMaxMemory(parentCtx, 32*1024*1024) // 32 MBFull Changelog: v0.32.0...v0.33.2
v0.32.0
Tip
This is likely the last version of this package to depend on wazero.
Please read and comment on the discussion.
Note
SQLite 3.52.0 has been withdrawn.
What's Changed
Updates:
- SQLite 3.51.3
Full Changelog: v0.31.1...v0.32.0
v0.31.1
Caution
SQLite 3.52.0 has been withdrawn.
What's Changed
Updates:
- SQLite 3.52.0 in #351
Full Changelog: v0.31.0...v0.31.1
v0.31.0
Caution
SQLite 3.52.0 has been withdrawn.
What's Changed
Updates:
- SQLite 3.52.0 in #351
Full Changelog: v0.30.5...v0.31.0
v0.30.5
v0.30.4
What's Changed
Updates:
- Litestream v0.5.5 VFS read-replicas
- wazero v0.11.0
Full Changelog: v0.30.3...v0.30.4
v0.30.3
v0.30.2
What's Changed
Features:
- Litestream lightweight read-replicas
Fixes:
- Read-only driver transactions (#335), thanks @john-floren-gravwell
Full Changelog: v0.30.1...v0.30.2
v0.30.1
What's Changed
Updates:
- SQLite 3.51.0
- wazero v1.10.1
Changes:
- SQLite
CANTOPENandIOERRerrors wrap the file system error that caused them
Fixes:
Full Changelog: v0.30.0...v0.30.1