Skip to content

Commit ff9544d

Browse files
authored
chore: mark v0.0.50 (#1244)
1 parent c85ee1a commit ff9544d

File tree

8 files changed

+75
-16
lines changed

8 files changed

+75
-16
lines changed

.mcp/server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"source": "github"
99
},
1010
"websiteUrl": "https://github.com/microsoft/playwright-mcp",
11-
"version": "0.0.49",
11+
"version": "0.0.50",
1212
"packages": [
1313
{
1414
"registryType": "npm",
1515
"identifier": "@playwright/mcp",
16-
"version": "0.0.49",
16+
"version": "0.0.50",
1717
"transport": {
1818
"type": "stdio"
1919
}

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,13 @@ npx @playwright/mcp@latest --config path/to/config.json
610610
*/
611611
outputDir?: string;
612612

613+
console?: {
614+
/**
615+
* The level of console messages to return. Each level includes the messages of more severe levels. Defaults to "info".
616+
*/
617+
level?: 'error' | 'warning' | 'info' | 'debug';
618+
},
619+
613620
network?: {
614621
/**
615622
* List of origins to allow the browser to request. Default is to allow all. Origins matching both `allowedOrigins` and `blockedOrigins` will be blocked.
@@ -643,6 +650,13 @@ npx @playwright/mcp@latest --config path/to/config.json
643650
* Whether to send image responses to the client. Can be "allow", "omit", or "auto". Defaults to "auto", which sends images if the client can display them.
644651
*/
645652
imageResponses?: 'allow' | 'omit';
653+
654+
snapshot?: {
655+
/**
656+
* When taking snapshots for responses, specifies the mode to use.
657+
*/
658+
mode?: 'incremental' | 'full' | 'none';
659+
}
646660
}
647661
```
648662

config.d.ts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,13 @@ export type Config = {
142142
*/
143143
outputDir?: string;
144144

145+
console?: {
146+
/**
147+
* The level of console messages to return. Each level includes the messages of more severe levels. Defaults to "info".
148+
*/
149+
level?: 'error' | 'warning' | 'info' | 'debug';
150+
},
151+
145152
network?: {
146153
/**
147154
* List of origins to allow the browser to request. Default is to allow all. Origins matching both `allowedOrigins` and `blockedOrigins` will be blocked.
@@ -175,5 +182,11 @@ export type Config = {
175182
* Whether to send image responses to the client. Can be "allow", "omit", or "auto". Defaults to "auto", which sends images if the client can display them.
176183
*/
177184
imageResponses?: 'allow' | 'omit';
178-
};
179185

186+
snapshot?: {
187+
/**
188+
* When taking snapshots for responses, specifies the mode to use.
189+
*/
190+
mode?: 'incremental' | 'full' | 'none';
191+
}
192+
};

extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Playwright MCP Bridge",
4-
"version": "0.0.49",
4+
"version": "0.0.50",
55
"description": "Share browser tabs with Playwright MCP server",
66
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9nMS2b0WCohjVHPGb8D9qAdkbIngDqoAjTeSccHJijgcONejge+OJxOQOMLu7b0ovt1c9BiEJa5JcpM+EHFVGL1vluBxK71zmBy1m2f9vZF3HG0LSCp7YRkum9rAIEthDwbkxx6XTvpmAY5rjFa/NON6b9Hlbo+8peUSkoOK7HTwYnnI36asZ9eUTiveIf+DMPLojW2UX33vDWG2UKvMVDewzclb4+uLxAYshY7Mx8we/b44xu+Anb/EBLKjOPk9Yh541xJ5Ozc8EiP/5yxOp9c/lRiYUHaRW+4r0HKZyFt0eZ52ti2iM4Nfk7jRXR7an3JPsUIf5deC/1cVM/+1ZQIDAQAB",
77
"permissions": [

extension/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@playwright/mcp-extension",
3-
"version": "0.0.49",
3+
"version": "0.0.50",
44
"description": "Playwright MCP Browser Extension",
55
"private": true,
66
"repository": {

package-lock.json

Lines changed: 39 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@playwright/mcp",
3-
"version": "0.0.49",
3+
"version": "0.0.50",
44
"description": "Playwright Tools for MCP",
55
"mcpName": "com.microsoft/playwright-mcp",
66
"repository": {
@@ -46,7 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@modelcontextprotocol/sdk": "^1.17.5",
49-
"@playwright/test": "1.58.0-alpha-2025-11-30",
49+
"@playwright/test": "1.58.0-alpha-2025-12-05",
5050
"@types/node": "^24.3.0",
5151
"zod-to-json-schema": "^3.24.6"
5252
}

0 commit comments

Comments
 (0)