What this package is like to depend on
Last release 1 months ago
21 Jul 2026
Too new to tell
only 2 release windows
Nearly every release is documented
notes for 6 of 6 stable releases
Nothing withdrawn
no release was ever pulled
5 months old
6 releases · first in 2026
6 releases in the last 12 months
see the full history below
Release timeline
6 releases · Mar 2026 to Jul 2026Releases
latest 6-
0.1.521 Jul 2026Release notes
Open source →- Fix connection failures with passwords containing URL-reserved characters (
/ ? # %and friends): credentials were spliced raw into a connection URL, so/ ? #surfaced as "invalid port number" and%sequences were percent-decoded into a different password. Connect options are now built programmatically (never through a URL); covered by regression tests including unicode passwords
- Fix connection failures with passwords containing URL-reserved characters (
-
0.1.420 Jul 2026Release notes
Open source →- Add TLS support (rustls):
sslMode: 'require'(and other libpq sslmode values) now performs a real TLS handshake instead of failing with "SQLx was built without TLS support enabled". Validated against PostgreSQL 16 over TLSv1.3 - Fix native symbol collision when multiple anaki drivers are loaded in the same process: the driver now binds its FFI symbols from its own library handle first, falling back to the native-assets runtime for bundled builds
- Add TLS support (rustls):
-
0.1.319 Jul 2026Release notes
Open source →- Fix universal (arm64+x64) macOS builds: the build hook now copies the binary into the per-config output directory, so each architecture slice gets its own file (previously both slices pointed at the same dylib and lipo failed with duplicate architectures)
-
0.1.219 Jul 2026Release notes
Open source →- Fix pub.dev packaging: native binaries are now really inside the published archive (0.1.1 tarballs were missing native_libs/ because a repo-root gitignore rule excluded them from
dart pub publish)
- Fix pub.dev packaging: native binaries are now really inside the published archive (0.1.1 tarballs were missing native_libs/ because a repo-root gitignore rule excluded them from
-
0.1.119 Jul 2026Release notes
Open source →- TIMESTAMPTZ/TIMESTAMP/DATE/TIME/TIMETZ, NUMERIC and UUID columns now decode correctly (previously returned null); timestamps as RFC3339/ISO-8601, decimals as precision-preserving strings
- FFI exports are panic-safe: internal panics become error responses instead of aborting the host process (#2)
- Query rows keep the SELECT column order instead of returning alphabetically sorted keys (#5)
- Native library loads via the native-assets asset id (works with
flutter buildframework bundling), with filesystem search as fallback (#6) - Prebuilt native binaries included for all supported platforms (#4)
- New build target: Linux ARM64 (aarch64)
-
0.1.027 Mar 2026Release notes
Open source →- Initial release
- Core
AnakiDbclass with SQL-first API AnakiQueryBuilderfor fluent queriesMigratorandSeederfor database migrations- Support for SQLite, PostgreSQL, MySQL, and SQL Server
- Cross-platform native libraries (macOS, Linux, Windows)