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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.1.15] - 2026-07-26

### Changed

- Reduce Streamable HTTP reconnect readiness waiting so request timeouts keep
headroom for the actual send.
- Return `404` for unknown HTTP paths instead of leaving clients waiting for a
protocol-layer response that never arrives.

### Fixed

- Propagate `Mcp-Session-Id` from Streamable HTTP requests as the transport
session id used by downstream dispatch.
- Remove redundant session-header lookup code after HTTP header names have
already been normalized.
- Parse complete end-of-stream HTTP JSON-RPC bodies as one JSON document,
preserving pretty-printed requests while retaining newline-delimited fallback
behavior.
- Avoid double parsing JSON-RPC HTTP bodies after validation.
- Report one parse error for a malformed pretty-printed HTTP body instead of
emitting one error per line fragment.

## [0.1.14] - 2026-07-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Please create a build directory and run cmake from there:
You may need to remove CMakeCache.txt and CMakeFiles/")
endif()

project(gopher-mcp VERSION 0.1.14 LANGUAGES C CXX)
project(gopher-mcp VERSION 0.1.15 LANGUAGES C CXX)

# Set library version for shared libraries
set(GOPHER_MCP_VERSION_MAJOR ${PROJECT_VERSION_MAJOR})
Expand Down
Loading