Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-cryptography for openSUSE:Factory checked in at 2023-11-13 22:16:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-cryptography (Old) and /work/SRC/openSUSE:Factory/.python-cryptography.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-cryptography" Mon Nov 13 22:16:19 2023 rev:84 rq:1124982 version:41.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-cryptography/python-cryptography.changes 2023-10-06 21:12:38.867963148 +0200 +++ /work/SRC/openSUSE:Factory/.python-cryptography.new.17445/python-cryptography.changes 2023-11-13 22:16:47.782501689 +0100 @@ -1,0 +2,9 @@ +Fri Nov 10 13:28:56 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 41.0.5: + * Updated Windows, macOS, and Linux wheels to be compiled with + OpenSSL 3.1.4. + * Added a function to support an upcoming ``pyOpenSSL`` + release. + +------------------------------------------------------------------- @@ -5 +13,0 @@ - * ~~~~~~~~~~~~~~~~~~~ @@ -8 +15,0 @@ - * .. _v41-0-3: Old: ---- cryptography-41.0.4.tar.gz New: ---- cryptography-41.0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-cryptography.spec ++++++ --- /var/tmp/diff_new_pack.yuGTic/_old 2023-11-13 22:16:49.214554416 +0100 +++ /var/tmp/diff_new_pack.yuGTic/_new 2023-11-13 22:16:49.214554416 +0100 @@ -27,7 +27,7 @@ %endif %{?sle15_python_module_pythons} Name: python-cryptography%{psuffix} -Version: 41.0.4 +Version: 41.0.5 Release: 0 Summary: Python library which exposes cryptographic recipes and primitives License: Apache-2.0 OR BSD-3-Clause ++++++ _service ++++++ --- /var/tmp/diff_new_pack.yuGTic/_old 2023-11-13 22:16:49.254555889 +0100 +++ /var/tmp/diff_new_pack.yuGTic/_new 2023-11-13 22:16:49.258556036 +0100 @@ -1,7 +1,7 @@ <services> <service name="download_files" mode="manual"/> <service name="cargo_vendor" mode="manual"> - <param name="srcdir">cryptography-41.0.4/src/rust</param> + <param name="srcdir">cryptography-41.0.5/src/rust</param> <param name="compression">zst</param> </service> <service name="cargo_audit" mode="manual"> ++++++ cryptography-41.0.4.tar.gz -> cryptography-41.0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cryptography-41.0.4/CHANGELOG.rst new/cryptography-41.0.5/CHANGELOG.rst --- old/cryptography-41.0.4/CHANGELOG.rst 2023-09-19 18:20:46.000000000 +0200 +++ new/cryptography-41.0.5/CHANGELOG.rst 2023-10-24 18:02:41.000000000 +0200 @@ -1,6 +1,14 @@ Changelog ========= +.. _v41-0-5: + +41.0.5 - 2023-10-24 +~~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.4. +* Added a function to support an upcoming ``pyOpenSSL`` release. + .. _v41-0-4: 41.0.4 - 2023-09-19 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cryptography-41.0.4/PKG-INFO new/cryptography-41.0.5/PKG-INFO --- old/cryptography-41.0.4/PKG-INFO 2023-09-19 18:21:00.754785000 +0200 +++ new/cryptography-41.0.5/PKG-INFO 2023-10-24 18:02:54.969973800 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: cryptography -Version: 41.0.4 +Version: 41.0.5 Summary: cryptography is a package which provides cryptographic recipes and primitives to Python developers. Author-email: The Python Cryptographic Authority and individual contributors <cryptography-...@python.org> License: Apache-2.0 OR BSD-3-Clause diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cryptography-41.0.4/pyproject.toml new/cryptography-41.0.5/pyproject.toml --- old/cryptography-41.0.4/pyproject.toml 2023-09-19 18:20:46.000000000 +0200 +++ new/cryptography-41.0.5/pyproject.toml 2023-10-24 18:02:41.000000000 +0200 @@ -11,7 +11,7 @@ [project] name = "cryptography" -version = "41.0.4" +version = "41.0.5" authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-...@python.org"} ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cryptography-41.0.4/src/_cffi_src/openssl/x509.py new/cryptography-41.0.5/src/_cffi_src/openssl/x509.py --- old/cryptography-41.0.4/src/_cffi_src/openssl/x509.py 2023-09-19 18:20:46.000000000 +0200 +++ new/cryptography-41.0.5/src/_cffi_src/openssl/x509.py 2023-10-24 18:02:41.000000000 +0200 @@ -195,6 +195,9 @@ const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *); const ASN1_TIME *X509_REVOKED_get0_revocationDate(const X509_REVOKED *); + +void X509_ALGOR_get0(const ASN1_OBJECT **, int *, const void **, + const X509_ALGOR *); """ CUSTOMIZATIONS = """ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cryptography-41.0.4/src/cryptography/__about__.py new/cryptography-41.0.5/src/cryptography/__about__.py --- old/cryptography-41.0.4/src/cryptography/__about__.py 2023-09-19 18:20:46.000000000 +0200 +++ new/cryptography-41.0.5/src/cryptography/__about__.py 2023-10-24 18:02:41.000000000 +0200 @@ -10,7 +10,7 @@ "__copyright__", ] -__version__ = "41.0.4" +__version__ = "41.0.5" __author__ = "The Python Cryptographic Authority and individual contributors" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cryptography-41.0.4/src/cryptography.egg-info/PKG-INFO new/cryptography-41.0.5/src/cryptography.egg-info/PKG-INFO --- old/cryptography-41.0.4/src/cryptography.egg-info/PKG-INFO 2023-09-19 18:21:00.000000000 +0200 +++ new/cryptography-41.0.5/src/cryptography.egg-info/PKG-INFO 2023-10-24 18:02:54.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: cryptography -Version: 41.0.4 +Version: 41.0.5 Summary: cryptography is a package which provides cryptographic recipes and primitives to Python developers. Author-email: The Python Cryptographic Authority and individual contributors <cryptography-...@python.org> License: Apache-2.0 OR BSD-3-Clause ++++++ vendor.tar.zst ++++++ Binary files /var/tmp/diff_new_pack.yuGTic/_old and /var/tmp/diff_new_pack.yuGTic/_new differ