From 95d4828d5afa7de6d2fcfec4055c2f92af4af016 Mon Sep 17 00:00:00 2001 From: Julian Descottes Date: Fri, 26 Jun 2026 16:41:21 +0200 Subject: [PATCH 1/2] chore: Use node24 for publish workflow --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 08da9cb..9dd3a28 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,10 +18,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v5 - - name: Use Node.js 22.x + - name: Use Node.js 24.x uses: actions/setup-node@v5 with: - node-version: 22 + node-version: 24 registry-url: 'https://registry.npmjs.org/' cache: 'npm' From bab886b533d6565c2fa2c33074ca295e994f01e0 Mon Sep 17 00:00:00 2001 From: Julian Descottes Date: Fri, 26 Jun 2026 16:44:21 +0200 Subject: [PATCH 2/2] chore: bump version to v0.9.6 --- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8a3720..aca3868 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.6] - 2026-06-26 + +### Added +- Profiler tools for Firefox 154+: `profiler_start`, `profiler_stop`, `profiler_is_active` +- Logpoint tools for non-breaking debugging: `enable_debugger`, `set_logpoint`, `remove_logpoint`, `get_logpoint_results` +- `get_firefox_info` now returns the Firefox version number +- `--log-file` CLI option to write MCP server logs to a file + +### Fixed +- Zombie geckodriver processes are now killed when Firefox is closed while the MCP server is running +- `remote.log.level` can now be set via `--pref` +- `app.update.disabledForTesting` is now forced to `true` when recommended preferences are disabled + ## [0.9.5] - 2026-06-11 ### Changed diff --git a/package.json b/package.json index 75bdc9b..90c6345 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mozilla/firefox-devtools-mcp", - "version": "0.9.5", + "version": "0.9.6", "description": "Model Context Protocol (MCP) server for Firefox DevTools automation", "author": "Mozilla", "license": "MIT OR Apache-2.0",