Skip to content

chore(deps): Bump the cargo-minor-and-patch group with 2 updates - #288

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-minor-and-patch-a4b0ad3c18
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-minor-and-patch-a4b0ad3c18

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo-minor-and-patch group with 2 updates: rmcp and hyper.

Updates rmcp from 3.1.4 to 3.2.0

Release notes

Sourced from rmcp's releases.

rmcp-macros-v3.2.0

Added

  • add request-state key rotation (#1128)

Fixed

  • allow concurrent streamable http requests (#1186)

rmcp-v3.2.0

Added

  • (auth) coordinate OAuth refreshes through credential stores (#1232)
  • add request-state key rotation (#1128)

Fixed

  • keep initialize on legacy protocol versions (#1228)
  • (transport) fall back after sessionless HTTP discover rejections (#1211)
  • allow concurrent streamable http requests (#1186)
Commits

Updates hyper from 1.11.0 to 1.11.1

Release notes

Sourced from hyper's releases.

v1.11.1

Bug Fixes

  • http1:
    • detect TE: trailers caselessly and with other values (#4152) (72fcf545)
    • recognize \n\r\n as a head terminator in the partial-read fast path (#4147) (3534d75c, closes #4145)
    • flush bytes buffered by the write re-check before yielding (#4143) (f660f5bf)
    • evict pooled conn on request-side Connection: close (#4110) (da19be08)

What's Changed

New Contributors

Full Changelog: hyperium/hyper@v1.11.0...v1.11.1

Changelog

Sourced from hyper's changelog.

v1.11.1 (2026-08-27)

Bug Fixes

  • http1:
    • detect TE: trailers caselessly and with other values (#4152) (72fcf545)
    • recognize \n\r\n as a head terminator in the partial-read fast path (#4147) (3534d75c, closes #4145)
    • flush bytes buffered by the write re-check before yielding (#4143) (f660f5bf)
    • evict pooled conn on request-side Connection: close (#4110) (da19be08)
Commits
  • 6371cd4 v1.11.1
  • 37c9d0c style(lib): remove lints that have been removed in newer clippy (#4167)
  • 08a2881 docs(contrib): add initial COLLABORATORS guide (#4158)
  • 8b2e533 style(lib): temporarily allow some new clippy lints (#4165)
  • 8fcaf1a docs(lib): expand crate-level cancel safety section with HTTP/1 vs HTTP/2 (#4...
  • d32b294 style(lib): fix needless_continue lint (#4157)
  • fca07bd style(lib): fix missing_errors_doc lint (#4154)
  • 72fcf54 fix(http1): detect TE: trailers caselessly and with other values (#4152)
  • af432e9 docs(body): add streaming read examples (#4148)
  • 3534d75 fix(http1): recognize \n\r\n as a head terminator in the partial-read fast ...
  • Additional commits viewable 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 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

Bumps the cargo-minor-and-patch group with 2 updates: [rmcp](https://github.com/modelcontextprotocol/rust-sdk) and [hyper](https://github.com/hyperium/hyper).


Updates `rmcp` from 3.1.4 to 3.2.0
- [Release notes](https://github.com/modelcontextprotocol/rust-sdk/releases)
- [Changelog](https://github.com/modelcontextprotocol/rust-sdk/blob/main/release-plz.toml)
- [Commits](modelcontextprotocol/rust-sdk@rmcp-v3.1.4...rmcp-v3.2.0)

Updates `hyper` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v1.11.0...v1.11.1)

---
updated-dependencies:
- dependency-name: rmcp
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor-and-patch
- dependency-name: hyper
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
...

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 Sep 7, 2026
@glslang

glslang commented Sep 7, 2026

Copy link
Copy Markdown
Owner

Superseded by #290, which carries this bump commit unchanged and fixes the four CI failures it caused.

They are one root cause: rmcp 3.2.0 makes initialize legacy-only (upstream #1228), so a handshake naming 2026-07-28 is now answered with 2025-11-25 — SEP-2567 abolished the handshake in that revision, and it cannot negotiate its way back to one. Three protocol tests asserted the echo; the token-budget failure is the same change one step removed, the negotiated-down result no longer carrying resultType/ttlMs/cacheScope (exactly the 56 bytes docs/token-budget.md already prices). hyper 1.11.1 is innocent.

Leaving this open so it closes on its own when #290 merges.

@dependabot @github

dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Sep 7, 2026
auto-merge was automatically disabled September 7, 2026 13:07

Pull request was closed

@dependabot
dependabot Bot deleted the dependabot/cargo/cargo-minor-and-patch-a4b0ad3c18 branch September 7, 2026 13:07
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.

1 participant