11Change Log
22----------
33
4+ 1.2
5+ ~~~
6+
7+ Unreleased yet
8+
9+ Features:
10+
11+ * Add support for the ``<wbr> `` element in the sanitizer, `which indicates
12+ a line break opportunity <https://html.spec.whatwg.org/#the-wbr-element> `_.
13+ This element is allowed by default. (#395) (Thank you, Tom Most!)
14+ * Add support for serializing the ``<ol reversed> `` boolean attribute. (Thank
15+ you, Tom Most!) (#396)
16+ * The ``<ol reversed> `` and ``<ol start> `` attributes are now permitted by the
17+ sanitizer. (#321) (Thank you, Tom Most!)
18+
19+ Bug fixes:
20+
21+ * The sanitizer now permits ``<summary> `` tags. It used to allow ``<details> ``
22+ already. (#423)
23+
24+ 1.1
25+ ~~~
26+
27+ Released on June 23, 2020
28+
29+ Breaking changes:
30+
31+ * Drop support for Python 3.3. (#358)
32+ * Drop support for Python 3.4. (#421)
33+
34+ Deprecations:
35+
36+ * Deprecate the ``html5lib `` sanitizer (``html5lib.serialize(sanitize=True) `` and
37+ ``html5lib.filters.sanitizer ``). We recommend users migrate to `Bleach
38+ <https://github.com/mozilla/bleach> `. Please let us know if Bleach doesn't suffice for your
39+ use. (#443)
40+
<
1004E
code>41 + Other changes:
42+
43+ * Try to import from ``collections.abc `` to remove DeprecationWarning and ensure
44+ ``html5lib `` keeps working in future Python versions. (#403)
45+ * Drop optional ``datrie `` dependency. (#442)
46+
4471.0.1
548~~~~~
649
@@ -20,7 +63,7 @@ Features:
2063* Support Python 3.6. (#333) (Thank you, Jon Dufresne!)
2164* Add CI support for Windows using AppVeyor. (Thank you, John Vandenberg!)
2265* Improve testing and CI and add code coverage (#323, #334), (Thank you, Jon
23- Dufresne, John Vandenberg, Geoffrey Sneddon, Will Kahn-Greene!)
66+ Dufresne, John Vandenberg, Sam Sneddon, Will Kahn-Greene!)
2467* Semver-compliant version number.
2568
2669Bug fixes:
@@ -73,7 +116,7 @@ Released on July 14, 2016
73116 tested, doesn't entirely work, and as far as I can tell is
74117 completely unused by anyone. **
75118
76- * Move testsuite to ``py.test ``.
119+ * Move testsuite to ``pytest ``.
77120
78121* **Fix #124: move to webencodings for decoding the input byte stream;
79122 this makes html5lib compliant with the Encoding Standard, and
0 commit comments