flask-jwt-simple
flask-jwt-simple copied to clipboard
A barebones Flask extension for creating and protecting endpoints with JWT
Bumps [babel](https://github.com/python-babel/babel) from 2.5.0 to 2.9.1. Release notes Sourced from babel's releases. Version 2.9.1 Bugfixes The internal locale-data loading functions now validate the name of the locale file to be...
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.22 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...
Bumps [py](https://github.com/pytest-dev/py) from 1.4.34 to 1.10.0. Changelog Sourced from py's changelog. 1.10.0 (2020-12-12) Fix a regular expression DoS vulnerability in the py.path.svnwc SVN blame functionality (CVE-2020-29651) Update vendored apipkg: 1.4...
Bumps [pygments](https://github.com/pygments/pygments) from 2.2.0 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...
Bumps [jinja2](https://github.com/pallets/jinja) from 2.9.6 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...
PyJWT changed `jwt.encode` to return str instead of bytes breaking Flask-JWT-Simple as seen below. ``` def _create_jwt(self, identity): jwt_data = self._get_jwt_data(identity) secret = config.encode_key algorithm = config.algorithm > return jwt.encode(jwt_data,...
flask-jwt-simple fail with py3.9 ``` self = identity = 'username' def _create_jwt(self, identity): jwt_data = self._get_jwt_data(identity) secret = config.encode_key algorithm = config.algorithm > return jwt.encode(jwt_data, secret, algorithm).decode('utf-8') E AttributeError: 'str'...
This patch was applied on Debian package: https://salsa.debian.org/python-team/packages/python-flask-jwt-simple/-/blob/debian/master/debian/patches/0001-Remove-intent-to-decode-a-str-value.patch Closes: #20
Hi, I have added support for ppc64le build on travis-ci in the branch . The travis-ci build log can be tracked on the link :https://travis-ci.com/github/sanjaymsh/flask-jwt-simple/builds/189060189 . I believe it is...
Stack trace on using command `pip install flast-jwt-oidc`: ```Collecting flask-jwt-oidc Downloading flask_jwt_oidc-0.1.5.tar.gz (9.7 kB) ERROR: Command errored out with exit status 1: command: /Users/aseed.usmani/PycharmProjects/testApp/venv/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0]...