Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-certipy for openSUSE:Factory checked in at 2026-05-11 18:23:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-certipy (Old) and /work/SRC/openSUSE:Factory/.python-certipy.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certipy" Mon May 11 18:23:12 2026 rev:7 rq:1352484 version:0.2.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-certipy/python-certipy.changes 2026-04-29 19:21:14.329424715 +0200 +++ /work/SRC/openSUSE:Factory/.python-certipy.new.1966/python-certipy.changes 2026-05-11 18:23:13.574449733 +0200 @@ -1,0 +2,7 @@ +Fri May 8 10:27:32 UTC 2026 - John Paul Adrian Glaubitz <[email protected]> + +- Update to 0.2.3 + * cryptography: serialization.Encoding is no longer a standard Enum +- Drop support-cryptography-47.patch, merged upstream + +------------------------------------------------------------------- Old: ---- certipy-0.2.2.tar.gz support-cryptography-47.patch New: ---- certipy-0.2.3.tar.gz ----------(Old B)---------- Old: * cryptography: serialization.Encoding is no longer a standard Enum - Drop support-cryptography-47.patch, merged upstream ----------(Old E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-certipy.spec ++++++ --- /var/tmp/diff_new_pack.8aB4K1/_old 2026-05-11 18:23:14.810500992 +0200 +++ /var/tmp/diff_new_pack.8aB4K1/_new 2026-05-11 18:23:14.810500992 +0200 @@ -19,7 +19,7 @@ %bcond_without libalternatives %{?sle15_python_module_pythons} Name: python-certipy -Version: 0.2.2 +Version: 0.2.3 Release: 0 Summary: Create and sign CAs and certificates License: BSD-3-Clause @@ -27,8 +27,6 @@ Source: https://files.pythonhosted.org/packages/source/c/certipy/certipy-%{version}.tar.gz # MANIFEST.in was merged; check next release Source1: https://raw.githubusercontent.com/LLNL/certipy/master/LICENSE -# PATCH-FIX-UPSTREAM gh#llnl/certipy#27 -Patch0: support-cryptography-47.patch BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module wheel} ++++++ certipy-0.2.2.tar.gz -> certipy-0.2.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certipy-0.2.2/PKG-INFO new/certipy-0.2.3/PKG-INFO --- old/certipy-0.2.2/PKG-INFO 2025-03-28 09:14:06.060046700 +0100 +++ new/certipy-0.2.3/PKG-INFO 2026-04-29 21:15:01.619486000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: certipy -Version: 0.2.2 +Version: 0.2.3 Summary: Utility to create and sign CAs and certificates Author-email: Thomas Mendoza <[email protected]> License: BSD 3-Clause License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certipy-0.2.2/certipy/certipy.py new/certipy-0.2.3/certipy/certipy.py --- old/certipy-0.2.2/certipy/certipy.py 2025-03-28 09:13:55.000000000 +0100 +++ new/certipy-0.2.3/certipy/certipy.py 2026-04-29 21:14:54.000000000 +0200 @@ -168,7 +168,9 @@ self.file_path = file_path self.containing_dir = os.path.dirname(self.file_path) - self.encoding = serialization.Encoding(encoding) + if isinstance(encoding, str): + encoding = getattr(serialization.Encoding, encoding) + self.encoding = encoding self.file_type = file_type self.x509 = x509 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certipy-0.2.2/certipy/version.py new/certipy-0.2.3/certipy/version.py --- old/certipy-0.2.2/certipy/version.py 2025-03-28 09:13:55.000000000 +0100 +++ new/certipy-0.2.3/certipy/version.py 2026-04-29 21:14:54.000000000 +0200 @@ -1 +1 @@ -__version__ = "0.2.2" +__version__ = "0.2.3" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certipy-0.2.2/certipy.egg-info/PKG-INFO new/certipy-0.2.3/certipy.egg-info/PKG-INFO --- old/certipy-0.2.2/certipy.egg-info/PKG-INFO 2025-03-28 09:14:06.000000000 +0100 +++ new/certipy-0.2.3/certipy.egg-info/PKG-INFO 2026-04-29 21:15:01.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: certipy -Version: 0.2.2 +Version: 0.2.3 Summary: Utility to create and sign CAs and certificates Author-email: Thomas Mendoza <[email protected]> License: BSD 3-Clause License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certipy-0.2.2/pyproject.toml new/certipy-0.2.3/pyproject.toml --- old/certipy-0.2.2/pyproject.toml 2025-03-28 09:13:55.000000000 +0100 +++ new/certipy-0.2.3/pyproject.toml 2026-04-29 21:14:54.000000000 +0200 @@ -63,7 +63,7 @@ tag = true tag_name = "v{new_version}" tag_message = "Bump version: {current_version} → {new_version}" -current_version = "0.2.2" +current_version = "0.2.3" search = "{current_version}" replace = "{new_version}"
