- Update to 4.5.2:

* Updated typing of expires_delta and fresh by @eMaerthin in #510
  * Allow selective disabling of blocklist check by @indrajeet307 in #501
  * Fix compatibility with flask version 2.3 (#493)
  * Drop support for python 3.6
  * Add option to include current_user in jinja templates by default (#478)
  * Fix mypy type checks for current_user (#488)
  * Fix mypy explicitly mark exported names #484
  * Fix verify_type being set to False by default in
    verify_jwt_in_request() #483
  * Fix PEP 561 compatibility #480
  * Drop support for Flask 1
  * Add verify_type argument to view decorators to allow accepting both
    refresh & access tokens #460
  * Relax dependency pinning for cryptography package (#467)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-flask-jwt-extended?expand=0&rev=21
This commit is contained in:
Steve Kowalik 2023-06-19 06:25:37 +00:00 committed by Git OBS Bridge
parent 02c0cff130
commit 5c46d3a4e8
4 changed files with 30 additions and 10 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad6977b07c54e51c13b5981afc246868b9901a46715d9b9827898bfd916aae88
size 31508

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ba56245ba43b71c8ae936784b867625dce8b9956faeedec2953222e57942fb0b
size 34227

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Jun 19 06:23:48 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 4.5.2:
* Updated typing of expires_delta and fresh by @eMaerthin in #510
* Allow selective disabling of blocklist check by @indrajeet307 in #501
* Fix compatibility with flask version 2.3 (#493)
* Drop support for python 3.6
* Add option to include current_user in jinja templates by default (#478)
* Fix mypy type checks for current_user (#488)
* Fix mypy explicitly mark exported names #484
* Fix verify_type being set to False by default in
verify_jwt_in_request() #483
* Fix PEP 561 compatibility #480
* Drop support for Flask 1
* Add verify_type argument to view decorators to allow accepting both
refresh & access tokens #460
* Relax dependency pinning for cryptography package (#467)
-------------------------------------------------------------------
Sat Feb 19 18:20:15 UTC 2022 - Arun Persaud <arun@gmx.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-flask-jwt-extended
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -18,7 +18,7 @@
%define skip_python2 1
Name: python-flask-jwt-extended
Version: 4.3.1
Version: 4.5.2
Release: 0
Summary: A Flask extension that provides JWT support
License: MIT
@ -28,9 +28,11 @@ BuildRequires: %{python_module Flask >= 1.0}
BuildRequires: %{python_module PyJWT >= 2.0}
BuildRequires: %{python_module Werkzeug >= 0.14}
BuildRequires: %{python_module cryptography >= 3.0}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module python-dateutil}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Flask >= 1.0
@ -58,10 +60,10 @@ Web Tokens easier. These include:
%setup -q -n Flask-JWT-Extended-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}/flask_jwt_extended
%check
@ -70,8 +72,7 @@ Web Tokens easier. These include:
%files %{python_files}
%license LICENSE
%doc README.md
%dir %{python_sitelib}/flask_jwt_extended
%{python_sitelib}/flask_jwt_extended/*
%{python_sitelib}/Flask_JWT_Extended-%{version}-py*.egg-info
%{python_sitelib}/flask_jwt_extended
%{python_sitelib}/Flask_JWT_Extended-%{version}.dist-info
%changelog