Skip to content

build(deps): Bump falkordb from 0.8.6 to 0.10.0#11

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 25, 2026

Copy link
Copy Markdown
Contributor

Bumps falkordb from 0.8.6 to 0.10.0.

Release notes

Sourced from falkordb's releases.

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 the new FalkorDBError::ReadPreferenceNotReadOnly. See the 0.10 migration guide (#277)
  • Deprecated: FalkorSyncClient::reads_from_replicas and FalkorAsyncClient::reads_from_replicas in favor of replica_reads_available() (replica capability) plus read_preference() (the routing policy), since a replica pool can now exist without reads being routed to it (#277)

Other

  • The README.md is now generated from the crate-level //! documentation in src/lib.rs with cargo-rdme (run just readme; a check-readme CI drift gate keeps it in sync). GitHub now syntax-highlights the Rust code blocks in the README and no longer shows the hidden # doctest lines, while those blocks still compile as doctests from the crate docs (#275)
  • Bump dependencies: sha2 0.10 → 0.11 and which 8.0.3 → 8.0.4 (runtime, embedded feature), criterion 0.5 → 0.8, libc 0.2.183 → 0.2.186 and serde_json 1.0.149 → 1.0.150 (dev-dependencies), plus the actions/checkout (v6 → v7) and rojopolis/spellcheck-github-actions (0.61.0 → 0.62.0)

... (truncated)

Changelog

Sourced from falkordb's changelog.

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 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 the new FalkorDBError::ReadPreferenceNotReadOnly. See the 0.10 migration guide (#277)
  • Deprecated: FalkorSyncClient::reads_from_replicas and FalkorAsyncClient::reads_from_replicas in favor of replica_reads_available() (replica capability) plus read_preference() (the routing policy), since a replica pool can now exist without reads being routed to it (#277)

Other

  • The README.md is now generated from the crate-level //! documentation in src/lib.rs with cargo-rdme (run just readme; a check-readme CI drift gate keeps it in sync). GitHub now syntax-highlights the Rust code blocks in the README and no longer shows the hidden # doctest lines, while those blocks still compile as doctests from the crate docs (#275)
  • Bump dependencies: sha2 0.10 → 0.11 and which 8.0.3 → 8.0.4 (runtime, embedded feature), criterion 0.5 → 0.8, libc 0.2.183 → 0.2.186 and serde_json 1.0.149 → 1.0.150 (dev-dependencies), plus the actions/checkout (v6 → v7) and

... (truncated)

Commits
  • 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)
  • 81d8d24 docs: generate README from crate docs via cargo-rdme (#275)
  • 0d07051 build(deps): bump Rust crates and GitHub Actions dependencies (#274)
  • 6a08c52 chore: release v0.9.0 (#266)
  • d48ca0c feat!: decode temporal values and fix vector index creation (#265)
  • 4a4d66d chore: release v0.8.9 (#264)
  • d65c0c5 ci: also cut releases for documentation changes (#263)
  • 4d10c95 docs: restructure the README into chapters with a table of contents (#262)
  • 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.0.
- [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.0)

---
updated-dependencies:
- dependency-name: falkordb
  dependency-version: 0.10.0
  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 Jun 25, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #16.

@dependabot dependabot Bot closed this Jul 2, 2026
@dependabot
dependabot Bot deleted the dependabot/cargo/main/falkordb-0.10.0 branch July 2, 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