Hello community, here is the log from the commit of package python-bleach for openSUSE:Factory checked in at 2020-05-08 23:02:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-bleach (Old) and /work/SRC/openSUSE:Factory/.python-bleach.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-bleach" Fri May 8 23:02:04 2020 rev:11 rq:800583 version:3.1.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-bleach/python-bleach.changes 2020-04-05 20:51:52.177086435 +0200 +++ /work/SRC/openSUSE:Factory/.python-bleach.new.2738/python-bleach.changes 2020-05-08 23:02:09.297470434 +0200 @@ -1,0 +2,6 @@ +Wed May 6 07:12:54 UTC 2020 - Tomáš Chvátal <[email protected]> + +- Update to 3.1.5: + * * replace missing ``setuptools`` dependency with ``packaging``. Thank you Benjamin Peterson. + +------------------------------------------------------------------- Old: ---- bleach-3.1.4.tar.gz New: ---- bleach-3.1.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-bleach.spec ++++++ --- /var/tmp/diff_new_pack.94SedR/_old 2020-05-08 23:02:11.317474560 +0200 +++ /var/tmp/diff_new_pack.94SedR/_new 2020-05-08 23:02:11.321474568 +0200 @@ -19,23 +19,22 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-bleach -Version: 3.1.4 +Version: 3.1.5 Release: 0 Summary: A whitelist-based HTML-sanitizing tool License: Apache-2.0 -Group: Development/Languages/Python URL: https://github.com/jsocol/bleach Source: https://files.pythonhosted.org/packages/source/b/bleach/bleach-%{version}.tar.gz Patch0: de-vendor.patch BuildRequires: %{python_module html5lib >= 1.0.0} -# https://github.com/mozilla/bleach/issues/459 -BuildRequires: %{python_module pytest < 5.0} -BuildRequires: %{python_module pytest-runner >= 2.0} +BuildRequires: %{python_module packaging} +BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module six >= 1.9} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-html5lib >= 1.0.0 +Requires: python-packaging Requires: python-six >= 1.9 BuildArch: noarch %python_subpackages ++++++ bleach-3.1.4.tar.gz -> bleach-3.1.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/CHANGES new/bleach-3.1.5/CHANGES --- old/bleach-3.1.4/CHANGES 2020-03-26 15:36:36.000000000 +0100 +++ new/bleach-3.1.5/CHANGES 2020-04-29 20:26:09.000000000 +0200 @@ -1,6 +1,21 @@ Bleach changes ============== +Version 3.1.5 (April 29th, 2020) +-------------------------------- + +**Security fixes** + +None + +**Features** + +None + +**Bug fixes** + +* replace missing ``setuptools`` dependency with ``packaging``. Thank you Benjamin Peterson. + Version 3.1.4 (March 24th, 2020) -------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/CONTRIBUTORS new/bleach-3.1.5/CONTRIBUTORS --- old/bleach-3.1.4/CONTRIBUTORS 2020-03-17 16:26:03.000000000 +0100 +++ new/bleach-3.1.5/CONTRIBUTORS 2020-04-29 20:26:09.000000000 +0200 @@ -29,6 +29,7 @@ - Antoine Leclair - Anton Backer - Anton Kovalyov +- Benjamin Peterson - Chad Birch - Chris Beaven - Dan Gayle diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/PKG-INFO new/bleach-3.1.5/PKG-INFO --- old/bleach-3.1.4/PKG-INFO 2020-03-26 15:38:47.279794700 +0100 +++ new/bleach-3.1.5/PKG-INFO 2020-04-29 20:28:12.843282000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: bleach -Version: 3.1.4 +Version: 3.1.5 Summary: An easy safelist-based HTML-sanitizing tool. Home-page: https://github.com/mozilla/bleach Maintainer: Will Kahn-Greene @@ -124,6 +124,21 @@ Bleach changes ============== + Version 3.1.5 (April 29th, 2020) + -------------------------------- + + **Security fixes** + + None + + **Features** + + None + + **Bug fixes** + + * replace missing ``setuptools`` dependency with ``packaging``. Thank you Benjamin Peterson. + Version 3.1.4 (March 24th, 2020) -------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/bleach/__init__.py new/bleach-3.1.5/bleach/__init__.py --- old/bleach-3.1.4/bleach/__init__.py 2020-03-26 15:36:36.000000000 +0100 +++ new/bleach-3.1.5/bleach/__init__.py 2020-04-29 20:26:09.000000000 +0200 @@ -2,7 +2,7 @@ from __future__ import unicode_literals -from pkg_resources import parse_version +import packaging.version from bleach.linkifier import ( DEFAULT_CALLBACKS, @@ -18,10 +18,10 @@ # yyyymmdd -__releasedate__ = '20200324' +__releasedate__ = '20200429' # x.y.z or x.y.z.dev0 -- semver -__version__ = '3.1.4' -VERSION = parse_version(__version__) +__version__ = '3.1.5' +VERSION = packaging.version.Version(__version__) __all__ = ['clean', 'linkify'] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/bleach/sanitizer.py new/bleach-3.1.5/bleach/sanitizer.py --- old/bleach-3.1.4/bleach/sanitizer.py 2020-03-26 15:36:36.000000000 +0100 +++ new/bleach-3.1.5/bleach/sanitizer.py 2020-04-06 18:57:41.000000000 +0200 @@ -598,8 +598,8 @@ |\w-\w # 3 characters in the form \w-\w |'[\s\w]+'\s* # a single quoted string of [\s\w]+ with trailing space |"[\s\w]+" # a double quoted string of [\s\w]+ -|\([\d,%\.\s]+\) # a parenthesized string of one or more digits, commas, periods, percent signs, or whitespace e.g. from 'color: hsl(30,100%,50%)'' -)*$""", +|\([\d,%\.\s]+\) # a parenthesized string of one or more digits, commas, periods, ... +)*$""", # ... percent signs, or whitespace e.g. from 'color: hsl(30,100%,50%)' flags=re.U | re.VERBOSE ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/bleach.egg-info/PKG-INFO new/bleach-3.1.5/bleach.egg-info/PKG-INFO --- old/bleach-3.1.4/bleach.egg-info/PKG-INFO 2020-03-26 15:38:47.000000000 +0100 +++ new/bleach-3.1.5/bleach.egg-info/PKG-INFO 2020-04-29 20:28:12.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: bleach -Version: 3.1.4 +Version: 3.1.5 Summary: An easy safelist-based HTML-sanitizing tool. Home-page: https://github.com/mozilla/bleach Maintainer: Will Kahn-Greene @@ -124,6 +124,21 @@ Bleach changes ============== + Version 3.1.5 (April 29th, 2020) + -------------------------------- + + **Security fixes** + + None + + **Features** + + None + + **Bug fixes** + + * replace missing ``setuptools`` dependency with ``packaging``. Thank you Benjamin Peterson. + Version 3.1.4 (March 24th, 2020) -------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/bleach.egg-info/requires.txt new/bleach-3.1.5/bleach.egg-info/requires.txt --- old/bleach-3.1.4/bleach.egg-info/requires.txt 2020-03-26 15:38:47.000000000 +0100 +++ new/bleach-3.1.5/bleach.egg-info/requires.txt 2020-04-29 20:28:12.000000000 +0200 @@ -1,2 +1,3 @@ +packaging six>=1.9.0 webencodings diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bleach-3.1.4/setup.py new/bleach-3.1.5/setup.py --- old/bleach-3.1.4/setup.py 2020-03-17 16:26:03.000000000 +0100 +++ new/bleach-3.1.5/setup.py 2020-04-29 20:15:06.000000000 +0200 @@ -8,6 +8,7 @@ install_requires = [ + 'packaging', 'six>=1.9.0', # html5lib requirements 'webencodings',
