File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to ` php-mcp/server ` will be documented in this file.
44
5+ ## v3.2.1 - 2025-06-30
6+
7+ ### What's Changed
8+
9+ * feat: use callable instead of Closure|array|string for handler type by @CodeWithKyrian in https://github.com/php-mcp/server/pull/41
10+
11+ ** Full Changelog** : https://github.com/php-mcp/server/compare/3.2.0...3.2.1
12+
513## v3.2.0 - 2025-06-30
614
715### What's Changed
@@ -21,6 +29,7 @@ If you're using the `CompletionProvider` attribute with the named `providerClass
2129// After (recommended)
2230#[CompletionProvider(provider: UserProvider::class)]
2331
32+
2433```
2534The old ` providerClass ` parameter continues to work for backward compatibility, but may be dropped in a future major version release.
2635
@@ -113,6 +122,7 @@ This release brings support for the latest MCP protocol version along with enhan
113122
114123
115124
125+
116126```
117127** After:**
118128
@@ -129,6 +139,7 @@ This release brings support for the latest MCP protocol version along with enhan
129139
130140
131141
142+
132143```
133144#### Transport Upgrade (Optional)
134145
@@ -144,6 +155,7 @@ $transport = new HttpServerTransport(host: '127.0.0.1', port: 8080);
144155
145156
146157
158+
147159```
148160** After:**
149161
@@ -155,6 +167,7 @@ $transport = new StreamableHttpServerTransport(host: '127.0.0.1', port: 8080);
155167
156168
157169
170+
158171```
159172### 📚 Documentation
160173
@@ -338,6 +351,7 @@ This is a major refactoring with significant breaking changes:
338351
339352
340353
354+
341355 ```
342356 The `http` and `reactphp` options for `run()` were already invalid and are fully removed.
343357
You can’t perform that action at this time.
0 commit comments