Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-itsdangerous for openSUSE:Factory checked in at 2022-04-26 20:14:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-itsdangerous (Old) and /work/SRC/openSUSE:Factory/.python-itsdangerous.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-itsdangerous" Tue Apr 26 20:14:48 2022 rev:10 rq:972291 version:2.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-itsdangerous/python-itsdangerous.changes 2022-03-28 16:58:59.572841542 +0200 +++ /work/SRC/openSUSE:Factory/.python-itsdangerous.new.1538/python-itsdangerous.changes 2022-04-26 20:16:49.964692741 +0200 @@ -1,0 +2,7 @@ +Fri Apr 22 20:36:41 UTC 2022 - Michael Str??der <mich...@stroeder.com> + +- update to 2.1.2 + * Handle date overflow in timed unsign on 32-bit systems. :pr:`299` +- removed obsolete 32bit-handle-overflow.patch + +------------------------------------------------------------------- Old: ---- 32bit-handle-overflow.patch itsdangerous-2.1.1.tar.gz New: ---- itsdangerous-2.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-itsdangerous.spec ++++++ --- /var/tmp/diff_new_pack.eUR8Pb/_old 2022-04-26 20:16:50.384693249 +0200 +++ /var/tmp/diff_new_pack.eUR8Pb/_new 2022-04-26 20:16:50.392693259 +0200 @@ -20,15 +20,13 @@ %define skip_python2 1 %global skip_python36 1 Name: python-itsdangerous -Version: 2.1.1 +Version: 2.1.2 Release: 0 Summary: Various helpers to pass trusted data to untrusted environments and back License: BSD-3-Clause Group: Development/Languages/Python URL: https://itsdangerous.palletsprojects.com Source: https://files.pythonhosted.org/packages/source/i/itsdangerous/itsdangerous-%{version}.tar.gz -# https://github.com/pallets/itsdangerous/pull/299 -Patch1: 32bit-handle-overflow.patch BuildRequires: %{python_module freezegun} BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} @@ -52,7 +50,6 @@ %prep %setup -q -n itsdangerous-%{version} -%patch1 -p1 %build %python_build ++++++ itsdangerous-2.1.1.tar.gz -> itsdangerous-2.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/itsdangerous-2.1.1/CHANGES.rst new/itsdangerous-2.1.2/CHANGES.rst --- old/itsdangerous-2.1.1/CHANGES.rst 2022-03-09 17:21:58.000000000 +0100 +++ new/itsdangerous-2.1.2/CHANGES.rst 2022-03-24 16:10:29.000000000 +0100 @@ -1,3 +1,11 @@ +Version 2.1.2 +------------- + +Released 2022-03-24 + +- Handle date overflow in timed unsign on 32-bit systems. :pr:`299` + + Version 2.1.1 ------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/itsdangerous-2.1.1/PKG-INFO new/itsdangerous-2.1.2/PKG-INFO --- old/itsdangerous-2.1.1/PKG-INFO 2022-03-09 17:23:31.898426800 +0100 +++ new/itsdangerous-2.1.2/PKG-INFO 2022-03-24 16:11:46.049640400 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: itsdangerous -Version: 2.1.1 +Version: 2.1.2 Summary: Safely pass data to untrusted environments and back. Home-page: https://palletsprojects.com/p/itsdangerous/ Author: Armin Ronacher diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/itsdangerous-2.1.1/src/itsdangerous/__init__.py new/itsdangerous-2.1.2/src/itsdangerous/__init__.py --- old/itsdangerous-2.1.1/src/itsdangerous/__init__.py 2022-03-09 17:21:58.000000000 +0100 +++ new/itsdangerous-2.1.2/src/itsdangerous/__init__.py 2022-03-24 16:10:29.000000000 +0100 @@ -16,4 +16,4 @@ from .url_safe import URLSafeSerializer as URLSafeSerializer from .url_safe import URLSafeTimedSerializer as URLSafeTimedSerializer -__version__ = "2.1.1" +__version__ = "2.1.2" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/itsdangerous-2.1.1/src/itsdangerous/timed.py new/itsdangerous-2.1.2/src/itsdangerous/timed.py --- old/itsdangerous-2.1.1/src/itsdangerous/timed.py 2022-03-09 17:11:24.000000000 +0100 +++ new/itsdangerous-2.1.2/src/itsdangerous/timed.py 2022-03-24 16:02:27.000000000 +0100 @@ -126,8 +126,9 @@ if ts_int is not None: try: ts_dt = self.timestamp_to_datetime(ts_int) - except (ValueError, OSError) as exc: + except (ValueError, OSError, OverflowError) as exc: # Windows raises OSError + # 32-bit raises OverflowError raise BadTimeSignature( "Malformed timestamp", payload=value ) from exc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/itsdangerous-2.1.1/src/itsdangerous.egg-info/PKG-INFO new/itsdangerous-2.1.2/src/itsdangerous.egg-info/PKG-INFO --- old/itsdangerous-2.1.1/src/itsdangerous.egg-info/PKG-INFO 2022-03-09 17:23:31.000000000 +0100 +++ new/itsdangerous-2.1.2/src/itsdangerous.egg-info/PKG-INFO 2022-03-24 16:11:45.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: itsdangerous -Version: 2.1.1 +Version: 2.1.2 Summary: Safely pass data to untrusted environments and back. Home-page: https://palletsprojects.com/p/itsdangerous/ Author: Armin Ronacher