chore: roll 1.58.0-alpha-2026-01-15 (#1309)

This commit is contained in:
Yury Semikhatsky
2026-01-15 11:18:57 -08:00
committed by GitHub
parent 33b4c00923
commit 9cc61b4faf
4 changed files with 27 additions and 17 deletions

View File

@@ -576,6 +576,11 @@ npx @playwright/mcp@latest --config path/to/config.json
*/ */
cdpHeaders?: Record<string, string>; cdpHeaders?: Record<string, string>;
/**
* Timeout in milliseconds for connecting to CDP endpoint. Defaults to 30000 (30 seconds). Pass 0 to disable timeout.
*/
cdpTimeout?: number;
/** /**
* Remote endpoint to connect to an existing Playwright server. * Remote endpoint to connect to an existing Playwright server.
*/ */

5
config.d.ts vendored
View File

@@ -64,6 +64,11 @@ export type Config = {
*/ */
cdpHeaders?: Record<string, string>; cdpHeaders?: Record<string, string>;
/**
* Timeout in milliseconds for connecting to CDP endpoint. Defaults to 30000 (30 seconds). Pass 0 to disable timeout.
*/
cdpTimeout?: number;
/** /**
* Remote endpoint to connect to an existing Playwright server. * Remote endpoint to connect to an existing Playwright server.
*/ */

28
package-lock.json generated
View File

@@ -9,15 +9,15 @@
"version": "0.0.55", "version": "0.0.55",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"playwright": "1.58.0-alpha-2026-01-07", "playwright": "1.58.0-alpha-2026-01-15",
"playwright-core": "1.58.0-alpha-2026-01-07" "playwright-core": "1.58.0-alpha-2026-01-15"
}, },
"bin": { "bin": {
"mcp-server-playwright": "cli.js" "mcp-server-playwright": "cli.js"
}, },
"devDependencies": { "devDependencies": {
"@modelcontextprotocol/sdk": "^1.24.0", "@modelcontextprotocol/sdk": "^1.24.0",
"@playwright/test": "1.58.0-alpha-2026-01-07", "@playwright/test": "1.58.0-alpha-2026-01-15",
"@types/node": "^24.3.0" "@types/node": "^24.3.0"
}, },
"engines": { "engines": {
@@ -63,13 +63,13 @@
} }
}, },
"node_modules/@playwright/test": { "node_modules/@playwright/test": {
"version": "1.58.0-alpha-2026-01-07", "version": "1.58.0-alpha-2026-01-15",
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.58.0-alpha-2026-01-07.tgz", "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.58.0-alpha-2026-01-15.tgz",
"integrity": "sha512-57P04rQ8X+9UH3Wl8SDNwi0Rg7yw1jrlD3/BY44VgQn1auUdKzFonL5Nkf4hu3qsrxuSmU3yrI8pS+wMgSJFxA==", "integrity": "sha512-ttV4PWXTPoBL2jsCGkiZFdudAbTahcYgLlFk6sMPc3qC840CBvL0IzKuMrblOIBt7yd5mqQEfdqr3uUBkW0fAg==",
"dev": true, "dev": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"playwright": "1.58.0-alpha-2026-01-07" "playwright": "1.58.0-alpha-2026-01-15"
}, },
"bin": { "bin": {
"playwright": "cli.js" "playwright": "cli.js"
@@ -884,12 +884,12 @@
} }
}, },
"node_modules/playwright": { "node_modules/playwright": {
"version": "1.58.0-alpha-2026-01-07", "version": "1.58.0-alpha-2026-01-15",
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.58.0-alpha-2026-01-07.tgz", "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.58.0-alpha-2026-01-15.tgz",
"integrity": "sha512-ToIdvA1wM46BFcVURbbX9HCPNbzY2ugrJe2MUv2h6phkrD+hDD+vxNFkOOo+LLj5sJkiqr+Nwccay21tJj1NGw==", "integrity": "sha512-g+ag/PvTnMQVXvwlD16U3dkmY/2dg461YjW3K40qxf4CcAqj4vpR/bJl/CZxnPCsEG81LSNY9+nn4EnopnsCsg==",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"playwright-core": "1.58.0-alpha-2026-01-07" "playwright-core": "1.58.0-alpha-2026-01-15"
}, },
"bin": { "bin": {
"playwright": "cli.js" "playwright": "cli.js"
@@ -902,9 +902,9 @@
} }
}, },
"node_modules/playwright-core": { "node_modules/playwright-core": {
"version": "1.58.0-alpha-2026-01-07", "version": "1.58.0-alpha-2026-01-15",
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.58.0-alpha-2026-01-07.tgz", "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.58.0-alpha-2026-01-15.tgz",
"integrity": "sha512-BV81BlzDg+WWhMut60z+1huVsSZF0O/6OXkwD16NXA6Mul49/yLHLJl4qHODAxAtdG/jxeXvJ87oFr3ERUCK0A==", "integrity": "sha512-miyOOEXEy+rGp+lFqRJqCtj7S/U2xNY2h5co1Eg7uXghkSlZqxWq8Q7j5SavegVo9939+Glfyf7iBui7nxpQVQ==",
"license": "Apache-2.0", "license": "Apache-2.0",
"bin": { "bin": {
"playwright-core": "cli.js" "playwright-core": "cli.js"

View File

@@ -37,15 +37,15 @@
} }
}, },
"dependencies": { "dependencies": {
"playwright": "1.58.0-alpha-2026-01-07", "playwright": "1.58.0-alpha-2026-01-15",
"playwright-core": "1.58.0-alpha-2026-01-07" "playwright-core": "1.58.0-alpha-2026-01-15"
}, },
"bin": { "bin": {
"mcp-server-playwright": "cli.js" "mcp-server-playwright": "cli.js"
}, },
"devDependencies": { "devDependencies": {
"@modelcontextprotocol/sdk": "^1.24.0", "@modelcontextprotocol/sdk": "^1.24.0",
"@playwright/test": "1.58.0-alpha-2026-01-07", "@playwright/test": "1.58.0-alpha-2026-01-15",
"@types/node": "^24.3.0" "@types/node": "^24.3.0"
} }
} }