Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down