Skip to content

Commit 881dd2d

Browse files
Prepare release 1.7.1-beta1 (#58)
Updates release notes and version metadata for beta release 1.7.1-beta1. This beta release includes: - MCP endpoint configuration change from /sse to root path - Updated ModelContextProtocol packages to 0.4.0-preview.2 - Fixes for MCP client connectivity issues
1 parent f18f89a commit 881dd2d

File tree

2 files changed

+32
-7
lines changed

2 files changed

+32
-7
lines changed

Directory.Build.props

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,25 @@
33
<Copyright>© $([System.DateTime]::Now.Year)</Copyright>
44
<PackageLicenseExpression>MIT</PackageLicenseExpression>
55
<PackageProjectUrl>https://github.com/dariogriffo/postg-mem</PackageProjectUrl>
6-
<VersionPrefix>1.7.0</VersionPrefix>
6+
<VersionPrefix>1.7.1-beta1</VersionPrefix>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
88
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
99
<Deterministic>true</Deterministic>
10-
<PackageReleaseNotes>**Features**
11-
- [Add configurable CORS support for MCP SSE endpoints](https://github.com/petabridge/memorizer-v1/pull/53) - Enables MCP clients to connect with customizable CORS policies
12-
- [Make embedding dimensions configurable](https://github.com/petabridge/memorizer-v1/pull/18) - Support different embedding models via `Dimensions` setting
10+
<PackageReleaseNotes>**🚧 BETA RELEASE - For Testing MCP Connectivity Fixes**
11+
12+
**Breaking Changes**
13+
- **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+)
14+
- **Before:** `"url": "http://localhost:5000/sse"`
15+
- **After:** `"url": "http://localhost:5000"`
16+
- The `/sse` endpoint still works for backward compatibility but is no longer recommended
17+
- [Update MCP endpoint from /sse to root path for Streamable HTTP](https://github.com/petabridge/memorizer-v1/pull/57)
1318

1419
**Updates**
15-
- [Bump all MSFT dependencies to 9.0.9](https://github.com/petabridge/memorizer-v1/pull/54) - Updated to .NET 9 framework
16-
- [Bump ModelContextProtocol from 0.3.0-preview.3 to 0.3.0-preview.4](https://github.com/petabridge/memorizer-v1/pull/36) - Framework improvements and bug fixes
17-
- [Bump ModelContextProtocol.AspNetCore from 0.3.0-preview.3 to 0.3.0-preview.4](https://github.com/petabridge/memorizer-v1/pull/39) - Framework improvements and bug fixes</PackageReleaseNotes>
20+
- [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>
1825
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
1926
</PropertyGroup>
2027
</Project>

RELEASE_NOTES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#### 1.7.1-beta1 October 10th 2025 ####
2+
3+
**🚧 BETA RELEASE - For Testing MCP Connectivity Fixes**
4+
5+
**Breaking Changes**
6+
- **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+)
7+
- **Before:** `"url": "http://localhost:5000/sse"`
8+
- **After:** `"url": "http://localhost:5000"`
9+
- The `/sse` endpoint still works for backward compatibility but is no longer recommended
10+
- [Update MCP endpoint from /sse to root path for Streamable HTTP](https://github.com/petabridge/memorizer-v1/pull/57)
11+
12+
**Updates**
13+
- [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
14+
- [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
15+
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+
119
#### 1.7.0 October 9th 2025 ####
220

321
**Features**

0 commit comments

Comments
 (0)