Skip to content

Commit

Permalink
Update rbx_dom_weak changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethloeffler committed Oct 30, 2024
1 parent 70e8cd2 commit 77e6ac7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions rbx_dom_weak/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ where
V: Into<Variant>,
I: IntoIterator<Item = (K, V)>,
```
* Started using [ahash](https://docs.rs/ustr/latest/ustr/) for hash maps, consequently changing the signature of `WeakDom::into_raw` from
```rust
pub fn into_raw(self) -> (Ref, HashMap<Ref, Instance, RandomState>) {
```
to
```rust
pub fn into_raw(self) -> (Ref, HashMap<Ref, Instance, ahash::RandomState>) {
```

### Other changes
* Added `UstrMapExt`, a helper trait providing convenience methods `UstrMap::new` and `UstrMap::with_capacity`.
Expand Down

0 comments on commit 77e6ac7

Please sign in to comment.