Releases: ncruces/go-sqlite3
v0.34.4
What's Changed
Updates:
- SQLite 3.43.2
- Vec1 0.6
Improved the dotlk VFS under Linux containers: #392
Full Changelog: v0.34.3...v0.34.4
v0.34.3
What's Changed
Fix a code generation bug: ncruces/wasm2go#31
Improved support for Go 1.27: golang/go#67546
Full Changelog: v0.34.2...v0.34.3
v0.34.2
v0.34.1
What's Changed
Updates:
- SQLite 3.53.1
Improvements:
- support for 64KB OS pages
- CI testing on IBM Z and Power 10
Full Changelog: v0.34.0...v0.34.1
v0.34.0
What's Changed
Native (C) SQLite extensions are now compiled differently:
- to use Spellfix1, you need to import
github.com/ncruces/go-sqlite3/ext/spellfix1 - you can also try the recent Vec1 vector extension at
github.com/ncruces/go-sqlite3/ext/vec1
Full Changelog: v0.33.3...v0.34.0
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