Skip to content
Merged
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
72 changes: 43 additions & 29 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions hyperdb-mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

### Changed

- **Upgraded the `rmcp` SDK dependency from 1.x to 3.4.** Resolves the
outstanding `rmcp` security advisories. Purely an internal dependency bump —
the MCP wire protocol and tool surface exposed by this server are unchanged.

## [1.0.0-rc.4] - 2026-09-08

### Changed
Expand Down
4 changes: 2 additions & 2 deletions hyperdb-mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ path = "src/main.rs"
# x-release-please-start-version
hyperdb-api = { path = "../hyperdb-api", version = "=1.0.0-rc.4" }
# x-release-please-end
rmcp = { version = "1.7", features = ["server", "transport-io"] }
rmcp = { version = "3.4", features = ["server", "transport-io"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "signal", "time"] }
serde = { workspace = true }
serde_json = { workspace = true, features = ["preserve_order"] }
Expand Down Expand Up @@ -60,7 +60,7 @@ tokio = { version = "1", features = ["full"] }
# `tokio::io::duplex` pair so tool calls exercise the full rmcp
# dispatch path (params deserialization, request-context plumbing,
# error mapping) rather than skipping straight to the engine layer.
rmcp = { version = "1.7", features = ["server", "transport-io", "client"] }
rmcp = { version = "3.4", features = ["server", "transport-io", "client"] }

[build-dependencies]
# Build-time only: used to stamp dirty builds with an ISO-8601 basic UTC
Expand Down
Loading
Loading