Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-django-tagging for
openSUSE:Factory checked in at 2023-03-31 21:15:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-tagging (Old)
and /work/SRC/openSUSE:Factory/.python-django-tagging.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-tagging"
Fri Mar 31 21:15:40 2023 rev:4 rq:1075719 version:0.5.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-tagging/python-django-tagging.changes
2022-02-25 21:25:48.851646258 +0100
+++
/work/SRC/openSUSE:Factory/.python-django-tagging.new.31432/python-django-tagging.changes
2023-03-31 21:15:42.186434789 +0200
@@ -1,0 +2,6 @@
+Fri Mar 31 02:18:42 UTC 2023 - Steve Kowalik <[email protected]>
+
+- Update django4.patch to also support Python 3.11 regular expression
+ changes.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-tagging.spec ++++++
--- /var/tmp/diff_new_pack.6DCo5N/_old 2023-03-31 21:15:42.870437968 +0200
+++ /var/tmp/diff_new_pack.6DCo5N/_new 2023-03-31 21:15:42.874437987 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-django-tagging
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
++++++ django4.patch ++++++
--- /var/tmp/diff_new_pack.6DCo5N/_old 2023-03-31 21:15:42.918438192 +0200
+++ /var/tmp/diff_new_pack.6DCo5N/_new 2023-03-31 21:15:42.922438210 +0200
@@ -61,6 +61,6 @@
- url(r'^(?P<tag>[^/]+(?u))/$', TaggedObjectList.as_view(model=Article)),
+ re_path(r'^no-tag/$', TaggedObjectList.as_view(model=Article)),
+ re_path(r'^no-query-no-model/$', TaggedObjectList.as_view()),
-+ re_path(r'^(?P<tag>[^/]+(?u))/$',
TaggedObjectList.as_view(model=Article)),
++ re_path(r'(?u)^(?P<tag>[^/]+)/$',
TaggedObjectList.as_view(model=Article)),
]