Skip to content

Commit d0bebe1

Browse files
committed
chore: add changelog
1 parent 3115456 commit d0bebe1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.changesets/defalut_port_8000.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
### Change default port from 5000 to 8000 - @DaleSeo PR #417
2+
3+
The default server port has been changed from `5000` to `8000` to avoid conflicts with common development tools and services that typically use port 5000 (such as macOS AirPlay, Flask development servers, and other local services).
4+
5+
**Migration**: If you were relying on the default port 5000, you can continue using it by explicitly setting the port in your configuration file or command line arguments.
6+
7+
- Before
8+
9+
```yaml
10+
transport:
11+
type: streamable_http
12+
```
13+
14+
- After
15+
16+
```yaml
17+
transport:
18+
type: streamable_http
19+
port: 5000
20+
```

0 commit comments

Comments
 (0)