Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-altcha for openSUSE:Factory checked in at 2025-02-03 21:44:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-altcha (Old) and /work/SRC/openSUSE:Factory/.python-altcha.new.2316 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-altcha" Mon Feb 3 21:44:41 2025 rev:3 rq:1242316 version:0.1.9 Changes: -------- --- /work/SRC/openSUSE:Factory/python-altcha/python-altcha.changes 2025-01-21 21:11:38.777866941 +0100 +++ /work/SRC/openSUSE:Factory/.python-altcha.new.2316/python-altcha.changes 2025-02-03 21:46:06.512915713 +0100 @@ -1,0 +2,7 @@ +Mon Feb 3 08:11:41 UTC 2025 - Dirk Müller <[email protected]> + +- update to 0.1.9: + * feat altcha.py verify_solution returns False, + "Altcha payload expired" + +------------------------------------------------------------------- Old: ---- altcha-0.1.8.tar.gz New: ---- altcha-0.1.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-altcha.spec ++++++ --- /var/tmp/diff_new_pack.4CihXE/_old 2025-02-03 21:46:07.024936935 +0100 +++ /var/tmp/diff_new_pack.4CihXE/_new 2025-02-03 21:46:07.028937101 +0100 @@ -17,7 +17,7 @@ Name: python-altcha -Version: 0.1.8 +Version: 0.1.9 Release: 0 Summary: A library for creating and verifying challenges for ALTCHA License: MIT ++++++ altcha-0.1.8.tar.gz -> altcha-0.1.9.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/altcha-0.1.8/PKG-INFO new/altcha-0.1.9/PKG-INFO --- old/altcha-0.1.8/PKG-INFO 2025-01-09 16:31:45.501734700 +0100 +++ new/altcha-0.1.9/PKG-INFO 2025-01-19 08:45:44.108947000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.2 Name: altcha -Version: 0.1.8 +Version: 0.1.9 Summary: A library for creating and verifying challenges for ALTCHA. Home-page: https://github.com/altcha-org/altcha-lib-py Author: Daniel Regeci diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/altcha-0.1.8/altcha/altcha.py new/altcha-0.1.9/altcha/altcha.py --- old/altcha-0.1.8/altcha/altcha.py 2025-01-09 16:31:42.000000000 +0100 +++ new/altcha-0.1.9/altcha/altcha.py 2025-01-19 08:45:40.000000000 +0100 @@ -342,9 +342,9 @@ expires = extract_params(payload).get("expires") try: if check_expires and expires and int(expires[0]) < time.time(): - return False, None + return False, "Altcha payload expired" except ValueError: # Guard against malformed expires - return False, None + return False, "Altcha payload expired" options = ChallengeOptions( algorithm=payload["algorithm"], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/altcha-0.1.8/altcha.egg-info/PKG-INFO new/altcha-0.1.9/altcha.egg-info/PKG-INFO --- old/altcha-0.1.8/altcha.egg-info/PKG-INFO 2025-01-09 16:31:45.000000000 +0100 +++ new/altcha-0.1.9/altcha.egg-info/PKG-INFO 2025-01-19 08:45:44.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.2 Name: altcha -Version: 0.1.8 +Version: 0.1.9 Summary: A library for creating and verifying challenges for ALTCHA. Home-page: https://github.com/altcha-org/altcha-lib-py Author: Daniel Regeci diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/altcha-0.1.8/setup.py new/altcha-0.1.9/setup.py --- old/altcha-0.1.8/setup.py 2025-01-09 16:31:42.000000000 +0100 +++ new/altcha-0.1.9/setup.py 2025-01-19 08:45:40.000000000 +0100 @@ -2,7 +2,7 @@ setup( name="altcha", - version="0.1.8", + version="0.1.9", description="A library for creating and verifying challenges for ALTCHA.", long_description=open("README.md").read(), long_description_content_type="text/markdown",
