Skip to content

Commit a1f67ab

Browse files
CodeWithKyriangithub-actions[bot]
authored andcommitted
Update CHANGELOG
1 parent 590aa38 commit a1f67ab

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

CHANGELOG.md

Lines changed: 13 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.0.1 - 2025-06-24
6+
7+
### What's Changed
8+
9+
* Fix validation failure for MCP tools without parameters by @CodeWithKyrian in https://github.com/php-mcp/server/pull/28
10+
11+
**Full Changelog**: https://github.com/php-mcp/server/compare/3.0.0...3.0.1
12+
513
## v3.0.0 - 2025-06-21
614

715
This release brings support for the latest MCP protocol version along with enhanced schema generation, new transport capabilities, and streamlined APIs.
@@ -49,6 +57,7 @@ This release brings support for the latest MCP protocol version along with enhan
4957
resourceSubscribe: true
5058
))
5159

60+
5261
```
5362
**After:**
5463

@@ -60,6 +69,7 @@ This release brings support for the latest MCP protocol version along with enhan
6069
resourcesSubscribe: true
6170
))
6271

72+
6373
```
6474
#### Transport Upgrade (Optional)
6575

@@ -70,12 +80,14 @@ For production HTTP deployments, consider upgrading to the new `StreamableHttpSe
7080
```php
7181
$transport = new HttpServerTransport(host: '127.0.0.1', port: 8080);
7282

83+
7384
```
7485
**After:**
7586

7687
```php
7788
$transport = new StreamableHttpServerTransport(host: '127.0.0.1', port: 8080);
7889

90+
7991
```
8092
### 📚 Documentation
8193

@@ -254,6 +266,7 @@ This is a major refactoring with significant breaking changes:
254266

255267

256268

269+
257270
```
258271
The `http` and `reactphp` options for `run()` were already invalid and are fully removed.
259272

0 commit comments

Comments
 (0)