@hypothesi/tauri-plugin-mcp-bridge 0.11.1 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.12.0] - 2026-07-05
11
+
12
+ ### Added
13
+ - `get_backend_state` now returns the host process `cwd`, so MCP clients can tell apart apps running from different worktrees.
14
+
15
+ ### Fixed
16
+ - Do not log expected mid-handshake disconnects as errors.
17
+
18
+ ## [0.11.2] - 2026-05-19
19
+
20
+ ### Fixed
21
+ - Avoid bringing macOS Tauri windows to the front during JS eval and script injection; screenshot capture only foregrounds a fully occluded window unless `TAURI_MCP_NO_FOREGROUND` is set
22
+ - Log macOS screenshot capture failure modes
23
+
10
24
  ## [0.11.1] - 2026-04-25
11
25
 
12
26
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypothesi/tauri-plugin-mcp-bridge",
3
- "version": "0.11.1",
3
+ "version": "0.12.0",
4
4
  "description": "A Tauri plugin that exposes an MCP server interface via WebSockets.",
5
5
  "type": "module",
6
6
  "main": "./dist-js/index.js",