Skip to content

Commit d7938a5

Browse files
CodeWithKyriangithub-actions[bot]
authored andcommitted
Update CHANGELOG
1 parent 3c98d3a commit d7938a5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All 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
```
2534
The 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

0 commit comments

Comments
 (0)