bleach v5.0.1 Release Notes
Release Date: 2022-06-27 // over 2 years ago-
๐ Bugs
โ Add missing comma to tinycss2 require. Thank you, @shadchin!
โ Add url parse tests based on wpt url tests. (#688)
๐ Support scheme-less urls if "https" is in allow list. (#662)
๐ Handle escaping
<
in edge cases where it doesn't start a tag. (#544)๐ Fix reference warnings in docs. (#660)
Correctly urlencode email address parts. Thank you, @larseggert! (#659)
Previous changes from v5.0.0
-
Backwards incompatible changes
clean
andlinkify
now preserve the order of HTML attributes. Thank you, @askoretskly! (#566)โฌ๏ธ Drop support for Python 3.6. Thank you, @hugovk! (#629)
๐ CSS sanitization in style tags is completely different now. If you're using Bleach
clean
to sanitize css in style tags, you'll need to update your code and you'll need to install thecss
extras::pip install 'bleach[css]'
See
the documentation on sanitizing CSS for how to do it <https://bleach.readthedocs.io/en/latest/clean.html#sanitizing-css>
_. (#633)๐ Bug fixes
- Rework dev dependencies. We no longer have
requirements-dev.in
/requirements-dev.txt
. Instead, we're usingdev
extras.
See
development docs <https://bleach.readthedocs.io/en/latest/dev.html>
_ for more details. (#620)- โ Add newline when dropping block-level tags. Thank you, @jvanasco! (#369)