Releases: cloudflare/lol-html
Releases · cloudflare/lol-html
v2.0.0
v1.1.1
v1.1.0
v1.0.1
v1.0.0
Yes, you got that right: this is the first 1.x release! From now on you should expect this project to adhere to
the semantic versioning spec (we have been somewhat relaxed about that in the past).
Added
- Added
Element::end_tag_handlers()
which allows better control over the end tag handlers.
Changed
- Removed
Element::on_end_tag()
andElement::add_on_end_tag()
in favor of the newly added
Element::end_tag_handlers()
.
v0.4.0
Added
- Added method
TextChunk::as_mut_str()
andTextChunk::set_str()
for in-place modifications to the text in a
TextChunk
. (#175)
Changed
- Modified method
Element::on_end_tag()
to support multiple handlers. This is a breaking change since the old
semantics of the method was to overwrite any previously set handler. (#177)