Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,44 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.37.1](https://github.com/0xPlaygrounds/rig/compare/rig-v0.37.0...rig-v0.37.1) - 2026-05-30

### Added

- *(rig-derive)* replace hand-rolled schema with schemars in #[rig_tool] ([#1576](https://github.com/0xPlaygrounds/rig/pull/1576)) (by @tomasz-feliksik)
- *(gemini)* expose streaming response metadata ([#1790](https://github.com/0xPlaygrounds/rig/pull/1790)) (by @mateobelanger)
- *(anthropic)* support document citations ([#1778](https://github.com/0xPlaygrounds/rig/pull/1778)) (by @temrjan)

### Fixed

- *(rig-gemini-grpc)* populate FunctionDeclaration.parameters from ToolDefinition ([#1763](https://github.com/0xPlaygrounds/rig/pull/1763)) (by @abhicris)
- fix sqlite threshold and null tool call streaming ([#1786](https://github.com/0xPlaygrounds/rig/pull/1786)) (by @gold-silver-copper) - #1786

### Other

- *(deps)* port dependency bumps and Rust 1.91 ([#1842](https://github.com/0xPlaygrounds/rig/pull/1842)) (by @gold-silver-copper)
- *(deps)* bump quick-xml from 0.39.4 to 0.40.1 ([#1818](https://github.com/0xPlaygrounds/rig/pull/1818)) (by @dependabot[bot])
- *(deps)* bump google-cloud-auth from 1.9.0 to 1.10.0 ([#1817](https://github.com/0xPlaygrounds/rig/pull/1817)) (by @dependabot[bot])
- Stabilize MongoDB vector search test ([#1841](https://github.com/0xPlaygrounds/rig/pull/1841)) (by @gold-silver-copper) - #1841
- fix VT Code line grammar in README ([#1824](https://github.com/0xPlaygrounds/rig/pull/1824)) (by @Shaurya-Sethi) - #1824
- [codex] Validate model tool calls ([#1823](https://github.com/0xPlaygrounds/rig/pull/1823)) (by @gold-silver-copper) - #1823
- [codex] apply Anthropic cache control to tools ([#1815](https://github.com/0xPlaygrounds/rig/pull/1815)) (by @gold-silver-copper) - #1815
- *(deps)* bump tokio-tungstenite from 0.23.1 to 0.28.0 ([#1784](https://github.com/0xPlaygrounds/rig/pull/1784)) (by @dependabot[bot])
- *(deps)* bump rmcp from 1.6.0 to 1.7.0 ([#1783](https://github.com/0xPlaygrounds/rig/pull/1783)) (by @dependabot[bot])
- *(deps)* bump tokio from 1.52.1 to 1.52.3 ([#1782](https://github.com/0xPlaygrounds/rig/pull/1782)) (by @dependabot[bot])
- Expose per-completion-call usage in agent responses ([#1787](https://github.com/0xPlaygrounds/rig/pull/1787)) (by @gold-silver-copper) - #1787
- *(gemini)* add streaming metadata cassettes ([#1777](https://github.com/0xPlaygrounds/rig/pull/1777)) (by @gold-silver-copper)
- Add replayable provider cassette tests ([#1769](https://github.com/0xPlaygrounds/rig/pull/1769)) (by @gold-silver-copper) - #1769

### Contributors

* @tomasz-feliksik
* @gold-silver-copper
* @dependabot[bot]
* @abhicris
* @Shaurya-Sethi
* @mateobelanger
* @temrjan
## [0.37.0](https://github.com/0xPlaygrounds/rig/compare/rig-v0.36.0...rig-v0.37.0) - 2026-05-13

### Added
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig"
version = "0.37.0"
version = "0.37.1"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -145,31 +145,31 @@ exclude-members = ["crates/rig-core", "crates/rig-derive"]
workspace = true

[dependencies]
rig-core = { path = "crates/rig-core", version = "0.37.0", default-features = false }
rig-bedrock = { path = "crates/rig-bedrock", version = "0.4.6", optional = true, default-features = false }
rig-fastembed = { path = "crates/rig-fastembed", version = "0.4.1", optional = true, default-features = false }
rig-gemini-grpc = { path = "crates/rig-gemini-grpc", version = "0.2.6", optional = true, default-features = false }
rig-helixdb = { path = "crates/rig-helixdb", version = "0.2.6", optional = true, default-features = false }
rig-lancedb = { path = "crates/rig-lancedb", version = "0.4.6", optional = true, default-features = false }
rig-memory = { path = "crates/rig-memory", version = "0.1.1", optional = true, default-features = false }
rig-milvus = { path = "crates/rig-milvus", version = "0.2.6", optional = true, default-features = false }
rig-mongodb = { path = "crates/rig-mongodb", version = "0.4.6", optional = true, default-features = false }
rig-neo4j = { path = "crates/rig-neo4j", version = "0.5.6", optional = true, default-features = false }
rig-postgres = { path = "crates/rig-postgres", version = "0.2.6", optional = true, default-features = false }
rig-qdrant = { path = "crates/rig-qdrant", version = "0.2.6", optional = true, default-features = false }
rig-s3vectors = { path = "crates/rig-s3vectors", version = "0.2.6", optional = true, default-features = false }
rig-scylladb = { path = "crates/rig-scylladb", version = "0.2.6", optional = true, default-features = false }
rig-sqlite = { path = "crates/rig-sqlite", version = "0.2.6", optional = true, default-features = false }
rig-surrealdb = { path = "crates/rig-surrealdb", version = "0.2.6", optional = true, default-features = false }
rig-vectorize = { path = "crates/rig-vectorize", version = "0.2.6", optional = true, default-features = false }
rig-vertexai = { path = "crates/rig-vertexai", version = "0.3.6", optional = true, default-features = false }
rig-core = { path = "crates/rig-core", version = "0.38.0", default-features = false }
rig-bedrock = { path = "crates/rig-bedrock", version = "0.4.7", optional = true, default-features = false }
rig-fastembed = { path = "crates/rig-fastembed", version = "0.4.2", optional = true, default-features = false }
rig-gemini-grpc = { path = "crates/rig-gemini-grpc", version = "0.2.7", optional = true, default-features = false }
rig-helixdb = { path = "crates/rig-helixdb", version = "0.2.7", optional = true, default-features = false }
rig-lancedb = { path = "crates/rig-lancedb", version = "0.4.7", optional = true, default-features = false }
rig-memory = { path = "crates/rig-memory", version = "0.1.2", optional = true, default-features = false }
rig-milvus = { path = "crates/rig-milvus", version = "0.2.7", optional = true, default-features = false }
rig-mongodb = { path = "crates/rig-mongodb", version = "0.4.7", optional = true, default-features = false }
rig-neo4j = { path = "crates/rig-neo4j", version = "0.5.7", optional = true, default-features = false }
rig-postgres = { path = "crates/rig-postgres", version = "0.2.7", optional = true, default-features = false }
rig-qdrant = { path = "crates/rig-qdrant", version = "0.2.7", optional = true, default-features = false }
rig-s3vectors = { path = "crates/rig-s3vectors", version = "0.2.7", optional = true, default-features = false }
rig-scylladb = { path = "crates/rig-scylladb", version = "0.2.7", optional = true, default-features = false }
rig-sqlite = { path = "crates/rig-sqlite", version = "0.3.0", optional = true, default-features = false }
rig-surrealdb = { path = "crates/rig-surrealdb", version = "0.2.7", optional = true, default-features = false }
rig-vectorize = { path = "crates/rig-vectorize", version = "0.2.7", optional = true, default-features = false }
rig-vertexai = { path = "crates/rig-vertexai", version = "0.3.7", optional = true, default-features = false }

[dev-dependencies]
anyhow = { workspace = true }
arrow-array = { workspace = true }
assert_fs = { workspace = true }
async-stream = { workspace = true }
rig-core = { path = "crates/rig-core", version = "0.37.0", default-features = false, features = [
rig-core = { path = "crates/rig-core", version = "0.38.0", default-features = false, features = [
"test-utils",
] }
tokio = { workspace = true, features = ["full"] }
Expand Down
11 changes: 11 additions & 0 deletions crates/rig-bedrock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4.7](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.6...rig-bedrock-v0.4.7) - 2026-05-30

### Added

- *(gemini)* expose streaming response metadata ([#1790](https://github.com/0xPlaygrounds/rig/pull/1790)) (by @mateobelanger)
- *(anthropic)* support document citations ([#1778](https://github.com/0xPlaygrounds/rig/pull/1778)) (by @temrjan)

### Contributors

* @mateobelanger
* @temrjan
## [0.4.6](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.5...rig-bedrock-v0.4.6) - 2026-05-13

### Added
Expand Down
6 changes: 3 additions & 3 deletions crates/rig-bedrock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-bedrock"
version = "0.4.6"
version = "0.4.7"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand All @@ -18,11 +18,11 @@ aws-config = { workspace = true, features = ["behavior-version-latest"] }
aws-sdk-bedrockruntime = { workspace = true, features = ["rt-tokio", "default-https-client"] }
aws-smithy-types = { workspace = true }
base64 = { workspace = true }
rig-core = { path = "../rig-core", version = "0.37.0", default-features = false, features = [
rig-core = { path = "../rig-core", version = "0.38.0", default-features = false, features = [
"image",
] }
nanoid = { workspace = true }
rig-derive = { path = "../rig-derive", version = "0.1.14" }
rig-derive = { path = "../rig-derive", version = "0.1.15" }
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
49 changes: 49 additions & 0 deletions crates/rig-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,55 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.38.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.37.0...rig-core-v0.38.0) - 2026-05-30

### Added

- *(rig-derive)* replace hand-rolled schema with schemars in #[rig_tool] ([#1576](https://github.com/0xPlaygrounds/rig/pull/1576)) (by @tomasz-feliksik)
- *(embeddings)* expose token usage via embed_texts_with_usage ([#1791](https://github.com/0xPlaygrounds/rig/pull/1791)) (by @sergiomeneses)
- *(openrouter)* add prompt-caching support ([#1832](https://github.com/0xPlaygrounds/rig/pull/1832)) (by @gold-silver-copper)
- *(openrouter)* add with_app_identity and with_app_categories builders for app attribution ([#1806](https://github.com/0xPlaygrounds/rig/pull/1806)) (by @jimmiebfulton)
- *(openrouter)* surface cache token accounting in Usage ([#1808](https://github.com/0xPlaygrounds/rig/pull/1808)) (by @jimmiebfulton)
- *(gemini)* expose streaming response metadata ([#1790](https://github.com/0xPlaygrounds/rig/pull/1790)) (by @mateobelanger)
- *(anthropic)* support document citations ([#1778](https://github.com/0xPlaygrounds/rig/pull/1778)) (by @temrjan)
- *(gemini)* expose finish_reason and model_version on StreamingCompletionResponse ([#1776](https://github.com/0xPlaygrounds/rig/pull/1776)) (by @mateobelanger)

### Fixed

- *(rig-gemini-grpc)* populate FunctionDeclaration.parameters from ToolDefinition ([#1763](https://github.com/0xPlaygrounds/rig/pull/1763)) (by @abhicris)
- *(openrouter)* avoid replaying generated images ([#1835](https://github.com/0xPlaygrounds/rig/pull/1835)) (by @gold-silver-copper)
- *(openrouter)* accept Gemini model role responses ([#1800](https://github.com/0xPlaygrounds/rig/pull/1800)) (by @puneetdixit200)
- *(tools)* safely normalize null tool call arguments ([#1814](https://github.com/0xPlaygrounds/rig/pull/1814)) (by @gold-silver-copper)
- *(ollama)* buffer NDJSON streaming across HTTP chunk boundaries bytes_stream may split a single NDJSON line across chunks, causing serde_json::from_slice to fail mid-stream with an EOF error on longer assistant messages ([#1759](https://github.com/0xPlaygrounds/rig/pull/1759)) (by @ChadBartley)
- *(gemini)* record tool use prompt token telemetry ([#1799](https://github.com/0xPlaygrounds/rig/pull/1799)) (by @gold-silver-copper)
- default OpenAI base64 image detail ([#1781](https://github.com/0xPlaygrounds/rig/pull/1781)) (by @fangkangmi) - #1781
- stream ToolCallDelta in prompt_request ([#1789](https://github.com/0xPlaygrounds/rig/pull/1789)) (by @notV4l) - #1789
- fix sqlite threshold and null tool call streaming ([#1786](https://github.com/0xPlaygrounds/rig/pull/1786)) (by @gold-silver-copper) - #1786
- *(anthropic)* serialize ToolResultContent::Image with source wrapper ([#1772](https://github.com/0xPlaygrounds/rig/pull/1772)) (by @Cyanistic)

### Other

- Add invalid tool call recovery hooks ([#1840](https://github.com/0xPlaygrounds/rig/pull/1840)) (by @gold-silver-copper) - #1840
- [codex] Validate model tool calls ([#1823](https://github.com/0xPlaygrounds/rig/pull/1823)) (by @gold-silver-copper) - #1823
- Cap OpenRouter app categories header ([#1821](https://github.com/0xPlaygrounds/rig/pull/1821)) (by @gold-silver-copper) - #1821
- [codex] apply Anthropic cache control to tools ([#1815](https://github.com/0xPlaygrounds/rig/pull/1815)) (by @gold-silver-copper) - #1815
- Expose per-completion-call usage in agent responses ([#1787](https://github.com/0xPlaygrounds/rig/pull/1787)) (by @gold-silver-copper) - #1787
- Add replayable provider cassette tests ([#1769](https://github.com/0xPlaygrounds/rig/pull/1769)) (by @gold-silver-copper) - #1769

### Contributors

* @tomasz-feliksik
* @gold-silver-copper
* @sergiomeneses
* @abhicris
* @jimmiebfulton
* @puneetdixit200
* @ChadBartley
* @mateobelanger
* @temrjan
* @fangkangmi
* @notV4l
* @Cyanistic
## [0.37.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.36.0...rig-core-v0.37.0) - 2026-05-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/rig-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-core"
version = "0.37.0"
version = "0.38.0"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -33,7 +33,7 @@ ordered-float = { workspace = true }
quick-xml = { workspace = true, optional = true }
rayon = { workspace = true, optional = true }
reqwest = { workspace = true, features = ["json", "stream", "multipart"] }
rig-derive = { version = "0.1.14", path = "../rig-derive", optional = true }
rig-derive = { version = "0.1.15", path = "../rig-derive", optional = true }
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
Loading