Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-Flask for openSUSE:Factory 
checked in at 2022-04-23 19:45:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-Flask (Old)
 and      /work/SRC/openSUSE:Factory/.python-Flask.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-Flask"

Sat Apr 23 19:45:18 2022 rev:29 rq:970586 version:2.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-Flask/python-Flask.changes        
2022-02-15 23:57:20.172221782 +0100
+++ /work/SRC/openSUSE:Factory/.python-Flask.new.1538/python-Flask.changes      
2022-04-23 19:45:36.786958132 +0200
@@ -1,0 +2,57 @@
+Tue Apr 12 20:25:45 UTC 2022 - Ben Greiner <[email protected]>
+
+- Update the build and runtime requirements.
+
+-------------------------------------------------------------------
+Thu Mar 31 08:28:04 UTC 2022 - Michael Str??der <[email protected]>
+
+- Update to 2.1.1
+  * Set the minimum required version of importlib_metadata to 3.6.0,
+    which is required on Python < 3.10. #4502
+
+-------------------------------------------------------------------
+Tue Mar 29 19:38:52 UTC 2022 - Matej Cepl <[email protected]>
+
+- Fix deduplication.
+
+-------------------------------------------------------------------
+Mon Mar 28 19:45:05 UTC 2022 - Michael Str??der <[email protected]>
+
+- Update to 2.1.0
+  * Drop support for Python 3.6. #4335
+  * Update Click dependency to >= 8.0. #4008
+  * Remove previously deprecated code. #4337
+    - The CLI does not pass script_info to app factory functions.
+    - config.from_json is replaced by config.from_file(name, load=json.load).
+    - json functions no longer take an encoding parameter.
+    - safe_join is removed, use werkzeug.utils.safe_join instead.
+    - total_seconds is removed, use timedelta.total_seconds instead.
+    - The same blueprint cannot be registered with the same name.
+      Use name= when registering to specify a unique name.
+    - The test client???s as_tuple parameter is removed. Use 
response.request.environ instead. #4417
+  * Some parameters in send_file and send_from_directory were renamed in 2.0.
+    The deprecation period for the old names is extended to 2.2.
+    Be sure to test with deprecation warnings visible.
+    - attachment_filename is renamed to download_name.
+    - cache_timeout is renamed to max_age.
+    - add_etags is renamed to etag.
+    - filename is renamed to path.
+  * The RequestContext.g property is deprecated. Use g directly or 
AppContext.g instead. #3898
+  * copy_current_request_context can decorate async functions. #4303
+  * The CLI uses importlib.metadata instead of setuptools to load command 
entry points. #4419
+  * Overriding FlaskClient.open will not cause an error on redirect. #3396
+  * Add an --exclude-patterns option to the flask run CLI command to 
+    specify patterns that will be ignored by the reloader. #4188
+  * When using lazy loading (the default with the debugger), the Click context 
from
+    the flask run command remains available in the loader thread. #4460
+  * Deleting the session cookie uses the httponly flag. #4485
+  * Relax typing for errorhandler to allow the user to use more precise 
+    types and decorate the same function multiple times. #4095, #4295, #4297
+  * Fix typing for __exit__ methods for better compatibility with ExitStack. 
#4474
+  * From Werkzeug, for redirect responses the Location header URL will 
+    remain relative, and exclude the scheme and domain, by default. #4496
+  * Add Config.from_prefixed_env() to load config values from environment 
+    variables that start with FLASK_ or another prefix. This parses values as 
+    JSON by default, and allows setting keys in nested dicts. #4479
+
+-------------------------------------------------------------------

Old:
----
  Flask-2.0.3.tar.gz

New:
----
  Flask-2.1.1.tar.gz

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

Other differences:
------------------
++++++ python-Flask.spec ++++++
--- /var/tmp/diff_new_pack.YN0XRN/_old  2022-04-23 19:45:37.346958798 +0200
+++ /var/tmp/diff_new_pack.YN0XRN/_new  2022-04-23 19:45:37.346958798 +0200
@@ -24,9 +24,10 @@
 
 %define oldpython python
 %define skip_python2 1
+%define skip_python36 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-Flask
-Version:        2.0.3
+Version:        2.1.1
 Release:        0
 Summary:        A microframework based on Werkzeug, Jinja2 and good intentions
 License:        BSD-3-Clause
@@ -35,8 +36,9 @@
 Source:         
https://files.pythonhosted.org/packages/source/F/Flask/Flask-%{version}.tar.gz
 BuildRequires:  %{python_module Jinja2 >= 3.0}
 BuildRequires:  %{python_module Werkzeug >= 2.0}
-BuildRequires:  %{python_module click >= 7.1.2}
+BuildRequires:  %{python_module click >= 8.0.0}
 BuildRequires:  %{python_module contextvars}
+BuildRequires:  %{python_module importlib-metadata >= 3.6.0 if %python-base < 
3.10}
 BuildRequires:  %{python_module itsdangerous >= 2.0}
 BuildRequires:  %{python_module pytest >= 6.2.4}
 BuildRequires:  %{python_module setuptools}
@@ -44,8 +46,12 @@
 BuildRequires:  python-rpm-macros >= 20210929
 Requires:       python-Jinja2 >= 3.0
 Requires:       python-Werkzeug >= 2.0
-Requires:       python-click >= 7.1.2
+Requires:       python-click >= 8.0.0
 Requires:       python-itsdangerous >= 2.0
+%if 0%{?python_version_nodots} < 310
+Requires:       python-importlib-metadata >= 3.6.0
+%endif
+
 %if %{with libalternatives}
 Requires:       alts
 BuildRequires:  alts
@@ -82,7 +88,7 @@
 %install
 %python_install
 %python_clone -a %{buildroot}%{_bindir}/flask
-%fdupes %{buildroot}%{python_sitelib}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 export LANG=en_US.UTF-8

++++++ Flask-2.0.3.tar.gz -> Flask-2.1.1.tar.gz ++++++
++++ 2581 lines of diff (skipped)

Reply via email to