Skip to content

Commit

Permalink
Update CHANGELOG with new TryFromJsValue trait fix
Browse files Browse the repository at this point in the history
The updated CHANGELOG reflects the recent bug fix in wasm-bindgen. It used to force auto-derivation of the TryFrom trait for any struct, but now it will respect the use of custom TryFrom<JsValue> implementations by adopting the new TryFromJsValue trait instead.
  • Loading branch information
biryukovmaxim committed Nov 16, 2023
1 parent 7b9c960 commit 135407a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

* The DWARF section is now correctly modified instead of leaving it in a broken state.
[#3483](https://github.com/rustwasm/wasm-bindgen/pull/3483)
* Custom TryFromJsValue Trait: Fixed an issue where #[wasm_bindgen] automatically derived the TryFrom trait for any struct, preventing custom TryFrom<JsValue> implementations. The wasm-bindgen derive macro has been updated to utilize the new TryFromJsValue trait. [#3709](https://github.com/rustwasm/wasm-bindgen/pull/3709)


## [0.2.88](https://github.com/rustwasm/wasm-bindgen/compare/0.2.87...0.2.88)

Expand Down

0 comments on commit 135407a

Please sign in to comment.