Sync from SUSE:SLFO:Main python-Flask revision f350339eb3efdb4665f2387f6c782776
This commit is contained in:
parent
3cb67e9966
commit
6881d998a0
BIN
flask-2.3.3.tar.gz
(Stored with Git LFS)
BIN
flask-2.3.3.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
flask-3.0.3.tar.gz
(Stored with Git LFS)
Normal file
BIN
flask-3.0.3.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 13 17:07:09 UTC 2024 - Guang Yee <gyee@suse.com>
|
||||
|
||||
- update to 3.0.3
|
||||
* The default hashlib.sha1 may not be available in FIPS builds.
|
||||
Don’t access it at import time so the developer has time to
|
||||
change the default. :issue:`5448`
|
||||
* Don’t initialize the cli attribute in the sansio scaffold,
|
||||
but rather in the Flask concrete class. :issue:`5270`
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 10 10:13:58 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Remove not needed dependency python-contextvars
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 5 10:05:00 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 3.0.2:
|
||||
* Correct type for jinja_loader property. :issue:`5388`
|
||||
* Fix error with --extra-files and --exclude-patterns CLI
|
||||
options. :issue:`5391`
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 20 14:06:53 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 3.0.1:
|
||||
* Correct type for path argument to send_file. :issue:`5230`
|
||||
* Fix a typo in an error message for the flask run --key
|
||||
option. :pr:`5344`
|
||||
* Session data is untagged without relying on the built-in
|
||||
json.loads object_hook. This allows other JSON providers that
|
||||
don't implement that. :issue:`5381`
|
||||
* Address more type findings when using mypy strict mode.
|
||||
:pr:`5383`
|
||||
* Remove previously deprecated code. :pr:`5223`
|
||||
* Deprecate the __version__ attribute. Use feature detection,
|
||||
or importlib.metadata.version("flask"), instead.
|
||||
:issue:`5230`
|
||||
* Restructure the code such that the Flask (app) and Blueprint
|
||||
classes have Sans-IO bases. :pr:`5127`
|
||||
* Allow self as an argument to url_for. :pr:`5264`
|
||||
* Require Werkzeug >= 3.0.0.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 25 02:32:34 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-Flask
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -22,10 +22,9 @@
|
||||
%bcond_with libalternatives
|
||||
%endif
|
||||
|
||||
%define oldpython python
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-Flask
|
||||
Version: 2.3.3
|
||||
Version: 3.0.3
|
||||
Release: 0
|
||||
Summary: A microframework based on Werkzeug, Jinja2 and good intentions
|
||||
License: BSD-3-Clause
|
||||
@ -33,10 +32,9 @@ URL: https://flask.palletsprojects.com
|
||||
Source0: https://files.pythonhosted.org/packages/source/f/flask/flask-%{version}.tar.gz
|
||||
Source1: python-Flask-rpmlintrc
|
||||
BuildRequires: %{python_module Jinja2 >= 3.1.2}
|
||||
BuildRequires: %{python_module Werkzeug >= 2.3.7}
|
||||
BuildRequires: %{python_module Werkzeug >= 3.0.0}
|
||||
BuildRequires: %{python_module blinker >= 1.6.2}
|
||||
BuildRequires: %{python_module click >= 8.1.3}
|
||||
BuildRequires: %{python_module contextvars}
|
||||
BuildRequires: %{python_module flit-core}
|
||||
BuildRequires: %{python_module importlib-metadata >= 3.6.0 if %python-base < 3.10}
|
||||
BuildRequires: %{python_module itsdangerous >= 2.1.2}
|
||||
@ -46,7 +44,7 @@ BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros >= 20210929
|
||||
Requires: python-Jinja2 >= 3.1.2
|
||||
Requires: python-Werkzeug >= 2.3.7
|
||||
Requires: python-Werkzeug >= 3.0.0
|
||||
Requires: python-blinker >= 1.6.2
|
||||
Requires: python-click >= 8.1.3
|
||||
Requires: python-itsdangerous >= 2.1.2
|
||||
@ -59,7 +57,7 @@ Requires: alts
|
||||
BuildRequires: alts
|
||||
%else
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
%endif
|
||||
BuildArch: noarch
|
||||
%if %{?suse_version} < 1500
|
||||
@ -107,8 +105,8 @@ export LANG=en_US.UTF-8
|
||||
%python_uninstall_alternative flask
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE.rst
|
||||
%doc CHANGES.rst README.rst
|
||||
%license LICENSE.txt
|
||||
%doc CHANGES.rst README.md
|
||||
%python_alternative %{_bindir}/flask
|
||||
%{_bindir}/flask-%{python_bin_suffix}
|
||||
%{python_sitelib}/flask
|
||||
|
Loading…
Reference in New Issue
Block a user