mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
2 KiB
2 KiB
virtual-dom-rs Changelog
Types of changes:
[added]
for new features.[changed]
for changes in existing functionality.[deprecated]
for once-stable features removed in upcoming releases.[removed]
for deprecated features removed in this release.[fixed]
for any bug fixes.[security]
to invite users to upgrade in case of vulnerabilities.
Not Yet Published
Here we list notable things that have been merged into the master branch but have not been released yet.
- [added] SVG support #104
- ...
0.6.9 - May 23, 2019
0.6.7 - Mar 16, 2019
- [fixed] Spacing between elements is done by inserting space before and after existing text nodes instead of creating new ones.
0.6.6 - Mar 6, 2019
- [fixed] Proper spacing in between text nodes and elements in most use cases PR
- Still need to address #98 and then we should have all cases handled.
0.6.5 - Mar 4, 2019
- [added] Start supporting braced text in the
html!
macro #96 - [removed] Removed the
text!
macro
let hello = "hello world";
html! { {hello} }
0.6.4 - Feb 24, 2019
- [fixed] Using the
html!
macro to create an event now uses the fully qualified path tostd::rc::Rc
- [added] Started adding key support. If a VirtualNode's key attribute changes it will lead to a
Replace
patch.
// example
html! { <div key="5"></div> }`;
0.6.1 - Feb 22, 2019
- [fixed] Fix DomUpdater not storing closures for nodes that were created during
Patch::AppendChildren
andPatch::Replace