From ab26d704cfe54e008c504de91cebca849083cfc9 Mon Sep 17 00:00:00 2001 From: Micah Date: Thu, 12 Dec 2024 15:24:17 -0800 Subject: [PATCH] Update changelog --- rbx_dom_weak/CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rbx_dom_weak/CHANGELOG.md b/rbx_dom_weak/CHANGELOG.md index 74f6ba2f..c568767e 100644 --- a/rbx_dom_weak/CHANGELOG.md +++ b/rbx_dom_weak/CHANGELOG.md @@ -102,11 +102,13 @@ pub fn into_raw(self) -> (Ref, AHashMap) { * Added `HashMapExt`, a helper trait providing convenience methods `UstrMap::new`, `UstrMap::with_capacity`, `AHashMap::new`, and `AHashMap::with_capacity`. * Added re-exports for `AHashMap`. * Added re-exports for `ustr` (a convenience function for creating `Ustr`s), `Ustr`, `UstrMap`, and `UstrSet`. -* Added `InstanceBuilder::with_property_capacity`, which can preallocate an `InstanceBuilder`'s property table. [#464] -* Added `WeakDom::reserve`, which can preallocate additional space for instances in the `WeakDom`. [#465] +* Added `InstanceBuilder::with_property_capacity`, which can preallocate an `InstanceBuilder`'s property table. ([#464]) +* Added `WeakDom::reserve`, which can preallocate additional space for instances in the `WeakDom`. ([#465]) +* Added `WeakDom::from_raw` to provide the inverse for `WeakDom::into_raw`. ([#482]) [#465]: https://github.com/rojo-rbx/rbx-dom/pull/465 [#464]: https://github.com/rojo-rbx/rbx-dom/pull/464 +[#482]: https://github.com/rojo-rbx/rbx-dom/pull/482 ## 2.9.0 (2024-08-22) * Added `WeakDom::descendants` and `WeakDom::descendants_of` to support iterating through the descendants of a DOM. ([#431])