@hypothesi/tauri-plugin-mcp-bridge 0.11.0 → 0.11.2

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 +15 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.11.2] - 2026-05-19
11
+
12
+ ### Fixed
13
+ - 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
14
+ - Log macOS screenshot capture failure modes
15
+
16
+ ## [0.11.1] - 2026-04-25
17
+
18
+ ### Changed
19
+ - Extract `prepare_window_for_eval` to a shared `utils` module
20
+ - Reduce duplication in `execute_js` and related command modules
21
+
22
+ ### Fixed
23
+ - Resolve lint and formatting errors in `script_injection` and `websocket` modules
24
+
10
25
  ## [0.11.0] - 2026-04-07
11
26
 
12
27
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypothesi/tauri-plugin-mcp-bridge",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
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",