@hypothesi/tauri-plugin-mcp-bridge 0.10.0 → 0.11.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 +11 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.11.0] - 2026-04-07
11
+
12
+ ### Added
13
+ - Use native WKWebView evaluateJavaScript on macOS
14
+
15
+ ### Fixed
16
+ - Keep JS eval working when window is unfocused
17
+ - Handle null-prototype objects in captureLog
18
+ - Use Object.keys fallback for non-serializable objects
19
+ - Split overly long comment in bridge.js to fix ESLint max-len error
20
+
10
21
  ## [0.10.0] - 2026-03-16
11
22
 
12
23
  _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.0",
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",