Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-exrex for openSUSE:Factory checked in at 2026-04-01 19:52:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-exrex (Old) and /work/SRC/openSUSE:Factory/.python-exrex.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-exrex" Wed Apr 1 19:52:12 2026 rev:10 rq:1344050 version:0.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-exrex/python-exrex.changes 2025-06-10 09:10:18.159879737 +0200 +++ /work/SRC/openSUSE:Factory/.python-exrex.new.21863/python-exrex.changes 2026-04-01 19:53:40.688730554 +0200 @@ -1,0 +2,6 @@ +Wed Apr 1 07:31:54 UTC 2026 - Dirk Müller <[email protected]> + +- update to 0.12.0: + * fix invalid escape sequence in regex + +------------------------------------------------------------------- Old: ---- exrex-0.11.0.tar.gz New: ---- exrex-0.12.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-exrex.spec ++++++ --- /var/tmp/diff_new_pack.kQwbzj/_old 2026-04-01 19:53:41.348757970 +0200 +++ /var/tmp/diff_new_pack.kQwbzj/_new 2026-04-01 19:53:41.360758468 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-exrex # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %bcond_without libalternatives Name: python-exrex -Version: 0.11.0 +Version: 0.12.0 Release: 0 Summary: Irregular methods for regular expressions License: AGPL-3.0-or-later ++++++ exrex-0.11.0.tar.gz -> exrex-0.12.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/exrex-0.11.0/exrex.py new/exrex-0.12.0/exrex.py --- old/exrex-0.11.0/exrex.py 2023-03-08 00:06:21.000000000 +0100 +++ new/exrex-0.12.0/exrex.py 2024-11-13 14:46:03.000000000 +0100 @@ -52,9 +52,9 @@ sre_parse.CATEGORY_SPACE: sorted(sre_parse.WHITESPACE), sre_parse.CATEGORY_DIGIT: sorted(sre_parse.DIGITS), sre_parse.CATEGORY_WORD: [unichr(x) for x in range(256) if - match('\w', unichr(x), U)], + match(r'\w', unichr(x), U)], sre_parse.CATEGORY_NOT_WORD: [unichr(x) for x in range(256) if - match('\W', unichr(x), U)], + match(r'\W', unichr(x), U)], 'category_any': [unichr(x) for x in range(32, 123)] } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/exrex-0.11.0/setup.py new/exrex-0.12.0/setup.py --- old/exrex-0.11.0/setup.py 2023-03-08 00:06:21.000000000 +0100 +++ new/exrex-0.12.0/setup.py 2024-11-13 14:46:03.000000000 +0100 @@ -12,7 +12,7 @@ URL = 'https://github.com/asciimoo/exrex' EMAIL = '[email protected]' AUTHOR = 'Adam Tauber' -VERSION = '0.11.0' +VERSION = '0.12.0' # What packages are required for this module to be executed? REQUIRED = [
