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
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
## wasm_split_helpers v0.2.3

- Propagate `debug_assertions` to the CLI with a new marker in the hidden `#[link_section]`.
- Propagate `reference-types` into the wasm binary. This removes a long-standing hack, and
should lead to cleaner binding code emitted from `wasm-bindgen`.

## wasm_split_cli v0.2.2

- Add a canary import to diagnose modules getting loaded from different compilation units.
This is enabled when the crate is compiled with `debug_assertions` enabled. Detection
of this is automatic when compiling against `wasm_split_helpers >= 0.2.3`.
- Fixed an error on nightly Rust related to zero-sized symbols past the defined data segments.
of this is automatic when compiling against `wasm_split_helpers >= 0.2.3`. (#40).
- Fixed an error on nightly Rust related to zero-sized symbols past the defined data
segments (#41).
- Fix: globally exposed data symbols are now exported with their relocated address (#42).

## wasm_split_helpers v0.2.2

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/wasm_split/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm_split_helpers"
version = "0.2.2"
version = "0.2.3"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm_split_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm_split_cli_support"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion examples/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ futures = "0.3.30"
gloo-console = "0.3.0"
gloo-net = { version = "0.3.1", default-features = false, features = ["http"] }
js-sys = "0.3.69"
wasm-bindgen = "=0.2.125"
wasm-bindgen = "=0.2.126"
wasm-bindgen-futures = "0.4.55"
wasm-streams = "0.4.0"
wasm_split_helpers = { workspace = true, optional = true }
Expand Down
38 changes: 19 additions & 19 deletions integration/Cargo.lock

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

2 changes: 1 addition & 1 deletion integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ publish = false

[workspace.dependencies]
wasm_split_helpers = { path = "../crates/wasm_split", version = "0.2.0" }
wasm-bindgen = "=0.2.125"
wasm-bindgen = "=0.2.126"
wasm-bindgen-futures = "0.4.55"
wasm-bindgen-test = "0.3.55"
tokio = { version = "1.48", features = ["rt", "macros"] }
34 changes: 17 additions & 17 deletions test-runner/Cargo.lock

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

2 changes: 1 addition & 1 deletion test-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false

[dependencies]
# this MUST be the same bindgen version as used on the tested artifact
wasm-bindgen-cli = { version = "=0.2.125", artifact = ["bin:wasm-bindgen-test-runner"] }
wasm-bindgen-cli = { version = "=0.2.126", artifact = ["bin:wasm-bindgen-test-runner"] }
wasm_split_cli_support = { path = "../crates/wasm_split_cli" }
eyre = "0.6.12"
tempfile = "3.27.0"
Expand Down