From be6b26f959060ae0a67e33ba43d747f17b6e9fb263dce48b773790a7eb92ff8b Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Tue, 18 Jun 2019 12:43:29 +0000 Subject: [PATCH] Accepting request 705805 from devel:languages:python:flask - Update to 1.0.3: * :func:`send_file` encodes filenames as ASCII instead of Latin-1 (ISO-8859-1). This fixes compatibility with Gunicorn, which is stricter about header encodings than PEP 3333. (`#2766`_) * Allow custom CLIs using ``FlaskGroup`` to set the debug flag without it always being overwritten based on environment variables. (`#2765`_) * ``flask --version`` outputs Werkzeug's version and simplifies the Python version. (`#2825`_) * :func:`send_file` handles an ``attachment_filename`` that is a native Python 2 string (bytes) with UTF-8 coded bytes. (`#2933`_) * A catch-all error handler registered for ``HTTPException`` will not handle ``RoutingExcpetion``, which is used internally during routing. This fixes the unexpected behavior that had been introduced in 1.0. (`#2986`_) * Passing the ``json`` argument to ``app.test_client`` does not push/pop an extra app context. (`#2900`_) OBS-URL: https://build.opensuse.org/request/show/705805 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=20 --- Flask-1.0.2.tar.gz | 3 --- Flask-1.0.3.tar.gz | 3 +++ python-Flask.changes | 21 +++++++++++++++++++++ python-Flask.spec | 13 ++++--------- 4 files changed, 28 insertions(+), 12 deletions(-) delete mode 100644 Flask-1.0.2.tar.gz create mode 100644 Flask-1.0.3.tar.gz diff --git a/Flask-1.0.2.tar.gz b/Flask-1.0.2.tar.gz deleted file mode 100644 index a0a3d15..0000000 --- a/Flask-1.0.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2271c0070dbcb5275fad4a82e29f23ab92682dc45f9dfbc22c02ba9b9322ce48 -size 644534 diff --git a/Flask-1.0.3.tar.gz b/Flask-1.0.3.tar.gz new file mode 100644 index 0000000..03efda7 --- /dev/null +++ b/Flask-1.0.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7c6d841e64296b962296c2c2dabc6543752985727af86a975072dea984b6f3 +size 647311 diff --git a/python-Flask.changes b/python-Flask.changes index 2be97a8..01a3ec9 100644 --- a/python-Flask.changes +++ b/python-Flask.changes @@ -1,3 +1,24 @@ +------------------------------------------------------------------- +Tue May 28 07:30:54 UTC 2019 - Tomáš Chvátal + +- Update to 1.0.3: + * :func:`send_file` encodes filenames as ASCII instead of Latin-1 + (ISO-8859-1). This fixes compatibility with Gunicorn, which is + stricter about header encodings than PEP 3333. (`#2766`_) + * Allow custom CLIs using ``FlaskGroup`` to set the debug flag without + it always being overwritten based on environment variables. + (`#2765`_) + * ``flask --version`` outputs Werkzeug's version and simplifies the + Python version. (`#2825`_) + * :func:`send_file` handles an ``attachment_filename`` that is a + native Python 2 string (bytes) with UTF-8 coded bytes. (`#2933`_) + * A catch-all error handler registered for ``HTTPException`` will not + handle ``RoutingExcpetion``, which is used internally during + routing. This fixes the unexpected behavior that had been introduced + in 1.0. (`#2986`_) + * Passing the ``json`` argument to ``app.test_client`` does not + push/pop an extra app context. (`#2900`_) + ------------------------------------------------------------------- Sun May 6 05:35:06 UTC 2018 - arun@gmx.de diff --git a/python-Flask.spec b/python-Flask.spec index b67dc92..5932891 100644 --- a/python-Flask.spec +++ b/python-Flask.spec @@ -1,7 +1,7 @@ # # spec file for package python-Flask # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,14 +12,14 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define oldpython python %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-Flask -Version: 1.0.2 +Version: 1.0.3 Release: 0 Summary: A microframework based on Werkzeug, Jinja2 and good intentions License: BSD-3-Clause @@ -27,7 +27,6 @@ Group: Development/Languages/Python URL: http://github.com/mitsuhiko/flask/ Source: https://files.pythonhosted.org/packages/source/F/Flask/Flask-%{version}.tar.gz BuildRequires: %{python_module Jinja2 >= 2.4} -# BuildRequires: python-Sphinx BuildRequires: %{python_module Werkzeug >= 0.14} BuildRequires: %{python_module click >= 5.1} BuildRequires: %{python_module itsdangerous >= 0.24} @@ -73,12 +72,8 @@ reference for python-Flask. %fdupes %{buildroot}%{python_sitelib} %check -%if 0%{?suse_version} && 0%{?suse_version} <= 1315 -true -%else export LANG=en_US.UTF-8 -%python_exec -m pytest tests -%endif +%pytest %files %{python_files} %license LICENSE