|
1 | 1 | Change Log |
2 | 2 | ---------- |
3 | 3 |
|
4 | | -0.9999 |
5 | | -~~~~~~ |
| 4 | +* Added the seamless attribute for iframes. |
| 5 | + |
| 6 | +0.999999999/1.0b10 |
| 7 | +~~~~~~~~~~~~~~~~~~ |
| 8 | + |
| 9 | +Released on July 15, 2016 |
| 10 | + |
| 11 | +* Fix attribute order going to the tree builder to be document order |
| 12 | + instead of reverse document order(!). |
| 13 | + |
| 14 | + |
| 15 | +0.99999999/1.0b9 |
| 16 | +~~~~~~~~~~~~~~~~ |
| 17 | + |
| 18 | +Released on July 14, 2016 |
| 19 | + |
| 20 | +* **Added ordereddict as a mandatory dependency on Python 2.6.** |
| 21 | + |
| 22 | +* Added ``lxml``, ``genshi``, ``datrie``, ``charade``, and ``all`` |
| 23 | + extras that will do the right thing based on the specific |
| 24 | + interpreter implementation. |
| 25 | + |
| 26 | +* Now requires the ``mock`` package for the testsuite. |
| 27 | + |
| 28 | +* Cease supporting DATrie under PyPy. |
| 29 | + |
| 30 | +* **Remove ``PullDOM`` support, as this hasn't ever been properly |
| 31 | + tested, doesn't entirely work, and as far as I can tell is |
| 32 | + completely unused by anyone.** |
| 33 | + |
| 34 | +* Move testsuite to ``py.test``. |
| 35 | + |
| 36 | +* **Fix #124: move to webencodings for decoding the input byte stream; |
| 37 | + this makes html5lib compliant with the Encoding Standard, and |
| 38 | + introduces a required dependency on webencodings.** |
| 39 | + |
| 40 | +* **Cease supporting Python 3.2 (in both CPython and PyPy forms).** |
| 41 | + |
| 42 | +* **Fix comments containing double-dash with lxml 3.5 and above.** |
| 43 | + |
| 44 | +* **Use scripting disabled by default (as we don't implement |
| 45 | + scripting).** |
| 46 | + |
| 47 | +* **Fix #11, avoiding the XSS bug potentially caused by serializer |
| 48 | + allowing attribute values to be escaped out of in old browser versions, |
| 49 | + changing the quote_attr_values option on serializer to take one of |
| 50 | + three values, "always" (the old True value), "legacy" (the new option, |
| 51 | + and the new default), and "spec" (the old False value, and the old |
| 52 | + default).** |
| 53 | + |
| 54 | +* **Fix #72 by rewriting the sanitizer to apply only to treewalkers |
| 55 | + (instead of the tokenizer); as such, this will require amending all |
| 56 | + callers of it to use it via the treewalker API.** |
| 57 | + |
| 58 | +* **Drop support of charade, now that chardet is supported once more.** |
| 59 | + |
| 60 | +* **Replace the charset keyword argument on parse and related methods |
| 61 | + with a set of keyword arguments: override_encoding, transport_encoding, |
| 62 | + same_origin_parent_encoding, likely_encoding, and default_encoding.** |
| 63 | + |
| 64 | +* **Move filters._base, treebuilder._base, and treewalkers._base to .base |
| 65 | + to clarify their status as public.** |
| 66 | + |
| 67 | +* **Get rid of the sanitizer package. Merge sanitizer.sanitize into the |
| 68 | + sanitizer.htmlsanitizer module and move that to saniziter. This means |
| 69 | + anyone who used sanitizer.sanitize or sanitizer.HTMLSanitizer needs no |
| 70 | + code changes.** |
| 71 | + |
| 72 | +* **Rename treewalkers.lxmletree to .etree_lxml and |
| 73 | + treewalkers.genshistream to .genshi to have a consistent API.** |
| 74 | + |
| 75 | +* Move a whole load of stuff (inputstream, ihatexml, trie, tokenizer, |
| 76 | + utils) to be underscore prefixed to clarify their status as private. |
| 77 | + |
| 78 | + |
| 79 | +0.9999999/1.0b8 |
| 80 | +~~~~~~~~~~~~~~~ |
| 81 | + |
| 82 | +Released on September 10, 2015 |
| 83 | + |
| 84 | +* Fix #195: fix the sanitizer to drop broken URLs (it threw an |
| 85 | + exception between 0.9999 and 0.999999). |
| 86 | + |
| 87 | + |
| 88 | +0.999999/1.0b7 |
| 89 | +~~~~~~~~~~~~~~ |
| 90 | + |
| 91 | +Released on July 7, 2015 |
| 92 | + |
| 93 | +* Fix #189: fix the sanitizer to allow relative URLs again (as it did |
| 94 | + prior to 0.9999/1.0b5). |
| 95 | + |
| 96 | + |
| 97 | +0.99999/1.0b6 |
| 98 | +~~~~~~~~~~~~~ |
| 99 | + |
| 100 | +Released on April 30, 2015 |
| 101 | + |
| 102 | +* Fix #188: fix the sanitizer to not throw an exception when sanitizing |
| 103 | + bogus data URLs. |
| 104 | + |
| 105 | + |
| 106 | +0.9999/1.0b5 |
| 107 | +~~~~~~~~~~~~ |
| 108 | + |
| 109 | +Released on April 29, 2015 |
| 110 | + |
| 111 | +* Fix #153: Sanitizer fails to treat some attributes as URLs. Despite how |
| 112 | + this sounds, this has no known security implications. No known version |
| 113 | + of IE (5.5 to current), Firefox (3 to current), Safari (6 to current), |
| 114 | + Chrome (1 to current), or Opera (12 to current) will run any script |
| 115 | + provided in these attributes. |
| 116 | + |
| 117 | +* Pass error message to the ParseError exception in strict parsing mode. |
| 118 | + |
| 119 | +* Allow data URIs in the sanitizer, with a whitelist of content-types. |
| 120 | + |
| 121 | +* Add support for Python implementations that don't support lone |
| 122 | + surrogates (read: Jython). Fixes #2. |
| 123 | + |
| 124 | +* Remove localization of error messages. This functionality was totally |
| 125 | + unused (and untested that everything was localizable), so we may as |
| 126 | + well follow numerous browsers in not supporting translating technical |
| 127 | + strings. |
6 | 128 |
|
7 | | -Released on XXX, 2014 |
| 129 | +* Expose treewalkers.pprint as a public API. |
8 | 130 |
|
9 | | -* Fix #XXX: added the seamless attribute for iframes. |
| 131 | +* Add a documentEncoding property to HTML5Parser, fix #121. |
10 | 132 |
|
11 | 133 |
|
12 | 134 | 0.999 |
@@ -126,7 +248,7 @@ Released on May 17, 2013 |
126 | 248 |
|
127 | 249 | * Test harness has been improved and now depends on ``nose``. |
128 | 250 |
|
129 | | -* Documentation updated and moved to http://html5lib.readthedocs.org/. |
| 251 | +* Documentation updated and moved to https://html5lib.readthedocs.io/. |
130 | 252 |
|
131 | 253 |
|
132 | 254 | 0.95 |
|
0 commit comments