diff options
author | zhengruoqin <zhengrq.fnst@fujitsu.com> | 2022-07-30 06:03:08 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-08-06 08:50:19 -0700 |
commit | 9894b44b3bc76b9c7d39be9de1df2198eaffec2e (patch) | |
tree | ca87ae672e4854fb76c9d364fd075aa5136ce2d5 /meta-python/recipes-devtools/python/python3-flask-login_0.6.2.bb | |
parent | f1247115d164fd407c24325334d15075b1918634 (diff) | |
download | meta-openembedded-9894b44b3bc76b9c7d39be9de1df2198eaffec2e.tar.gz |
python3-flask-login: upgrade 0.6.1 -> 0.6.2
Changelog:
==========
-Fix compatibility with Werkzeug 2.2 and Flask 2.2. #691
-Revert change to expand_login_view that attempted to preserve a dynamic
subdomain value. Such values should be handled using app.url_value_preprocessor
and app.url_defaults. #691
-Ensure deprecation warnings are present for deprecated features that will be
removed in the next feature release.
-Use request_loader instead of header_loader.
-Use user_loaded_from_request instead of user_loaded_from_header.
-Use app.config["LOGIN_DISABLED"] instead of _login_disabled.
-Use init_app instead of setup_app.
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-flask-login_0.6.2.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-flask-login_0.6.2.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-flask-login_0.6.2.bb b/meta-python/recipes-devtools/python/python3-flask-login_0.6.2.bb new file mode 100644 index 0000000000..97d7bce359 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-flask-login_0.6.2.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | SUMMARY = "User session management for Flask" | ||
2 | DESCRIPTION = "Flask-Login provides user session management for Flask. \ | ||
3 | It handles the common tasks of logging in, logging out, and remembering \ | ||
4 | your users’ sessions over extended periods of time." | ||
5 | HOMEPAGE = " https://github.com/maxcountryman/flask-login" | ||
6 | LICENSE = "MIT" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8aa87a1cd9fa41d969ad32cfdac2c596" | ||
8 | |||
9 | SRC_URI[sha256sum] = "c0a7baa9fdc448cdd3dd6f0939df72eec5177b2f7abe6cb82fc934d29caac9c3" | ||
10 | |||
11 | PYPI_PACKAGE = "Flask-Login" | ||
12 | |||
13 | inherit pypi setuptools3 | ||
14 | |||
15 | RDEPENDS:${PN}:class-target = "${PYTHON_PN}-flask" | ||