diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f846aa..0586bce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.9.8] - 2026-07-02 +## [0.9.10] - 2026-07-10 + +### Added +- `--auto-profile` option to automatically pick and reuse a profile folder based on the Firefox binary path, reducing the risk of mixing profiles across Nightly/Beta/Release +- `mcpb` build target for packaging the MCP server as a `.mcpb` bundle +- Secondary plugin to help troubleshoot installation issues + +### Fixed +- Server version and name are now correctly set at build time + +### Docs +- Added Cowork plugin installation steps, including the node/npm dependency note and a screenshot + +## [0.9.9] - 2026-07-02 ### Updated - Removed strict plugin versioning, plugin should always update to the latest sha diff --git a/manifest.json b/manifest.json index 9f78f46..6dd3d5c 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": "0.3", "name": "firefox-devtools-mcp", "display_name": "Firefox DevTools MCP", - "version": "0.9.9", + "version": "0.9.10", "description": "Control Firefox for browsing, web testing, and debugging. Fill forms, capture network and console activity, take screenshots, run scripts, and profile performance. Supports Android devices.", "author": { "name": "Mozilla", diff --git a/package-lock.json b/package-lock.json index 7149db6..61a0bf8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mozilla/firefox-devtools-mcp", - "version": "0.9.9", + "version": "0.9.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mozilla/firefox-devtools-mcp", - "version": "0.9.9", + "version": "0.9.10", "license": "MIT OR Apache-2.0", "dependencies": { "@modelcontextprotocol/sdk": "1.29.0", diff --git a/package.json b/package.json index 61252aa..0016d5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mozilla/firefox-devtools-mcp", - "version": "0.9.9", + "version": "0.9.10", "description": "Model Context Protocol (MCP) server for Firefox DevTools automation", "author": "Mozilla", "license": "MIT OR Apache-2.0",