diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 8d2172818..8820869b9 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1,6 +1,6 @@ { "name": "chrome-devtools-plugins", - "version": "1.1.1", + "version": "1.1.2", "description": "Bundled plugins for actuating and debugging the Chrome browser.", "repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp", "owner": { diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index dab58e3de..38062a926 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,12 +1,12 @@ { "name": "chrome-devtools-mcp", - "version": "1.1.1", + "version": "1.1.2", "description": "Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer", "mcpServers": { "chrome-devtools": { "command": "npx", "args": [ - "chrome-devtools-mcp@1.1.1" + "chrome-devtools-mcp@1.1.2" ] } } diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index e88830433..e9c6e909b 100644 --- a/.cursor-plugin/plugin.json +++ b/.cursor-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "devtools-for-agents", "description": "Help your agent build, debug, and verify your code correctly. With Chrome DevTools for agents, your AI agent can interact with the Chrome browser to test code, emulate users, and catch bugs using Chrome DevTools’ capabilities before shipping.", - "version": "1.1.1", + "version": "1.1.2", "author": { "name": "Google Chrome" }, @@ -12,7 +12,7 @@ "chrome-devtools": { "command": "npx", "args": [ - "chrome-devtools-mcp@1.1.1" + "chrome-devtools-mcp@1.1.2" ] } } diff --git a/.github/plugin/plugin.json b/.github/plugin/plugin.json index dab58e3de..38062a926 100644 --- a/.github/plugin/plugin.json +++ b/.github/plugin/plugin.json @@ -1,12 +1,12 @@ { "name": "chrome-devtools-mcp", - "version": "1.1.1", + "version": "1.1.2", "description": "Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer", "mcpServers": { "chrome-devtools": { "command": "npx", "args": [ - "chrome-devtools-mcp@1.1.1" + "chrome-devtools-mcp@1.1.2" ] } } diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c4ddc7481..53b7bc9c4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.1" + ".": "1.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a67c7f37..4357f977f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.2](https://github.com/ChromeDevTools/chrome-devtools-mcp/compare/chrome-devtools-mcp-v1.1.1...chrome-devtools-mcp-v1.1.2) (2026-05-28) + + +### 🏗️ Refactor + +* use validate files on the tool level ([#2152](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2152)) ([2e039c0](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/2e039c09e1a273581d9b51081a0feb8a57791947)), closes [#2150](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/2150) + ## [1.1.1](https://github.com/ChromeDevTools/chrome-devtools-mcp/compare/chrome-devtools-mcp-v1.1.0...chrome-devtools-mcp-v1.1.1) (2026-05-27) diff --git a/gemini-extension.json b/gemini-extension.json index 9363b2e11..d63715eda 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -1,11 +1,11 @@ { "name": "chrome-devtools-mcp", - "version": "1.1.1", + "version": "1.1.2", "mcpServers": { "chrome-devtools": { "command": "npx", "args": [ - "chrome-devtools-mcp@1.1.1" + "chrome-devtools-mcp@1.1.2" ] } } diff --git a/package-lock.json b/package-lock.json index a06a97544..fea3b3bc8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "chrome-devtools-mcp", - "version": "1.1.1", + "version": "1.1.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "chrome-devtools-mcp", - "version": "1.1.1", + "version": "1.1.2", "license": "Apache-2.0", "bin": { "chrome-devtools": "build/src/bin/chrome-devtools.js", diff --git a/package.json b/package.json index 63f0c2d9e..573bf5eed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chrome-devtools-mcp", - "version": "1.1.1", + "version": "1.1.2", "description": "MCP server for Chrome DevTools", "type": "module", "bin": { diff --git a/server.json b/server.json index 676aaa1dd..ae90696b0 100644 --- a/server.json +++ b/server.json @@ -7,13 +7,13 @@ "url": "https://github.com/ChromeDevTools/chrome-devtools-mcp", "source": "github" }, - "version": "1.1.1", + "version": "1.1.2", "packages": [ { "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "chrome-devtools-mcp", - "version": "1.1.1", + "version": "1.1.2", "transport": { "type": "stdio" }, diff --git a/src/version.ts b/src/version.ts index 001e6fb49..10d9d81b2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -6,5 +6,5 @@ // If moved update release-please config // x-release-please-start-version -export const VERSION = '1.1.1'; +export const VERSION = '1.1.2'; // x-release-please-end