Hello community, here is the log from the commit of package python-Paste for openSUSE:Factory checked in at 2020-07-21 15:39:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-Paste (Old) and /work/SRC/openSUSE:Factory/.python-Paste.new.3592 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Paste" Tue Jul 21 15:39:53 2020 rev:28 rq:821422 version:3.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-Paste/python-Paste.changes 2020-03-29 14:25:05.246084141 +0200 +++ /work/SRC/openSUSE:Factory/.python-Paste.new.3592/python-Paste.changes 2020-07-21 15:40:09.451508141 +0200 @@ -1,0 +2,7 @@ +Fri Jul 17 07:20:06 UTC 2020 - Dirk Mueller <[email protected]> + +- update to 3.4.2: + * Correct sorting of items() in EvalHTMLFormatter. + * Fix next in iterators in wsgilib.py. + +------------------------------------------------------------------- Old: ---- Paste-3.4.0.tar.gz New: ---- Paste-3.4.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-Paste.spec ++++++ --- /var/tmp/diff_new_pack.5kmDwc/_old 2020-07-21 15:40:10.415509412 +0200 +++ /var/tmp/diff_new_pack.5kmDwc/_new 2020-07-21 15:40:10.419509417 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define oldpython python Name: python-Paste -Version: 3.4.0 +Version: 3.4.2 Release: 0 Summary: Tools for using a Web Server Gateway Interface stack License: MIT ++++++ Paste-3.4.0.tar.gz -> Paste-3.4.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Paste-3.4.0/PKG-INFO new/Paste-3.4.2/PKG-INFO --- old/Paste-3.4.0/PKG-INFO 2020-02-12 11:51:00.000000000 +0100 +++ new/Paste-3.4.2/PKG-INFO 2020-07-14 12:27:55.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: Paste -Version: 3.4.0 +Version: 3.4.2 Summary: Tools for using a Web Server Gateway Interface stack Home-page: https://pythonpaste.readthedocs.io/ Author: Chris Dent @@ -16,7 +16,7 @@ interface, and should be compatible with other middleware based on those interfaces. - .. _PEP 333: http://www.python.org/dev/peps/pep-0333.html + .. _PEP 333: http://www.python.org/dev/peps/pep-0333/ * `Paste project at GitHub (source code, bug tracker) <https://github.com/cdent/paste/>`_ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Paste-3.4.0/Paste.egg-info/PKG-INFO new/Paste-3.4.2/Paste.egg-info/PKG-INFO --- old/Paste-3.4.0/Paste.egg-info/PKG-INFO 2020-02-12 11:51:00.000000000 +0100 +++ new/Paste-3.4.2/Paste.egg-info/PKG-INFO 2020-07-14 12:27:55.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: Paste -Version: 3.4.0 +Version: 3.4.2 Summary: Tools for using a Web Server Gateway Interface stack Home-page: https://pythonpaste.readthedocs.io/ Author: Chris Dent @@ -16,7 +16,7 @@ interface, and should be compatible with other middleware based on those interfaces. - .. _PEP 333: http://www.python.org/dev/peps/pep-0333.html + .. _PEP 333: http://www.python.org/dev/peps/pep-0333/ * `Paste project at GitHub (source code, bug tracker) <https://github.com/cdent/paste/>`_ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Paste-3.4.0/README.rst new/Paste-3.4.2/README.rst --- old/Paste-3.4.0/README.rst 2020-01-26 16:30:37.000000000 +0100 +++ new/Paste-3.4.2/README.rst 2020-06-04 13:56:09.000000000 +0200 @@ -8,7 +8,7 @@ interface, and should be compatible with other middleware based on those interfaces. -.. _PEP 333: http://www.python.org/dev/peps/pep-0333.html +.. _PEP 333: http://www.python.org/dev/peps/pep-0333/ * `Paste project at GitHub (source code, bug tracker) <https://github.com/cdent/paste/>`_ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Paste-3.4.0/docs/news.txt new/Paste-3.4.2/docs/news.txt --- old/Paste-3.4.0/docs/news.txt 2020-02-12 11:48:58.000000000 +0100 +++ new/Paste-3.4.2/docs/news.txt 2020-07-14 12:26:19.000000000 +0200 @@ -3,6 +3,18 @@ .. contents:: +3.4.2 +----- + +* Correct sorting of items() in EvalHTMLFormatter. + +Thanks to amitmarkel for the patch. + +3.4.1 +----- + +* Fix next in iterators in wsgilib.py. + 3.4.0 ----- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Paste-3.4.0/paste/evalexception/middleware.py new/Paste-3.4.2/paste/evalexception/middleware.py --- old/Paste-3.4.0/paste/evalexception/middleware.py 2020-01-26 16:30:37.000000000 +0100 +++ new/Paste-3.4.2/paste/evalexception/middleware.py 2020-07-14 12:23:30.000000000 +0200 @@ -456,8 +456,7 @@ def make_table(items): if isinstance(items, dict): - items = items.items() - items.sort() + items = sorted(items.items()) rows = [] i = 0 for name, value in items: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Paste-3.4.0/paste/wsgilib.py new/Paste-3.4.2/paste/wsgilib.py --- old/Paste-3.4.0/paste/wsgilib.py 2020-01-26 16:30:37.000000000 +0100 +++ new/Paste-3.4.2/paste/wsgilib.py 2020-06-04 13:56:09.000000000 +0200 @@ -119,10 +119,10 @@ def next(self): if len(self.chained) == 1: - return self.chained[0].next() + return six.next(self.chained[0]) else: try: - return self.chained[0].next() + return six.next(self.chained[0]) except StopIteration: self.chained.pop(0) return self.next() @@ -261,7 +261,7 @@ def next(self): try: - return self.app_iter.next() + return six.next(self.app_iter) except StopIteration: if self.ok_callback: self.ok_callback() @@ -278,7 +278,7 @@ app_iter = iter(new_app_iterable) if hasattr(new_app_iterable, 'close'): self.close = new_app_iterable.close - self.next = app_iter.next + self.next = lambda: six.next(app_iter) return self.next() __next__ = next diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Paste-3.4.0/setup.py new/Paste-3.4.2/setup.py --- old/Paste-3.4.0/setup.py 2020-02-12 11:46:03.000000000 +0100 +++ new/Paste-3.4.2/setup.py 2020-07-14 12:26:28.000000000 +0200 @@ -12,7 +12,7 @@ # - git push # - python setup.py sdist bdist_wheel upload --sign -__version__ = '3.4.0' +__version__ = '3.4.2' from setuptools import setup, find_packages import sys, os
