Skip to content

Commit c76f148

Browse files
committed
chore: Bump version to 1.0.5 and remove SSE support, including related code and documentation cleanup
1 parent 4aa6a31 commit c76f148

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

docs/docs/release.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ import YouTubeVideoEmbed from '@site/src/components/HomepageFeatures/YouTubeVide
55

66
# Release Notes
77

8+
## Version 1.0.5
9+
- **Removed SSE (Server-Sent Events) Support**: All SSE-related code, endpoints, and documentation have been fully removed. The server now only supports STDIO transport for communication with clients.
10+
- **Codebase Cleanup**: Removed all references to SseServer, /events endpoint, and related event streaming features from the code and documentation.
11+
- **Version bump**: Incremented version to 1.0.5.
12+
813
## Version 1.0.4
914
- **New Tool: `playwright_iframe_fill`**
1015
- Fill input fields inside iframes using CSS selectors

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@executeautomation/playwright-mcp-server",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Model Context Protocol servers for Playwright",
55
"license": "MIT",
66
"author": "ExecuteAutomation, Ltd (https://executeautomation.com)",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ async function runServer() {
99
const server = new Server(
1010
{
1111
name: "executeautomation/playwright-mcp-server",
12-
version: "1.0.4",
12+
version: "1.0.5",
1313
},
1414
{
1515
capabilities: {

0 commit comments

Comments
 (0)