Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-flask-restx for 
openSUSE:Factory checked in at 2021-09-22 22:12:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-flask-restx (Old)
 and      /work/SRC/openSUSE:Factory/.python-flask-restx.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-flask-restx"

Wed Sep 22 22:12:50 2021 rev:5 rq:920814 version:0.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-flask-restx/python-flask-restx.changes    
2021-08-16 10:18:00.178621485 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flask-restx.new.1899/python-flask-restx.changes
  2021-09-22 22:12:55.344321294 +0200
@@ -1,0 +2,6 @@
+Tue Sep 21 19:00:02 UTC 2021 - Sean Marlow <sean.mar...@suse.com>
+
+- Update to v0.5.1
+  + Optimize email regex (bsc#1190744)
+
+-------------------------------------------------------------------

Old:
----
  0.5.0.tar.gz

New:
----
  0.5.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-flask-restx.spec ++++++
--- /var/tmp/diff_new_pack.HFTT12/_old  2021-09-22 22:12:55.908321763 +0200
+++ /var/tmp/diff_new_pack.HFTT12/_new  2021-09-22 22:12:55.912321766 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without python2
 Name:           python-flask-restx
-Version:        0.5.0
+Version:        0.5.1
 Release:        0
 Summary:        Framework for fast, easy and documented API development with 
Flask
 License:        BSD-3-Clause

++++++ 0.5.0.tar.gz -> 0.5.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flask-restx-0.5.0/.github/workflows/test.yml 
new/flask-restx-0.5.1/.github/workflows/test.yml
--- old/flask-restx-0.5.0/.github/workflows/test.yml    2021-07-19 
15:06:26.000000000 +0200
+++ new/flask-restx-0.5.1/.github/workflows/test.yml    2021-09-01 
22:10:55.000000000 +0200
@@ -8,6 +8,7 @@
       - "*"
   schedule:
     - cron: "0 1 * * *"
+  workflow_dispatch:
 jobs:
   checks:
     runs-on: ubuntu-latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flask-restx-0.5.0/README.rst 
new/flask-restx-0.5.1/README.rst
--- old/flask-restx-0.5.0/README.rst    2021-07-19 15:06:26.000000000 +0200
+++ new/flask-restx-0.5.1/README.rst    2021-09-01 22:10:55.000000000 +0200
@@ -2,14 +2,14 @@
 Flask RESTX
 ===========
 
-.. image:: 
https://github.com/python-restx/flask-restx/workflows/Tests/badge.svg?tag=0.5.0&event=push
+.. image:: 
https://github.com/python-restx/flask-restx/workflows/Tests/badge.svg?tag=0.5.1&event=push
     :target: 
https://github.com/python-restx/flask-restx/actions?query=workflow%3ATests
     :alt: Tests status
 .. image:: 
https://codecov.io/gh/python-restx/flask-restx/branch/master/graph/badge.svg
     :target: https://codecov.io/gh/python-restx/flask-restx
     :alt: Code coverage
-.. image:: https://readthedocs.org/projects/flask-restx/badge/?version=0.5.0
-    :target: https://flask-restx.readthedocs.io/en/0.5.0/
+.. image:: https://readthedocs.org/projects/flask-restx/badge/?version=0.5.1
+    :target: https://flask-restx.readthedocs.io/en/0.5.1/
     :alt: Documentation status
 .. image:: https://img.shields.io/pypi/l/flask-restx.svg
     :target: https://pypi.org/project/flask-restx
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flask-restx-0.5.0/flask_restx/__about__.py 
new/flask-restx-0.5.1/flask_restx/__about__.py
--- old/flask-restx-0.5.0/flask_restx/__about__.py      2021-07-19 
15:06:26.000000000 +0200
+++ new/flask-restx-0.5.1/flask_restx/__about__.py      2021-09-01 
22:10:55.000000000 +0200
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-__version__ = "0.5.0"
+__version__ = "0.5.1"
 __description__ = (
     "Fully featured framework for fast, easy and documented API development 
with Flask"
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flask-restx-0.5.0/flask_restx/inputs.py 
new/flask-restx-0.5.1/flask_restx/inputs.py
--- old/flask-restx-0.5.0/flask_restx/inputs.py 2021-07-19 15:06:26.000000000 
+0200
+++ new/flask-restx-0.5.1/flask_restx/inputs.py 2021-09-01 22:10:55.000000000 
+0200
@@ -48,7 +48,7 @@
 
 
 email_regex = re.compile(
-    r"^" "(?P<local>[^@]*[^@.])" r"@" r"(?P<server>[^@]+(?:\.[^@]+)*)" r"$",
+    r"^" "(?P<local>[^@]*[^@.])" r"@" r"(?P<server>[^@\.]+(?:\.[^@\.]+)*)" 
r"$",
     re.IGNORECASE,
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flask-restx-0.5.0/package.json 
new/flask-restx-0.5.1/package.json
--- old/flask-restx-0.5.0/package.json  2021-07-19 15:06:26.000000000 +0200
+++ new/flask-restx-0.5.1/package.json  2021-09-01 22:10:55.000000000 +0200
@@ -1,6 +1,6 @@
 {
   "name": "flask-restx",
-  "version": "0.5.0",
+  "version": "0.5.1-dev1",
   "description": "Fully featured framework for fast, easy and documented API 
development with Flask",
   "repository": "python-restx/flask-restx",
   "keywords": [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flask-restx-0.5.0/tests/test_inputs.py 
new/flask-restx-0.5.1/tests/test_inputs.py
--- old/flask-restx-0.5.0/tests/test_inputs.py  2021-07-19 15:06:26.000000000 
+0200
+++ new/flask-restx-0.5.1/tests/test_inputs.py  2021-09-01 22:10:55.000000000 
+0200
@@ -584,6 +584,8 @@
             "me@::1",
             "me@200.8.9.10",
             "me@2001:db8:85a3::8a2e:370:7334",
+            "foo@bar.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?" +
+            
".?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?@",
         ],
     )
     def test_invalid_value_default(self, value):

Reply via email to