anaki_mongodb
MongoDB document client for AnakiORM. Native connector via Rust FFI.
0.1.7
anaki/anaki_orm
What this package is like to depend on
Last release 26 days ago
28 Jul 2026
Too new to tell
only 2 release windows
Nearly every release is documented
notes for 7 of 7 stable releases
Nothing withdrawn
no release was ever pulled
1 months old
7 releases · first in 2026
7 releases in the last 12 months
see the full history below
Release timeline
7 releases · Jul 2026 to Jul 2026Releases
latest 7-
0.1.728 Jul 2026Release notes
Open source →close()now returns immediately: client shutdown is detached onto the driver's process-global runtime instead of being awaited with a 5s ceiling. Sessions and pending drops still complete in the background within milliseconds; only the SRV polling monitor's sleep drains on its own. Removes the residual 5s cost permongodb+srv://close introduced by the 0.1.6 workaround
-
0.1.628 Jul 2026Release notes
Open source →- Fix
close()blocking ~59s formongodb+srv://connections: the mongodb crate's SRV polling monitor sleeps up to 60s without observing the shutdown signal, andClient::shutdownwaits for it. The driver now bounds shutdown at 5s — real cleanup (session end, pending drops, cancellation) still runs; only the join on the monitor's sleep is abandoned. Non-SRV connections close in microseconds as before
- Fix
-
0.1.527 Jul 2026Release notes
Open source →- Enable the mongodb crate's
socks5-proxyfeature: connection URIs now acceptproxyHost/proxyPort/proxyUsername/proxyPassword(MongoDB driver spec), allowing connections through a SOCKS5 proxy — e.g. an SSH dynamic forward — which is required for replica-set/SRV topologies where local port-forwards cannot follow server-announced hostnames. Pure-Rust dependency (fast-socks5); cross-compilation via cargo-zigbuild remains green on all 5 platforms
- Enable the mongodb crate's
-
0.1.420 Jul 2026Release notes
Open source →- 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
-
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 →- Native library loads via the native-assets asset id (works with
flutter buildframework bundling), with filesystem search as fallback (#6) - New build target: Linux ARM64 (aarch64)
- Native library loads via the native-assets asset id (works with