Skip to content

chore: update rmcp v0.15.0#52

Merged
mrizzi merged 1 commit intoguacsec:mainfrom
mrizzi:chore-update-rmcp-v0.15.0
Feb 10, 2026
Merged

chore: update rmcp v0.15.0#52
mrizzi merged 1 commit intoguacsec:mainfrom
mrizzi:chore-update-rmcp-v0.15.0

Conversation

@mrizzi
Copy link
Contributor

@mrizzi mrizzi commented Feb 10, 2026

Summary by Sourcery

Build:

  • Bump rmcp crate from 0.14.0 to 0.15.0 in main dependencies and dev-dependencies.

Signed-off-by: mrizzi <mrizzi@redhat.com>
@sourcery-ai
Copy link

sourcery-ai bot commented Feb 10, 2026

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Updates the rmcp dependency (both main and dev) from v0.14.0 to v0.15.0 in Cargo.toml and refreshes Cargo.lock accordingly to pull in the new transitive dependency graph.

File-Level Changes

Change Details Files
Bump rmcp crate version for application and test code to 0.15.0 while preserving existing feature sets.
  • Update main rmcp dependency version from 0.14.0 to 0.15.0 with server and transport-related features unchanged
  • Update dev-dependency rmcp version from 0.14.0 to 0.15.0 with client and transport-child-process features unchanged
Cargo.toml
Regenerate lockfile to reflect the new rmcp 0.15.0 dependency and its transitive dependencies.
  • Update recorded rmcp crate version and checksums
  • Adjust any affected transitive dependency entries resulting from the rmcp upgrade
Cargo.lock

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@qodo-code-review
Copy link

Review Summary by Qodo

Update rmcp dependency to version 0.15.0

✨ Enhancement

Grey Divider

Walkthroughs

Description
• Update rmcp dependency from 0.14.0 to 0.15.0
• Update both main and dev-dependencies rmcp versions
Diagram
flowchart LR
  A["rmcp 0.14.0"] -- "upgrade" --> B["rmcp 0.15.0"]
  C["Cargo.toml"] -- "update dependencies" --> B
Loading

Grey Divider

File Changes

1. Cargo.toml Dependencies +2/-2

Upgrade rmcp dependency to 0.15.0

• Update rmcp version from 0.14.0 to 0.15.0 in dependencies section
• Update rmcp version from 0.14.0 to 0.15.0 in dev-dependencies section
• Maintain existing feature flags for both dependency entries

Cargo.toml


Grey Divider

Qodo Logo

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@qodo-code-review
Copy link

Code Review by Qodo

🐞 Bugs (1) 📘 Rule violations (0) 📎 Requirement gaps (0)

Grey Divider


Advisory comments

1. 0.x rmcp bump risk 🐞 Bug ⛯ Reliability
Description
rmcp is upgraded from 0.14.x to 0.15.0; in 0.x SemVer, a minor bump may include breaking
API/behavior changes, so this upgrade should be validated like a major upgrade to avoid regressions
in your stdio and streamable HTTP servers.
Code

Cargo.toml[20]

+rmcp = { version = "0.15.0", features = ["server", "transport-io", "transport-streamable-http-server"] }
Evidence
The PR changes rmcp to 0.15.0 (prod and dev). The repo uses rmcp in both stdio and streamable HTTP
binaries and in integration tests; CI runs tests, which reduces (but doesn’t eliminate) upgrade
risk. Under SemVer rules, 0.x minor bumps may contain breaking changes, so extra validation is
warranted.

Cargo.toml[14-37]
Cargo.lock[4727-4758]
src/bin/stdio.rs[1-25]
src/bin/streamhttp.rs[1-37]
tests/integration_test.rs[289-348]
.github/workflows/ci.yaml[33-38]
Best Practice: Semantic Versioning 2.0.0

Agent prompt
The issue below was found during a code review. Follow the provided context and guidance below and implement a solution

### Issue description
`rmcp` was upgraded from 0.14.x to 0.15.0. Because this is a 0.x crate, the minor bump may include breaking changes; ensure the upgrade is validated (and adjust integration code if needed).

### Issue Context
The codebase uses rmcp for:
- stdio transport server (`src/bin/stdio.rs`)
- streamable HTTP server (`src/bin/streamhttp.rs`)
- client transport in integration tests (`tests/integration_test.rs`)

### Fix Focus Areas
- Cargo.toml[20-20]
- Cargo.toml[36-36]
- src/bin/stdio.rs[1-25]
- src/bin/streamhttp.rs[1-37]
- tests/integration_test.rs[289-415]
- .github/workflows/ci.yaml[33-38]

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools


Grey Divider

ⓘ The new review experience is currently in Beta. Learn more

Grey Divider

Qodo Logo

@mrizzi mrizzi merged commit 3880717 into guacsec:main Feb 10, 2026
2 checks passed
@mrizzi mrizzi deleted the chore-update-rmcp-v0.15.0 branch February 10, 2026 17:21
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.

1 participant