Skip to content

Commit e21fb9f

Browse files
Prepare release 1.7.1 (#63)
* Prepare release 1.7.1 * Update release notes with stateless mode fix (#65) * Enable stateless mode for MCP HTTP transport Configure the MCP server to use stateless mode by setting options.Stateless = true in WithHttpTransport(). This eliminates session management issues that cause "Session not found" errors when the server restarts or clients reconnect. Benefits: - No session IDs required - each request is independent - No Data Protection key management needed - Survives server restarts without breaking client connections - Works across multiple server instances without session affinity Trade-off: McpServer.ClientInfo will be null as client metadata is not tracked across requests in stateless mode. Resolves connection issues with MCP clients including Claude Code. * Update release notes with stateless mode fix Add PR #64 (Enable stateless mode for MCP HTTP transport) to the 1.7.1 release notes under Bug Fixes section. This fix resolves "Session not found" errors experienced by MCP clients when reconnecting or after server restarts. Updates both RELEASE_NOTES.md and Directory.Build.props with the new bug fix entry.
1 parent e811c32 commit e21fb9f

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

Directory.Build.props

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,23 @@
33
<Copyright>© $([System.DateTime]::Now.Year)</Copyright>
44
<PackageLicenseExpression>MIT</PackageLicenseExpression>
55
<PackageProjectUrl>https://github.com/dariogriffo/postg-mem</PackageProjectUrl>
6-
<VersionPrefix>1.7.1-beta1</VersionPrefix>
6+
<VersionPrefix>1.7.1</VersionPrefix>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
88
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
99
<Deterministic>true</Deterministic>
10-
<PackageReleaseNotes>**🚧 BETA RELEASE - For Testing MCP Connectivity Fixes**
11-
12-
**Breaking Changes**
10+
<PackageReleaseNotes>**Breaking Changes**
1311
- **MCP Endpoint Configuration Updated**: The recommended MCP endpoint has changed from `/sse` to the root path `/` to use modern Streamable HTTP transport (MCP spec 2025-03-26+)
1412
- **Before:** `"url": "http://localhost:5000/sse"`
1513
- **After:** `"url": "http://localhost:5000"`
1614
- The `/sse` endpoint still works for backward compatibility but is no longer recommended
1715
- [Update MCP endpoint from /sse to root path for Streamable HTTP](https://github.com/petabridge/memorizer-v1/pull/57)
1816

17+
**Bug Fixes**
18+
- [Enable stateless mode for MCP HTTP transport](https://github.com/petabridge/memorizer-v1/pull/64) - Fixes "Session not found" errors when clients reconnect or server restarts by enabling sessionless operation
19+
1920
**Updates**
2021
- [Bump ModelContextProtocol from 0.3.0-preview.4 to 0.4.0-preview.2](https://github.com/petabridge/memorizer-v1/pull/56) - Fixes server notification bugs and improves protocol compatibility
21-
- [Bump ModelContextProtocol.AspNetCore from 0.3.0-preview.4 to 0.4.0-preview.2](https://github.com/petabridge/memorizer-v1/pull/56) - Adds Streamable HTTP transport support
22-
23-
**Motivation**
24-
This beta release addresses MCP client connectivity issues, particularly with Claude Code. The updated SDK (0.4.0-preview.2) includes critical fixes for server notifications and better protocol version negotiation.</PackageReleaseNotes>
22+
- [Bump ModelContextProtocol.AspNetCore from 0.3.0-preview.4 to 0.4.0-preview.2](https://github.com/petabridge/memorizer-v1/pull/56) - Adds Streamable HTTP transport support</PackageReleaseNotes>
2523
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
2624
</PropertyGroup>
2725
</Project>

RELEASE_NOTES.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
#### 1.7.1-beta1 October 10th 2025 ####
2-
3-
**🚧 BETA RELEASE - For Testing MCP Connectivity Fixes**
1+
#### 1.7.1 October 10th 2025 ####
42

53
**Breaking Changes**
64
- **MCP Endpoint Configuration Updated**: The recommended MCP endpoint has changed from `/sse` to the root path `/` to use modern Streamable HTTP transport (MCP spec 2025-03-26+)
@@ -9,13 +7,13 @@
97
- The `/sse` endpoint still works for backward compatibility but is no longer recommended
108
- [Update MCP endpoint from /sse to root path for Streamable HTTP](https://github.com/petabridge/memorizer-v1/pull/57)
119

10+
**Bug Fixes**
11+
- [Enable stateless mode for MCP HTTP transport](https://github.com/petabridge/memorizer-v1/pull/64) - Fixes "Session not found" errors when clients reconnect or server restarts by enabling sessionless operation
12+
1213
**Updates**
1314
- [Bump ModelContextProtocol from 0.3.0-preview.4 to 0.4.0-preview.2](https://github.com/petabridge/memorizer-v1/pull/56) - Fixes server notification bugs and improves protocol compatibility
1415
- [Bump ModelContextProtocol.AspNetCore from 0.3.0-preview.4 to 0.4.0-preview.2](https://github.com/petabridge/memorizer-v1/pull/56) - Adds Streamable HTTP transport support
1516

16-
**Motivation**
17-
This beta release addresses MCP client connectivity issues, particularly with Claude Code. The updated SDK (0.4.0-preview.2) includes critical fixes for server notifications and better protocol version negotiation.
18-
1917
#### 1.7.0 October 9th 2025 ####
2018

2119
**Features**

0 commit comments

Comments
 (0)