eftafmo / dataviz

Data visualisation website for EEA & Norway grants
https://data.eeagrants.org
1 stars 3 forks source link

Pin bleach to latest version 4.1.0 #618

Closed pyup-bot closed 2 years ago

pyup-bot commented 3 years ago

This PR pins bleach to the latest release 4.1.0.

Changelog ### 4.1.0 ``` --------------------------------- **Features** * Python 3.9 support **Bug fixes** * Update sanitizer clean to use vendored 3.6.14 stdlib urllib.parse to fix test failures on Python 3.9 536 ``` ### 4.0.0 ``` -------------------------------- **Backwards incompatible changes** * Drop support for unsupported Python versions <3.6 520 **Security fixes** None **Features** * fix attribute name in the linkify docs (thanks CheesyFeet!) ``` ### 3.3.1 ``` ------------------------------- **Security fixes** None **Features** * add more tests for CVE-2021-23980 / GHSA-vv2x-vrpj-qqpq * bump python version to 3.8 for tox doc, vendorverify, and lint targets * update bug report template tag * update vendorverify script to detect and fail when extra files are vendored * update release process docs to check vendorverify passes locally **Bug fixes** * remove extra vendored django present in the v3.3.0 whl 595 * duplicate h1 header doc fix (thanks Nguyễn Gia Phong / McSinyx!) ``` ### 3.3.0 ``` ---------------------------------- **Backwards incompatible changes** * clean escapes HTML comments even when strip_comments=False **Security fixes** * Fix bug 1621692 / GHSA-m6xf-fq7q-8743. See the advisory for details. **Features** None **Bug fixes** None ``` ### 3.2.3 ``` ---------------------------------- **Security fixes** None **Features** None **Bug fixes** * fix clean and linkify raising ValueErrors for certain inputs. Thank you Google-Autofuzz. ``` ### 3.2.2 ``` ---------------------------------- **Security fixes** None **Features** * Migrate CI to Github Actions. Thank you hugovk. **Bug fixes** * fix linkify raising an IndexError on certain inputs. Thank you Google-Autofuzz. ``` ### 3.2.1 ``` ------------------------------------ **Security fixes** None **Features** None **Bug fixes** * change linkifier to add rel="nofollow" as documented. Thank you mitar. * suppress html5lib sanitizer DeprecationWarnings 557 ``` ### 3.2.0 ``` ------------------------------------ **Security fixes** None **Features** None **Bug fixes** * ``html5lib`` dependency to version 1.1.0. Thank you Sam Sneddon. * update tests_website terminology. Thank you Thomas Grainger. ``` ### 3.1.5 ``` -------------------------------- **Security fixes** None **Features** None **Bug fixes** * replace missing ``setuptools`` dependency with ``packaging``. Thank you Benjamin Peterson. ``` ### 3.1.4 ``` -------------------------------- **Security fixes** * ``bleach.clean`` behavior parsing style attributes could result in a regular expression denial of service (ReDoS). Calls to ``bleach.clean`` with an allowed tag with an allowed ``style`` attribute were vulnerable to ReDoS. For example, ``bleach.clean(..., attributes={'a': ['style']})``. This issue was confirmed in Bleach versions v3.1.3, v3.1.2, v3.1.1, v3.1.0, v3.0.0, v2.1.4, and v2.1.3. Earlier versions used a similar regular expression and should be considered vulnerable too. Anyone using Bleach <=v3.1.3 is encouraged to upgrade. https://bugzilla.mozilla.org/show_bug.cgi?id=1623633 **Backwards incompatible changes** * Style attributes with dashes, or single or double quoted values are cleaned instead of passed through. **Features** None **Bug fixes** None ``` ### 3.1.3 ``` -------------------------------- **Security fixes** None **Backwards incompatible changes** None **Features** * Add relative link to code of conduct. (442) * Drop deprecated 'setup.py test' support. (507) * Fix typo: curren -> current in tests/test_clean.py (504) * Test on PyPy 7 * Drop test support for end of life Python 3.4 **Bug fixes** None ``` ### 3.1.2 ``` -------------------------------- **Security fixes** * ``bleach.clean`` behavior parsing embedded MathML and SVG content with RCDATA tags did not match browser behavior and could result in a mutation XSS. Calls to ``bleach.clean`` with ``strip=False`` and ``math`` or ``svg`` tags and one or more of the RCDATA tags ``script``, ``noscript``, ``style``, ``noframes``, ``iframe``, ``noembed``, or ``xmp`` in the allowed tags whitelist were vulnerable to a mutation XSS. This security issue was confirmed in Bleach version v3.1.1. Earlier versions are likely affected too. Anyone using Bleach <=v3.1.1 is encouraged to upgrade. https://bugzilla.mozilla.org/show_bug.cgi?id=1621692 **Backwards incompatible changes** None **Features** None **Bug fixes** None ``` ### 3.1.1 ``` ----------------------------------- **Security fixes** * ``bleach.clean`` behavior parsing ``noscript`` tags did not match browser behavior. Calls to ``bleach.clean`` allowing ``noscript`` and one or more of the raw text tags (``title``, ``textarea``, ``script``, ``style``, ``noembed``, ``noframes``, ``iframe``, and ``xmp``) were vulnerable to a mutation XSS. This security issue was confirmed in Bleach versions v2.1.4, v3.0.2, and v3.1.0. Earlier versions are probably affected too. Anyone using Bleach <=v3.1.0 is highly encouraged to upgrade. https://bugzilla.mozilla.org/show_bug.cgi?id=1615315 **Backwards incompatible changes** None **Features** None **Bug fixes** None ``` ### 3.1.0 ``` --------------------------------- **Security fixes** None **Backwards incompatible changes** None **Features** * Add ``recognized_tags`` argument to the linkify ``Linker`` class. This fixes issues when linkifying on its own and having some tags get escaped. It defaults to a list of HTML5 tags. Thank you, Chad Birch! (409) **Bug fixes** * Add ``six>=1.9`` to requirements. Thank you, Dave Shawley (416) * Fix cases where attribute names could have invalid characters in them. (419) * Fix problems with ``LinkifyFilter`` not being able to match links across ``&amp;``. (422) * Fix ``InputStreamWithMemory`` when the ``BleachHTMLParser`` is parsing ``meta`` tags. (431) * Fix doctests. (357) ``` ### 3.0.2 ``` ---------------------------------- **Security fixes** None **Backwards incompatible changes** None **Features** None **Bug fixes** * Merge ``Characters`` tokens after sanitizing them. This fixes issues in the ``LinkifyFilter`` where it was only linkifying parts of urls. (374) ``` ### 3.0.1 ``` --------------------------------- **Security fixes** None **Backwards incompatible changes** None **Features** * Support Python 3.7. It supported Python 3.7 just fine, but we added 3.7 to the list of Python environments we test so this is now officially supported. (377) **Bug fixes** * Fix ``list`` object has no attribute ``lower`` in ``clean``. (398) * Fix ``abbr`` getting escaped in ``linkify``. (400) ``` ### 3.0.0 ``` --------------------------------- **Security fixes** None **Backwards incompatible changes** * A bunch of functions were moved from one module to another. These were moved from ``bleach.sanitizer`` to ``bleach.html5lib_shim``: * ``convert_entity`` * ``convert_entities`` * ``match_entity`` * ``next_possible_entity`` * ``BleachHTMLSerializer`` * ``BleachHTMLTokenizer`` * ``BleachHTMLParser`` These functions and classes weren't documented and aren't part of the public API, but people read code and might be using them so we're considering it an incompatible API change. If you're using them, you'll need to update your code. **Features** * Bleach no longer depends on html5lib. html5lib==1.0.1 is now vendored into Bleach. You can remove it from your requirements file if none of your other requirements require html5lib. This means Bleach will now work fine with other libraries that depend on html5lib regardless of what version of html5lib they require. (386) **Bug fixes** * Fixed tags getting added when using clean or linkify. This was a long-standing regression from the Bleach 2.0 rewrite. (280, 392) * Fixed ``<isindex>`` getting replaced with a string. Now it gets escaped or stripped depending on whether it's in the allowed tags or not. (279) ``` ### 2.1.4 ``` --------------------------------- **Security fixes** None **Backwards incompatible changes** * Dropped support for Python 3.3. (328) **Features** None **Bug fixes** * Handle ambiguous ampersands in correctly. (359) ``` ### 2.1.3 ``` ------------------------------- **Security fixes** * Attributes that have URI values weren't properly sanitized if the values contained character entities. Using character entities, it was possible to construct a URI value with a scheme that was not allowed that would slide through unsanitized. This security issue was introduced in Bleach 2.1. Anyone using Bleach 2.1 is highly encouraged to upgrade. https://bugzilla.mozilla.org/show_bug.cgi?id=1442745 **Backwards incompatible changes** None **Features** None **Bug fixes** * Fixed some other edge cases for attribute URI value sanitizing and improved testing of this code. ``` ### 2.1.2 ``` ---------------------------------- **Security fixes** None **Backwards incompatible changes** None **Features** None **Bug fixes** * Support html5lib-python 1.0.1. (337) * Add deprecation warning for supporting html5lib-python < 1.0. * Switch to semver. ``` ### 2.1.1 ``` --------------------------------- **Security fixes** None **Backwards incompatible changes** None **Features** None **Bug fixes** * Fix ``setup.py`` opening files when ``LANG=``. (324) ``` ### 2.1 ``` ---------------------------------- **Security fixes** * Convert control characters (backspace particularly) to "?" preventing malicious copy-and-paste situations. (298) See `<https://github.com/mozilla/bleach/issues/298>`_ for more details. This affects all previous versions of Bleach. Check the comments on that issue for ways to alleviate the issue if you can't upgrade to Bleach 2.1. **Backwards incompatible changes** * Redid versioning. ``bleach.VERSION`` is no longer available. Use the string version at ``bleach.__version__`` and parse it with ``pkg_resources.parse_version``. (307) * clean, linkify: linkify and clean should only accept text types; thank you, Janusz! (292) * clean, linkify: accept only unicode or utf-8-encoded str (176) **Features** **Bug fixes** * ``bleach.clean()`` no longer unescapes entities including ones that are missing a ``;`` at the end which can happen in urls and other places. (143) * linkify: fix http links inside of mailto links; thank you, sedrubal! (300) * clarify security policy in docs (303) * fix dependency specification for html5lib 1.0b8, 1.0b9, and 1.0b10; thank you, Zoltán! (268) * add Bleach vs. html5lib comparison to README; thank you, Stu Cox! (278) * fix KeyError exceptions on tags without href attr; thank you, Alex Defsen! (273) * add test website and scripts to test ``bleach.clean()`` output in browser; thank you, Greg Guthe! ``` ### 2.0 ``` ----------------------------- **Security fixes** * None **Backwards incompatible changes** * Removed support for Python 2.6. 206 * Removed support for Python 3.2. 224 * Bleach no longer supports html5lib < 0.99999999 (8 9s). This version is a rewrite to use the new sanitizing API since the old one was dropped in html5lib 0.99999999 (8 9s). If you're using 0.9999999 (7 9s) upgrade to 0.99999999 (8 9s) or higher. If you're using 1.0b8 (equivalent to 0.9999999 (7 9s)), upgrade to 1.0b9 (equivalent to 0.99999999 (8 9s)) or higher. * ``bleach.clean`` and friends were rewritten ``clean`` was reimplemented as an html5lib filter and happens at a different step in the HTML parsing -> traversing -> serializing process. Because of that, there are some differences in clean's output as compared with previous versions. Amongst other things, this version will add end tags even if the tag in question is to be escaped. * ``bleach.clean`` and friends attribute callables now take three arguments: tag, attribute name and attribute value. Previously they only took attribute name and attribute value. All attribute callables will need to be updated. * ``bleach.linkify`` was rewritten ``linkify`` was reimplemented as an html5lib Filter. As such, it no longer accepts a ``tokenizer`` argument. The callback functions for adjusting link attributes now takes a namespaced attribute. Previously you'd do something like this:: def check_protocol(attrs, is_new): if not attrs.get('href', '').startswith('http:', 'https:')): return None return attrs Now it's more like this:: def check_protocol(attrs, is_new): if not attrs.get((None, u'href'), u'').startswith(('http:', 'https:')): ^^^^^^^^^^^^^^^ return None return attrs Further, you need to make sure you're always using unicode values. If you don't then html5lib will raise an assertion error that the value is not unicode. All linkify filters will need to be updated. * ``bleach.linkify`` and friends had a ``skip_pre`` argument--that's been replaced with a more general ``skip_tags`` argument. Before, you might do:: bleach.linkify(some_text, skip_pre=True) The equivalent with Bleach 2.0 is:: bleach.linkify(some_text, skip_tags=['pre']) You can skip other tags, too, like ``style`` or ``script`` or other places where you don't want linkification happening. All uses of linkify that use ``skip_pre`` will need to be updated. **Changes** * Supports Python 3.6. * Supports html5lib >= 0.99999999 (8 9s). * There's a ``bleach.sanitizer.Cleaner`` class that you can instantiate with your favorite clean settings for easy reuse. * There's a ``bleach.linkifier.Linker`` class that you can instantiate with your favorite linkify settings for easy reuse. * There's a ``bleach.linkifier.LinkifyFilter`` which is an htm5lib filter that you can pass as a filter to ``bleach.sanitizer.Cleaner`` allowing you to clean and linkify in one pass. * ``bleach.clean`` and friends can now take a callable as an attributes arg value. * Tons of bug fixes. * Cleaned up tests. * Documentation fixes. ``` ### 1.5 ``` -------------------------------- **Security fixes** * None **Backwards incompatible changes** * clean: The list of ``ALLOWED_PROTOCOLS`` now defaults to http, https and mailto. Previously it was a long list of protocols something like ed2k, ftp, http, https, irc, mailto, news, gopher, nntp, telnet, webcal, xmpp, callto, feed, urn, aim, rsync, tag, ssh, sftp, rtsp, afs, data. 149 **Changes** * clean: Added ``protocols`` to arguments list to let you override the list of allowed protocols. Thank you, Andreas Malecki! 149 * linkify: Fix a bug involving periods at the end of an email address. Thank you, Lorenz Schori! 219 * linkify: Fix linkification of non-ascii ports. Thank you Alexandre, Macabies! 207 * linkify: Fix linkify inappropriately removing node tails when dropping nodes. 132 * Fixed a test that failed periodically. 161 * Switched from nose to py.test. 204 * Add test matrix for all supported Python and html5lib versions. 230 * Limit to html5lib ``>=0.999,!=0.9999,!=0.99999,<0.99999999`` because 0.9999 and 0.99999 are busted. * Add support for ``python setup.py test``. 97 ``` ### 1.4.3 ``` ------------------------------ **Security fixes** * None **Changes** * Limit to html5lib ``>=0.999,<0.99999999`` because of impending change to sanitizer api. 195 ``` ### 1.4.2 ``` ---------------------------------- **Changes** * linkify: Fix hang in linkify with ``parse_email=True``. 124 * linkify: Fix crash in linkify when removing a link that is a first-child. 136 * Updated TLDs. * linkify: Don't remove exterior brackets when linkifying. 146 ``` ### 1.4.1 ``` --------------------------------- **Changes** * Consistent order of attributes in output. * Python 3.4 support. ``` ### 1.4 ``` ------------------------------ **Changes** * linkify: Update linkify to use etree type Treewalker instead of simpletree. * Updated html5lib to version ``>=0.999``. * Update all code to be compatible with Python 3 and 2 using six. * Switch to Apache License. ``` ### 1.3 ``` ----------- * Used by Python 3-only fork. ``` ### 1.2.2 ``` ---------------------------- * Pin html5lib to version 0.95 for now due to major API break. ``` ### 1.2.1 ``` --------------------------------- * ``clean()`` no longer considers ``feed:`` an acceptable protocol due to inconsistencies in browser behavior. ``` ### 1.2 ``` ------------------------------ * ``linkify()`` has changed considerably. Many keyword arguments have been replaced with a single callbacks list. Please see the documentation for more information. * Bleach will no longer consider unacceptable protocols when linkifying. * ``linkify()`` now takes a tokenizer argument that allows it to skip sanitization. * ``delinkify()`` is gone. * Removed exception handling from ``_render``. ``clean()`` and ``linkify()`` may now throw. * ``linkify()`` correctly ignores case for protocols and domain names. * ``linkify()`` correctly handles markup within an <a> tag. ``` ### 1.1.5 ``` ------------- ``` ### 1.1.4 ``` ------------- ``` ### 1.1.3 ``` ----------------------------- * Fix parsing bare URLs when parse_email=True. ``` ### 1.1.2 ``` ---------------------------- * Fix hang in style attribute sanitizer. (61) * Allow ``/`` in style attribute values. ``` ### 1.1.1 ``` --------------------------------- * Fix tokenizer for html5lib 0.9.5. ``` ### 1.1.0 ``` -------------------------------- * ``linkify()`` now understands port numbers. (38) * Documented character encoding behavior. (41) * Add an optional target argument to ``linkify()``. * Add ``delinkify()`` method. (45) * Support subdomain whitelist for ``delinkify()``. (47, 48) ``` ### 1.0.4 ``` --------------------------------- * Switch to SemVer git tags. * Make ``linkify()`` smarter about trailing punctuation. (30) * Pass ``exc_info`` to logger during rendering issues. * Add wildcard key for attributes. (19) * Make ``linkify()`` use the ``HTMLSanitizer`` tokenizer. (36) * Fix URLs wrapped in parentheses. (23) * Make ``linkify()`` UTF-8 safe. (33) ``` ### 1.0.3 ``` ----------------------------- * ``linkify()`` works with 3rd level domains. (24) * ``clean()`` supports vendor prefixes in style values. (31, 32) * Fix ``linkify()`` email escaping. ``` ### 1.0.2 ``` ---------------------------- * ``linkify()`` supports email addresses. * ``clean()`` supports callables in attributes filter. ``` ### 1.0.1 ``` ------------------------------ * ``linkify()`` doesn't drop trailing slashes. (21) * ``linkify()`` won't linkify 'libgl.so.1'. (22) ```
Links - PyPI: https://pypi.org/project/bleach - Changelog: https://pyup.io/changelogs/bleach/ - Repo: https://github.com/mozilla/bleach - Docs: https://pythonhosted.org/bleach/