Skip to content

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Dec 2, 2025

🤖 New release

  • rmcp-macros: 0.10.0 -> 0.11.0
  • rmcp: 0.10.0 -> 0.11.0 (⚠ API breaking changes)

rmcp breaking changes

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.45.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field ListPromptsResult.meta in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/model.rs:945
  field ListResourcesResult.meta in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/model.rs:861
  field ListResourceTemplatesResult.meta in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/model.rs:870
  field StreamableHttpServerConfig.cancellation_token in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/transport/streamable_http_server/tower.rs:41
  field StreamableHttpServerConfig.cancellation_token in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/transport/streamable_http_server/tower.rs:41
  field StreamableHttpServerConfig.cancellation_token in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/transport/streamable_http_server/tower.rs:41
  field ListToolsResult.meta in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/model.rs:1636
  field Prompt.meta in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/model/prompt.rs:30
  field RawResource.meta in /tmp/.tmpAHy78X/rust-sdk/crates/rmcp/src/model/resource.rs:34

--- 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.45.0/src/lints/enum_missing.ron

Failed in:
  enum rmcp::transport::sse_client::SseTransportError, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_client.rs:23

--- failure feature_missing: package feature removed or renamed ---

Description:
A feature has been removed from this package's Cargo.toml. This will break downstream crates which enable that feature.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#cargo-feature-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.45.0/src/lints/feature_missing.ron

Failed in:
  feature transport-sse-client in the package's Cargo.toml
  feature transport-sse-client-reqwest in the package's Cargo.toml
  feature transport-sse-server in the package's Cargo.toml

--- failure module_missing: pub module removed or renamed ---

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

Failed in:
  mod rmcp::transport::sse_client, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_client.rs:1
  mod rmcp::transport::sse_server, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_server.rs:1

--- 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.45.0/src/lints/struct_missing.ron

Failed in:
  struct rmcp::transport::sse_client::SseClientConfig, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_client.rs:316
  struct rmcp::transport::sse_server::SseServerConfig, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_server.rs:218
  struct rmcp::transport::sse_server::PostEventQuery, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_server.rs:60
  struct rmcp::transport::sse_client::SseClientTransport, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_client.rs:192
  struct rmcp::transport::SseClientTransport, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_client.rs:192
  struct rmcp::transport::sse_server::SseServerTransport, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_server.rs:149
  struct rmcp::transport::sse_server::SseServer, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_server.rs:227
  struct rmcp::transport::SseServer, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_server.rs:227

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait 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.45.0/src/lints/trait_missing.ron

Failed in:
  trait rmcp::transport::sse_client::SseClient, previously in file /tmp/.tmpaYiRTE/rmcp/src/transport/sse_client.rs:44
Changelog

rmcp-macros

0.11.0 - 2025-12-04

Added

  • (meta) add _meta field to prompts, resources and paginated result (#558)

Other

  • add video-transcriber-mcp-rs to projects built with rmcp (#565)

rmcp

0.11.0 - 2025-12-04

Added

  • (meta) add _meta field to prompts, resources and paginated result (#558)
  • [breaking] remove SSE transport support (#562)

Fixed

  • (streamable-http) gracefully shutdown while client connected (#494)

Other

  • add video-transcriber-mcp-rs to projects built with rmcp (#565)


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2025-12-02T01-24-29Z branch 2 times, most recently from 8ea0045 to 62a880d Compare December 4, 2025 01:40
@github-actions github-actions bot force-pushed the release-plz-2025-12-02T01-24-29Z branch from 62a880d to d220890 Compare December 4, 2025 01:43
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