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

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 +20 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.11.1] - 2026-04-25
11
+
12
+ ### Changed
13
+ - Extract `prepare_window_for_eval` to a shared `utils` module
14
+ - Reduce duplication in `execute_js` and related command modules
15
+
16
+ ### Fixed
17
+ - Resolve lint and formatting errors in `script_injection` and `websocket` modules
18
+
19
+ ## [0.11.0] - 2026-04-07
20
+
21
+ ### Added
22
+ - Use native WKWebView evaluateJavaScript on macOS
23
+
24
+ ### Fixed
25
+ - Keep JS eval working when window is unfocused
26
+ - Handle null-prototype objects in captureLog
27
+ - Use Object.keys fallback for non-serializable objects
28
+ - Split overly long comment in bridge.js to fix ESLint max-len error
29
+
10
30
  ## [0.10.0] - 2026-03-16
11
31
 
12
32
  _No changes to this package._
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hypothesi/tauri-plugin-mcp-bridge",
3
- "version": "0.10.0",
4
- "description": "JavaScript bindings for @hypothesi/tauri-plugin-mcp-bridge - MCP Bridge plugin for use with Tauri applications",
3
+ "version": "0.11.1",
4
+ "description": "A Tauri plugin that exposes an MCP server interface via WebSockets.",
5
5
  "type": "module",
6
6
  "main": "./dist-js/index.js",
7
7
  "types": "./dist-js/index.d.ts",