@hypothesi/tauri-plugin-mcp-bridge 0.9.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.
- package/CHANGELOG.md +15 -0
- package/package.json +2 -2
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.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
|
+
|
|
21
|
+
## [0.10.0] - 2026-03-16
|
|
22
|
+
|
|
23
|
+
_No changes to this package._
|
|
24
|
+
|
|
10
25
|
## [0.9.0] - 2026-02-20
|
|
11
26
|
|
|
12
27
|
### Added
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hypothesi/tauri-plugin-mcp-bridge",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
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",
|