juce-webview-agent-bridge 0.5.0 → 0.5.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.
- package/CHANGELOG.md +19 -1
- package/README.md +1 -1
- package/package.json +1 -1
- package/tools/shared.mjs +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ commit comparisons are available from the linked GitHub Releases.
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.5.1] - 2026-07-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- The error raised when the host's module lacks a required op no longer tells
|
|
13
|
+
you to bump a `FetchContent` `GIT_TAG`. Projects that embed the module as a
|
|
14
|
+
git submodule or a vendored copy have no such pin, so the advice sent them
|
|
15
|
+
looking for something their build does not contain.
|
|
16
|
+
- `scripts/release.sh` now refuses to release until `CHANGELOG.md` documents the
|
|
17
|
+
version being released, checked before it modifies anything. v0.5.0 shipped
|
|
18
|
+
with its entries still under `[Unreleased]` and comparison links pointing at
|
|
19
|
+
the previous release; every other release step was already self-verifying.
|
|
20
|
+
The release runbook is now written up in `docs/releasing.md`.
|
|
21
|
+
|
|
22
|
+
## [0.5.0] - 2026-07-19
|
|
23
|
+
|
|
8
24
|
### Added
|
|
9
25
|
|
|
10
26
|
- The `hello` reply now reports `moduleVersion`, the version of the C++ module
|
|
@@ -115,7 +131,9 @@ There are no package API changes in this release.
|
|
|
115
131
|
- Zero-dependency CLI, Playwright-shaped E2E client, agent skill, and standalone
|
|
116
132
|
JavaScript and C++ test suites.
|
|
117
133
|
|
|
118
|
-
[Unreleased]: https://github.com/mateusz28011/juce-webview-agent-bridge/compare/v0.
|
|
134
|
+
[Unreleased]: https://github.com/mateusz28011/juce-webview-agent-bridge/compare/v0.5.1...HEAD
|
|
135
|
+
[0.5.1]: https://github.com/mateusz28011/juce-webview-agent-bridge/releases/tag/v0.5.1
|
|
136
|
+
[0.5.0]: https://github.com/mateusz28011/juce-webview-agent-bridge/releases/tag/v0.5.0
|
|
119
137
|
[0.4.0]: https://github.com/mateusz28011/juce-webview-agent-bridge/releases/tag/v0.4.0
|
|
120
138
|
[0.3.1]: https://github.com/mateusz28011/juce-webview-agent-bridge/releases/tag/v0.3.1
|
|
121
139
|
[0.3.0]: https://github.com/mateusz28011/juce-webview-agent-bridge/releases/tag/v0.3.0
|
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ or with CMake `FetchContent` (after JUCE has been added, so
|
|
|
89
89
|
include(FetchContent)
|
|
90
90
|
FetchContent_Declare(juce_webview_agent_bridge
|
|
91
91
|
GIT_REPOSITORY https://github.com/mateusz28011/juce-webview-agent-bridge.git
|
|
92
|
-
GIT_TAG v0.5.
|
|
92
|
+
GIT_TAG v0.5.1)
|
|
93
93
|
FetchContent_MakeAvailable(juce_webview_agent_bridge)
|
|
94
94
|
```
|
|
95
95
|
|
package/package.json
CHANGED
package/tools/shared.mjs
CHANGED
|
@@ -79,8 +79,9 @@ export function requireOp(caps, op, api) {
|
|
|
79
79
|
if (caps === null || caps.ops.includes(op))
|
|
80
80
|
return; // null = handshake unavailable; stay out of the way
|
|
81
81
|
throw new Error(`${api} needs the "${op}" op, which the host's juce_webview_agent_bridge module does not provide. `
|
|
82
|
-
+ `The plugin was built against an older module than this client expects —
|
|
83
|
-
+ `
|
|
82
|
+
+ `The plugin was built against an older module than this client expects — update the module it `
|
|
83
|
+
+ `builds against (FetchContent pin, git submodule, or vendored copy) and rebuild the plugin.`
|
|
84
|
+
+ `\n ${describePairing(caps)}\n host ops: ${caps.ops.join(', ')}`);
|
|
84
85
|
}
|
|
85
86
|
/** Locate a running bridge's {port, token}.
|
|
86
87
|
* The host writes them on start so clients never guess: each instance registers
|