Skip to content

build(deps): Bump falkordb from 0.8.6 to 0.10.2#19

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/main/falkordb-0.10.2
Closed

build(deps): Bump falkordb from 0.8.6 to 0.10.2#19
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/main/falkordb-0.10.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 9, 2026

Copy link
Copy Markdown
Contributor

Bumps falkordb from 0.8.6 to 0.10.2.

Release notes

Sourced from falkordb's releases.

v0.10.2

Fixed

  • Derive Clone for FalkorAsyncClient, matching FalkorSyncClient and its own thread-safety documentation, which already stated the client can be cloned and shared across threads (#287)

v0.10.1

Other

  • Added a "Dev Log" technical blog under blog/, built with Zola and deployed to GitHub Pages. Every Rust snippet in a post is a real examples/*.rs / benches/*.rs file that CI already compiles, copied in verbatim at build time by just blog-sync, so the published code cannot drift from the crate; the async connection-strategy benchmark figures are a dated, reproducible sample run (just bench-export). Adds just blog-build / blog-serve / blog-check recipes, a check-blog pull-request gate, a Pages deploy workflow, and a Blog spellcheck task. The release workflow skips blog-only pushes (paths-ignore), so blog edits don't cut a crate release (#279)

v0.10.0

Added

  • Build-time embedded-module bundling via a new embedded-bundle feature. A build.rs fetches the FalkorDB falkordb.so module for the build target at compile time and embeds it in the binary (include_bytes!), so the embedded server starts with no runtime network access — for network-isolated deployments. Build-time environment variables control the bundle: FALKORDB_EMBEDDED_MODULE_VERSION (release tag; defaults to a pinned version), FALKORDB_EMBEDDED_MODULE_PLATFORM (asset override for distro-specific Linux targets), FALKORDB_EMBEDDED_MODULE_PATH (embed a local .so for fully offline builds) and FALKORDB_EMBEDDED_MODULE_SHA256 (required to embed a non-default downloaded version). Adds EmbeddedServer::bundled_module_version() / bundled_module_platform() accessors and a new embedded-core feature for the shared embedded logic. The embedded server now also pre-flights redis-server --version and fails early when it is older than the required 8.0 (#278)
  • Opt-in replica routing for read-only queries via a new ReadPreference enum (Primary, the default, and PreferReplica). Set a client-wide default with FalkorClientBuilder::with_read_preference, or override per request with the with_read_preference method (and prefer_replica() / primary_only() shortcuts) on QueryBuilder, ProcedureQueryBuilder and BatchBuilder. Adds FalkorSyncClient/FalkorAsyncClient accessors replica_reads_available() (whether replica connections exist) and read_preference() (the client default) (#277)

Changed

  • Breaking (behavior): read-only queries (ro_query / call_procedure_ro) and all-read batches now run on the primary by default instead of being routed to a replica automatically. Replicas apply writes only after the primary, so replica reads can be stale; routing them is now opt-in for accuracy. To restore the previous replica offload, build the client with .with_read_preference(ReadPreference::PreferReplica) (or opt in per request with prefer_replica()). Requesting a replica for a writable query, procedure or batch now fails with

... (truncated)

Changelog

Sourced from falkordb's changelog.

0.10.2 - 2026-07-05

Fixed

  • Derive Clone for FalkorAsyncClient, matching FalkorSyncClient and its own thread-safety documentation, which already stated the client can be cloned and shared across threads (#287)

0.10.1 - 2026-06-29

Other

  • Added a "Dev Log" technical blog under blog/, built with Zola and deployed to GitHub Pages. Every Rust snippet in a post is a real examples/*.rs / benches/*.rs file that CI already compiles, copied in verbatim at build time by just blog-sync, so the published code cannot drift from the crate; the async connection-strategy benchmark figures are a dated, reproducible sample run (just bench-export). Adds just blog-build / blog-serve / blog-check recipes, a check-blog pull-request gate, a Pages deploy workflow, and a Blog spellcheck task. The release workflow skips blog-only pushes (paths-ignore), so blog edits don't cut a crate release (#279)

0.10.0 - 2026-06-23

Added

  • Build-time embedded-module bundling via a new embedded-bundle feature. A build.rs fetches the FalkorDB falkordb.so module for the build target at compile time and embeds it in the binary (include_bytes!), so the embedded server starts with no runtime network access — for network-isolated deployments. Build-time environment variables control the bundle: FALKORDB_EMBEDDED_MODULE_VERSION (release tag; defaults to a pinned version), FALKORDB_EMBEDDED_MODULE_PLATFORM (asset override for distro-specific Linux targets), FALKORDB_EMBEDDED_MODULE_PATH (embed a local .so for fully offline builds) and FALKORDB_EMBEDDED_MODULE_SHA256 (required to embed a non-default downloaded version). Adds EmbeddedServer::bundled_module_version() / bundled_module_platform() accessors and a new embedded-core feature for the shared embedded logic. The embedded server now also pre-flights redis-server --version and fails early when it is older than the required 8.0 (#278)
  • Opt-in replica routing for read-only queries via a new ReadPreference enum (Primary, the default, and PreferReplica). Set a client-wide default with FalkorClientBuilder::with_read_preference, or override per request with the with_read_preference method (and prefer_replica() / primary_only() shortcuts) on QueryBuilder, ProcedureQueryBuilder and BatchBuilder. Adds FalkorSyncClient/FalkorAsyncClient accessors replica_reads_available() (whether replica connections exist) and read_preference() (the client default) (#277)

Changed

  • Breaking (behavior): read-only queries (ro_query / call_procedure_ro) and all-read batches now run on the primary by default instead of being routed to a replica automatically. Replicas apply writes only after the primary, so replica reads can be stale; routing them is now opt-in for

... (truncated)

Commits
  • 3d1e6f1 chore: release v0.10.2 (#288)
  • 44c3e4b fix: derive Clone for FalkorAsyncClient (#287)
  • ddb4335 chore: release v0.10.1 (#282)
  • a709feb build(deps): bump redis to 1.3.0, deploy-pages and upload-pages-artifact to v...
  • 889e66a docs: link the Dev Log blog prominently from the README (#281)
  • 1dc4551 feat(blog): add diagram zoom, a livelier theme, and fix the home page title (...
  • 6e7a745 ci: add the FalkorDB-rs Dev Log blog (Zola + GitHub Pages) (#279)
  • d47fc61 chore: release v0.10.0 (#276)
  • 3370d0d feat: add build-time embedded module bundle for offline runtime (#278)
  • 26d9944 feat!: make replica routing for read-only queries opt-in (#277)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [falkordb](https://github.com/FalkorDB/falkordb-rs) from 0.8.6 to 0.10.2.
- [Release notes](https://github.com/FalkorDB/falkordb-rs/releases)
- [Changelog](https://github.com/FalkorDB/falkordb-rs/blob/main/CHANGELOG.md)
- [Commits](FalkorDB/falkordb-rs@v0.8.6...v0.10.2)

---
updated-dependencies:
- dependency-name: falkordb
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 9, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #24.

@dependabot dependabot Bot closed this Jul 16, 2026
@dependabot
dependabot Bot deleted the dependabot/cargo/main/falkordb-0.10.2 branch July 16, 2026 15:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants