Skip to content

Updated:(deps): Bump the patch-updates group across 1 directory with 5 updates#28

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/src/patch-updates-58298aad20
Closed

Updated:(deps): Bump the patch-updates group across 1 directory with 5 updates#28
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/src/patch-updates-58298aad20

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 2, 2026

Bumps the patch-updates group with 3 updates in the /src directory: schemars, process-wrap and serdes-ai.

Updates schemars from 1.2.0 to 1.2.1

Release notes

Sourced from schemars's releases.

v1.2.1

Fixed

  • transform attributes are now applied after the schema is otherwise fully constructed. In particular, they're now applied after all other attributes are processed. (GREsau/schemars#505)
Changelog

Sourced from schemars's changelog.

[1.2.1] - 2026-02-01

Fixed

  • transform attributes are now applied after the schema is otherwise fully constructed. In particular, they're now applied after all other attributes are processed. (GREsau/schemars#505)
Commits

Updates process-wrap from 9.0.0 to 9.0.1

Changelog

Sourced from process-wrap's changelog.

9.0.1 - 2026-01-20

  • Bugfix: Restore Sync support - (9a8bbb9)
  • Deps: Upgrade windows and transitives - (bbaaef0)
  • Documentation: Better document msrv policy - (446028b)

Commits

Updates serdes-ai from 0.1.1 to 0.1.5

Changelog

Sourced from serdes-ai's changelog.

[0.1.5] - 2025-01-28

Added

  • Cancellation Support for AgentStream and AgentRun (Issue #6)
    • New AgentStream::new_with_cancel() constructor accepting a CancellationToken
    • New AgentRun::new_with_cancel() constructor accepting a CancellationToken
    • New AgentStreamEvent::Cancelled event variant with partial results (text, thinking, pending tools)
    • cancel(), is_cancelled(), and cancellation_token() methods on both types
    • Cancellation checks in the streaming loop and before each tool execution
    • Re-exported tokio_util::sync::CancellationToken from serdes-ai-agent for convenience

[0.1.2] - 2025-01-27

Fixed

  • Removed unused import PartStartEvent in serdes-ai-models claude_code_oauth stream module

[0.1.0] - 2025-01-XX

Added

Core Framework

  • Complete Rust port of pydantic-ai architecture
  • Type-safe agent framework with generic dependencies and output types
  • Compile-time validation of agent configurations
  • Async/await support throughout using tokio

Agent System (serdes-ai-agent)

  • Agent builder with fluent API
  • AgentRun for managing conversation state
  • RunContext for dependency injection into tools
  • Support for system prompts (static and dynamic)
  • Configurable end strategies (early, first tool, exhaust tools)
  • Usage tracking and limits

Model Providers (serdes-ai-models)

  • OpenAI: Full support for GPT-4, GPT-4o, o1, o3 models
    • Chat completions API
    • Streaming with SSE
    • Tool calling with strict mode
    • Vision (image input)
  • Anthropic: Full support for Claude 3.5/4 family
    • Messages API
    • Extended thinking (claude-3-5-sonnet)
    • Prompt caching
    • Tool use with cache control
  • Google: Gemini 1.5 and 2.0 models
    • GenerateContent API
    • Multi-modal input (text, images, documents)
    • Native JSON mode
  • Groq: Ultra-fast inference

... (truncated)

Commits
  • fb59e8d feat(agent): Add cancellation support to AgentStream and AgentRun (Issue #6)
  • 939ad3f chore: bump serdes-ai-providers to 0.1.4
  • 96bf22c fix: clean professional HTML for OAuth callback pages (no unicode)
  • 3a3f1d8 chore: bump version to 0.1.3 for crates.io release
  • 7f6c314 chore: fix clippy warnings and version tests for crates.io publish
  • 5b8b2a7 style: apply cargo fmt to history.rs
  • d0c88f2 fix: also remove orphaned tool_uses (bidirectional cleanup)
  • 0c50fff fix: tool-pair-aware truncation to prevent orphaned tool_result errors
  • 9f44e74 chore: bump version to 0.1.2 - remove unused import in serdes-ai-models
  • See full diff in compare view

Updates serdes-ai-models from 0.1.1 to 0.1.5

Changelog

Sourced from serdes-ai-models's changelog.

[0.1.5] - 2025-01-28

Added

  • Cancellation Support for AgentStream and AgentRun (Issue #6)
    • New AgentStream::new_with_cancel() constructor accepting a CancellationToken
    • New AgentRun::new_with_cancel() constructor accepting a CancellationToken
    • New AgentStreamEvent::Cancelled event variant with partial results (text, thinking, pending tools)
    • cancel(), is_cancelled(), and cancellation_token() methods on both types
    • Cancellation checks in the streaming loop and before each tool execution
    • Re-exported tokio_util::sync::CancellationToken from serdes-ai-agent for convenience

[0.1.2] - 2025-01-27

Fixed

  • Removed unused import PartStartEvent in serdes-ai-models claude_code_oauth stream module

[0.1.0] - 2025-01-XX

Added

Core Framework

  • Complete Rust port of pydantic-ai architecture
  • Type-safe agent framework with generic dependencies and output types
  • Compile-time validation of agent configurations
  • Async/await support throughout using tokio

Agent System (serdes-ai-agent)

  • Agent builder with fluent API
  • AgentRun for managing conversation state
  • RunContext for dependency injection into tools
  • Support for system prompts (static and dynamic)
  • Configurable end strategies (early, first tool, exhaust tools)
  • Usage tracking and limits

Model Providers (serdes-ai-models)

  • OpenAI: Full support for GPT-4, GPT-4o, o1, o3 models
    • Chat completions API
    • Streaming with SSE
    • Tool calling with strict mode
    • Vision (image input)
  • Anthropic: Full support for Claude 3.5/4 family
    • Messages API
    • Extended thinking (claude-3-5-sonnet)
    • Prompt caching
    • Tool use with cache control
  • Google: Gemini 1.5 and 2.0 models
    • GenerateContent API
    • Multi-modal input (text, images, documents)
    • Native JSON mode
  • Groq: Ultra-fast inference

... (truncated)

Commits
  • fb59e8d feat(agent): Add cancellation support to AgentStream and AgentRun (Issue #6)
  • 939ad3f chore: bump serdes-ai-providers to 0.1.4
  • 96bf22c fix: clean professional HTML for OAuth callback pages (no unicode)
  • 3a3f1d8 chore: bump version to 0.1.3 for crates.io release
  • 7f6c314 chore: fix clippy warnings and version tests for crates.io publish
  • 5b8b2a7 style: apply cargo fmt to history.rs
  • d0c88f2 fix: also remove orphaned tool_uses (bidirectional cleanup)
  • 0c50fff fix: tool-pair-aware truncation to prevent orphaned tool_result errors
  • 9f44e74 chore: bump version to 0.1.2 - remove unused import in serdes-ai-models
  • See full diff in compare view

Updates serdes-ai-streaming from 0.1.1 to 0.1.5

Changelog

Sourced from serdes-ai-streaming's changelog.

[0.1.5] - 2025-01-28

Added

  • Cancellation Support for AgentStream and AgentRun (Issue #6)
    • New AgentStream::new_with_cancel() constructor accepting a CancellationToken
    • New AgentRun::new_with_cancel() constructor accepting a CancellationToken
    • New AgentStreamEvent::Cancelled event variant with partial results (text, thinking, pending tools)
    • cancel(), is_cancelled(), and cancellation_token() methods on both types
    • Cancellation checks in the streaming loop and before each tool execution
    • Re-exported tokio_util::sync::CancellationToken from serdes-ai-agent for convenience

[0.1.2] - 2025-01-27

Fixed

  • Removed unused import PartStartEvent in serdes-ai-models claude_code_oauth stream module

[0.1.0] - 2025-01-XX

Added

Core Framework

  • Complete Rust port of pydantic-ai architecture
  • Type-safe agent framework with generic dependencies and output types
  • Compile-time validation of agent configurations
  • Async/await support throughout using tokio

Agent System (serdes-ai-agent)

  • Agent builder with fluent API
  • AgentRun for managing conversation state
  • RunContext for dependency injection into tools
  • Support for system prompts (static and dynamic)
  • Configurable end strategies (early, first tool, exhaust tools)
  • Usage tracking and limits

Model Providers (serdes-ai-models)

  • OpenAI: Full support for GPT-4, GPT-4o, o1, o3 models
    • Chat completions API
    • Streaming with SSE
    • Tool calling with strict mode
    • Vision (image input)
  • Anthropic: Full support for Claude 3.5/4 family
    • Messages API
    • Extended thinking (claude-3-5-sonnet)
    • Prompt caching
    • Tool use with cache control
  • Google: Gemini 1.5 and 2.0 models
    • GenerateContent API
    • Multi-modal input (text, images, documents)
    • Native JSON mode
  • Groq: Ultra-fast inference

... (truncated)

Commits
  • fb59e8d feat(agent): Add cancellation support to AgentStream and AgentRun (Issue #6)
  • 939ad3f chore: bump serdes-ai-providers to 0.1.4
  • 96bf22c fix: clean professional HTML for OAuth callback pages (no unicode)
  • 3a3f1d8 chore: bump version to 0.1.3 for crates.io release
  • 7f6c314 chore: fix clippy warnings and version tests for crates.io publish
  • 5b8b2a7 style: apply cargo fmt to history.rs
  • d0c88f2 fix: also remove orphaned tool_uses (bidirectional cleanup)
  • 0c50fff fix: tool-pair-aware truncation to prevent orphaned tool_result errors
  • 9f44e74 chore: bump version to 0.1.2 - remove unused import in serdes-ai-models
  • See full diff in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 2, 2026

Labels

The following labels could not be found: dependencies, rust. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 2, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 64.71%. Comparing base (bf3a29d) to head (e27e4c4).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main      #28   +/-   ##
=======================================
  Coverage   64.71%   64.71%           
=======================================
  Files          35       35           
  Lines        1057     1057           
=======================================
  Hits          684      684           
  Misses        373      373           
Flag Coverage Δ
unittests 64.71% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

…5 updates

Bumps the patch-updates group with 3 updates in the /src directory: [schemars](https://github.com/GREsau/schemars), [process-wrap](https://github.com/watchexec/process-wrap) and [serdes-ai](https://github.com/janfeddersen-wq/serdesAI).


Updates `schemars` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/GREsau/schemars/releases)
- [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md)
- [Commits](GREsau/schemars@v1.2.0...v1.2.1)

Updates `process-wrap` from 9.0.0 to 9.0.1
- [Changelog](https://github.com/watchexec/process-wrap/blob/main/CHANGELOG.md)
- [Commits](watchexec/process-wrap@v9.0.0...v9.0.1)

Updates `serdes-ai` from 0.1.1 to 0.1.5
- [Changelog](https://github.com/janfeddersen-wq/serdesAI/blob/main/CHANGELOG.md)
- [Commits](janfeddersen-wq/serdesAI@v0.1.1...v0.1.5)

Updates `serdes-ai-models` from 0.1.1 to 0.1.5
- [Changelog](https://github.com/janfeddersen-wq/serdesAI/blob/main/CHANGELOG.md)
- [Commits](janfeddersen-wq/serdesAI@v0.1.1...v0.1.5)

Updates `serdes-ai-streaming` from 0.1.1 to 0.1.5
- [Changelog](https://github.com/janfeddersen-wq/serdesAI/blob/main/CHANGELOG.md)
- [Commits](janfeddersen-wq/serdesAI@v0.1.1...v0.1.5)

---
updated-dependencies:
- dependency-name: schemars
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: process-wrap
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serdes-ai
  dependency-version: 0.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serdes-ai-models
  dependency-version: 0.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serdes-ai-streaming
  dependency-version: 0.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/src/patch-updates-58298aad20 branch from dd95cc7 to e27e4c4 Compare February 7, 2026 22:54
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 16, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Feb 16, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/src/patch-updates-58298aad20 branch February 16, 2026 10:09
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