- Update to 5.3.2:
* Update Quickstart to show how to properly handle SQLAlchemy connections. * Auth Token not returned from /tf-validate. * Fix for latest email_validator deprecation - bump minimum to 2.0.0 * Deprecate passing in the anonymous_user class * Compatability with Flask 3.0 * Revert change in 5.3.0 that added a Referrer-Policy header. * Fix 'next' propagation when passed as form.next - Drop patch filterwarnings-ignore-pkg_resources.patch, no longer needed OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask-Security-Too?expand=0&rev=35
This commit is contained in:
parent
1cb1b5b729
commit
03cd46358f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f5d830913eac66f18845795ae5f7d044bdd0d836aeabccfebadab6a29f79354
|
||||
size 607422
|
3
Flask-Security-Too-5.3.2.tar.gz
Normal file
3
Flask-Security-Too-5.3.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c0b5075df0d64a9ef35b04c88d31fbf405a59243736f6d6d0a1a4b4845abf3e5
|
||||
size 615361
|
@ -1,12 +0,0 @@
|
||||
Index: Flask-Security-Too-5.3.0/pytest.ini
|
||||
===================================================================
|
||||
--- Flask-Security-Too-5.3.0.orig/pytest.ini
|
||||
+++ Flask-Security-Too-5.3.0/pytest.ini
|
||||
@@ -20,6 +20,7 @@ filterwarnings =
|
||||
ignore:.*'locked_cached_property'.*:DeprecationWarning:flask:0
|
||||
ignore:.*'flask.Markup'.*:DeprecationWarning:flask:0
|
||||
ignore::DeprecationWarning:mongoengine:
|
||||
+ ignore:.*pkg_resources.*:DeprecationWarning::
|
||||
ignore::DeprecationWarning:flask_login:0
|
||||
ignore:.*passwordless feature.*:DeprecationWarning:flask_security:0
|
||||
ignore:.*passing settings to bcrypt.*:DeprecationWarning:passlib:0
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 27 06:29:23 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 5.3.2:
|
||||
* Update Quickstart to show how to properly handle SQLAlchemy connections.
|
||||
* Auth Token not returned from /tf-validate.
|
||||
* Fix for latest email_validator deprecation - bump minimum to 2.0.0
|
||||
* Deprecate passing in the anonymous_user class
|
||||
* Compatability with Flask 3.0
|
||||
* Revert change in 5.3.0 that added a Referrer-Policy header.
|
||||
* Fix 'next' propagation when passed as form.next
|
||||
- Drop patch filterwarnings-ignore-pkg_resources.patch, no longer needed
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 3 06:10:21 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: python-Flask-Security-Too
|
||||
Version: 5.3.0
|
||||
Version: 5.3.2
|
||||
Release: 0
|
||||
Summary: Security for Flask apps
|
||||
License: MIT
|
||||
@ -26,8 +26,6 @@ Source: https://files.pythonhosted.org/packages/source/F/Flask-Security-
|
||||
Patch0: no-mongodb.patch
|
||||
# PATCH-FIX-OPENSUSE Use pyqrcodeng, we do not ship qrcode in OpenSUSE.
|
||||
Patch1: use-pyqrcodeng.patch
|
||||
# PATCH-FIX-OPENSUSE Ignore DeprecationWarning, can be dropped after next update
|
||||
Patch2: filterwarnings-ignore-pkg_resources.patch
|
||||
BuildRequires: %{python_module Authlib}
|
||||
BuildRequires: %{python_module Babel >= 2.10.0}
|
||||
BuildRequires: %{python_module Flask >= 2.3.2}
|
||||
@ -37,6 +35,7 @@ BuildRequires: %{python_module Flask-Mailman >= 0.3.0}
|
||||
BuildRequires: %{python_module Flask-Principal >= 0.4.0}
|
||||
BuildRequires: %{python_module Flask-SQLAlchemy >= 3.0.3}
|
||||
BuildRequires: %{python_module Flask-WTF >= 1.1.1}
|
||||
BuildRequires: %{python_module MarkupSafe >= 2.1.0}
|
||||
BuildRequires: %{python_module PyQRCode >= 1.2}
|
||||
BuildRequires: %{python_module SQLAlchemy}
|
||||
BuildRequires: %{python_module WTForms-lang}
|
||||
@ -45,11 +44,10 @@ BuildRequires: %{python_module Werkzeug >= 2.3.3}
|
||||
BuildRequires: %{python_module argon2_cffi >= 21.3.0}
|
||||
BuildRequires: %{python_module bcrypt >= 4.0.1}
|
||||
BuildRequires: %{python_module bleach >= 6.0.0}
|
||||
BuildRequires: %{python_module blinker >= 1.4}
|
||||
BuildRequires: %{python_module cachetools >= 3.1.0}
|
||||
BuildRequires: %{python_module cryptography >= 40.0.2}
|
||||
BuildRequires: %{python_module dateutil}
|
||||
BuildRequires: %{python_module email-validator >= 1.1.1}
|
||||
BuildRequires: %{python_module email-validator >= 2.0}
|
||||
BuildRequires: %{python_module importlib_resources >= 5.10.0}
|
||||
BuildRequires: %{python_module itsdangerous >= 1.1.0}
|
||||
BuildRequires: %{python_module passlib >= 1.7.4}
|
||||
@ -69,13 +67,13 @@ Requires: python-Flask-Babel >= 3.1.0
|
||||
Requires: python-Flask-Login >= 0.6.2
|
||||
Requires: python-Flask-Principal >= 0.4.0
|
||||
Requires: python-Flask-WTF >= 1.1.1
|
||||
Requires: python-MarkupSafe >= 2.1.0
|
||||
Requires: python-WTForms >= 3.0.0
|
||||
Requires: python-Werkzeug >= 2.3.3
|
||||
Requires: python-bcrypt >= 4.0.1
|
||||
Requires: python-bleach >= 6.0.0
|
||||
Requires: python-blinker >= 1.4
|
||||
Requires: python-cryptography >= 40.0.2
|
||||
Requires: python-email-validator >= 1.1.1
|
||||
Requires: python-email-validator >= 2.0
|
||||
Requires: python-importlib_resources >= 5.10.0
|
||||
Requires: python-itsdangerous >= 1.1.0
|
||||
Requires: python-passlib >= 1.7.4
|
||||
@ -118,6 +116,6 @@ rm tests/test_trackable.py
|
||||
%doc AUTHORS CHANGES.rst README.rst
|
||||
%license LICENSE
|
||||
%{python_sitelib}/flask_security
|
||||
%{python_sitelib}/Flask_Security_Too-%{version}*-info
|
||||
%{python_sitelib}/Flask_Security_Too-%{version}.dist-info
|
||||
|
||||
%changelog
|
||||
|
Loading…
x
Reference in New Issue
Block a user