Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.0.5 Python Client; 1.0.1-rc.3 Deno Client; 0.3.2 binary -- 2026-05-25

Binary

- Fixed `loadHtml` failing when the HTML payload contained characters requiring JSON escaping such as `"`, `\`, newlines, or control characters (#203)
- Refactored stdin JSON parsing to use `serde_json`'s streaming `Deserializer` directly; removes the `actson` dependency

Python Client

- Updated webview binary to 0.3.2

Deno Client

- Updated webview binary to 0.3.2

## 0.0.4 Python Client; 1.0.1-rc.2 Deno Client; 0.3.1 binary -- 2025-03-05

- Fixed a bug that caused webview to fail to open on linux
Expand Down
32 changes: 1 addition & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webview"
version = "0.3.0"
version = "0.3.2"
edition = "2021"

[profile.release]
Expand All @@ -16,7 +16,6 @@ tao = "0.33.0"
wry = "0.51.0"
schemars = "0.8.21"
parking_lot = "0.12"
actson = "2.0.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

Expand Down
2 changes: 1 addition & 1 deletion src/clients/deno/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@justbe/webview",
"exports": "./main.ts",
"license": "MIT",
"version": "1.0.1-rc.2",
"version": "1.0.1-rc.3",
"publish": {
"include": ["README.md", "LICENSE", "*.ts", "schemas/*.ts"]
},
Expand Down
2 changes: 1 addition & 1 deletion src/clients/deno/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ if (

// Should match the cargo package version
/** The version of the webview binary that's expected */
export const BIN_VERSION = "0.3.1";
export const BIN_VERSION = "0.3.2";

type WebViewNotification = Extract<
Message,
Expand Down
2 changes: 1 addition & 1 deletion src/clients/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "justbe-webview"
version = "0.0.4"
version = "0.0.5"
description = "A simple webview client"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion src/clients/python/src/justbe_webview/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
)

# Constants
BIN_VERSION = "0.3.1"
BIN_VERSION = "0.3.2"

T = TypeVar("T", bound=WebViewNotification)

Expand Down
Loading
Loading