Skip to content

chore: release#1

Open
github-actions[bot] wants to merge 1 commit intomainfrom
release-plz-2026-03-29T16-35-39Z
Open

chore: release#1
github-actions[bot] wants to merge 1 commit intomainfrom
release-plz-2026-03-29T16-35-39Z

Conversation

@github-actions
Copy link
Copy Markdown

@github-actions github-actions bot commented Mar 29, 2026

🤖 New release

  • rig-core: 0.34.0 -> 0.35.0 (⚠ API breaking changes)
  • rig-bedrock: 0.4.3 -> 0.4.4 (✓ API compatible changes)
  • rig-fastembed: 0.3.3 -> 0.3.4
  • rig-gemini-grpc: 0.2.3 -> 0.2.4
  • rig-helixdb: 0.2.3 -> 0.2.4
  • rig-lancedb: 0.4.3 -> 0.4.4
  • rig-milvus: 0.2.3 -> 0.2.4
  • rig-mongodb: 0.4.3 -> 0.4.4
  • rig-neo4j: 0.5.3 -> 0.5.4
  • rig-postgres: 0.2.3 -> 0.2.4
  • rig-qdrant: 0.2.3 -> 0.2.4
  • rig-s3vectors: 0.2.3 -> 0.2.4
  • rig-scylladb: 0.2.3 -> 0.2.4
  • rig-sqlite: 0.2.3 -> 0.2.4
  • rig-surrealdb: 0.2.3 -> 0.2.4
  • rig-vectorize: 0.2.3 -> 0.2.4
  • rig-vertexai: 0.3.3 -> 0.3.4

rig-core breaking changes

--- failure auto_trait_impl_removed: auto trait no longer implemented ---

Description:
A public type has stopped implementing one or more auto traits. This can break downstream code that depends on the traits being implemented.
        ref: https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type WithToolServerHandle is no longer UnwindSafe, in /tmp/.tmphO2yg4/rig/rig/rig-core/src/agent/builder.rs:37
  type WithToolServerHandle is no longer RefUnwindSafe, in /tmp/.tmphO2yg4/rig/rig/rig-core/src/agent/builder.rs:37
  type ToolServerHandle is no longer UnwindSafe, in /tmp/.tmphO2yg4/rig/rig/rig-core/src/tool/server.rs:113
  type ToolServerHandle is no longer RefUnwindSafe, in /tmp/.tmphO2yg4/rig/rig/rig-core/src/tool/server.rs:113

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/enum_missing.ron

Failed in:
  enum rig::tool::server::ToolServerRequestMessageKind, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:384
  enum rig::tool::server::ToolServerResponse, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:401

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/enum_variant_added.ron

Failed in:
  variant ToolServerError:DefinitionError in /tmp/.tmphO2yg4/rig/rig/rig-core/src/tool/server.rs:256

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/enum_variant_missing.ron

Failed in:
  variant ToolServerError::Canceled, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:412
  variant ToolServerError::SendError, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:416
  variant ToolServerError::InvalidMessage, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:418

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/inherent_method_missing.ron

Failed in:
  ToolServer::handle_message, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:132
  ToolServer::get_tool_definitions, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:207

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing or renamed
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  CLAUDE_3_5_SONNET in file /tmp/.tmpjJxQ5w/rig-core/src/providers/anthropic/completion.rs:32
  CLAUDE_3_7_SONNET in file /tmp/.tmpjJxQ5w/rig-core/src/providers/anthropic/completion.rs:30

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/struct_missing.ron

Failed in:
  struct rig::tool::server::ToolServerRequest, previously in file /tmp/.tmpjJxQ5w/rig-core/src/tool/server.rs:379
Changelog

rig-core

0.35.0 - 2026-04-09

Added

Fixed

Other

Contributors

rig-bedrock

0.4.4 - 2026-04-09

Added

Other

Contributors

rig-fastembed

0.3.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-gemini-grpc

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-helixdb

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-lancedb

0.4.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-milvus

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-mongodb

0.4.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-neo4j

0.5.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-postgres

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-qdrant

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-s3vectors

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-scylladb

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-sqlite

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-surrealdb

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-vectorize

0.2.4 - 2026-04-09

Other

  • updated the following local packages: rig-core

rig-vertexai

0.3.4 - 2026-04-09

Other

  • updated the following local packages: rig-core


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2026-03-29T16-35-39Z branch from 70042f5 to 749e942 Compare April 3, 2026 13:57
@github-actions github-actions bot force-pushed the release-plz-2026-03-29T16-35-39Z branch from 749e942 to 818da87 Compare April 9, 2026 22:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants