File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-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.2 - 2025-07-09
6+
7+ ### What's Changed
8+
9+ * Fix Architecture graph by @szepeviktor in https://github.com/php-mcp/server/pull/42
10+ * Fix: Correctly handle invokable class tool handlers by @CodeWithKyrian in https://github.com/php-mcp/server/pull/47
11+
12+ ### New Contributors
13+
14+ * @szepeviktor made their first contribution in https://github.com/php-mcp/server/pull/42
15+
16+ ** Full Changelog** : https://github.com/php-mcp/server/compare/3.2.1...3.2.2
17+
518## v3.2.1 - 2025-06-30
619
720### What's Changed
@@ -30,6 +43,7 @@ If you're using the `CompletionProvider` attribute with the named `providerClass
3043#[CompletionProvider(provider: UserProvider::class)]
3144
3245
46+
3347```
3448The old ` providerClass ` parameter continues to work for backward compatibility, but may be dropped in a future major version release.
3549
@@ -123,6 +137,7 @@ This release brings support for the latest MCP protocol version along with enhan
123137
124138
125139
140+
126141```
127142** After:**
128143
@@ -140,6 +155,7 @@ This release brings support for the latest MCP protocol version along with enhan
140155
141156
142157
158+
143159```
144160#### Transport Upgrade (Optional)
145161
@@ -156,6 +172,7 @@ $transport = new HttpServerTransport(host: '127.0.0.1', port: 8080);
156172
157173
158174
175+
159176```
160177** After:**
161178
@@ -168,6 +185,7 @@ $transport = new StreamableHttpServerTransport(host: '127.0.0.1', port: 8080);
168185
169186
170187
188+
171189```
172190### 📚 Documentation
173191
@@ -352,6 +370,7 @@ This is a major refactoring with significant breaking changes:
352370
353371
354372
373+
355374 ```
356375 The `http` and `reactphp` options for `run()` were already invalid and are fully removed.
357376
You can’t perform that action at this time.
0 commit comments