File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- include LICENSE README.md dev- requirements.txt tox.ini
1+ include LICENSE README.md requirements.txt tox.ini
22recursive-include tests *.py
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ Flask-JWT-Extended not only adds support for using JSON Web Tokens (JWT) to Flas
55but also many helpful (and ** optional** ) features built in to make working with JSON Web Tokens
66easier. These include:
77
8- * Support for adding custom claims to JSON Web Tokens
8+ * Adding custom claims to JSON Web Tokens
99* Custom claims validation on received tokens
10- * Creating tokens from complex objects or complex object from received tokens ( current_user)
10+ * Automatic user loading ( ` current_user ` ).
1111* [ Refresh tokens] ( https://auth0.com/blog/refresh-tokens-what-are-they-and-when-to-use-them/ )
1212* First class support for fresh tokens for making sensitive changes.
1313* Token revoking/blocklisting
@@ -30,7 +30,7 @@ Come chat with the community or ask questions at https://discord.gg/EJBsbFd
3030Before making any changes, make sure to install the development requirements
3131and setup the git hooks which will automatically lint and format your changes.
3232``` bash
33- pip install -r dev- requirements.txt
33+ pip install -r requirements.txt
3434pre-commit install
3535```
3636
Original file line number Diff line number Diff line change 1818from .view_decorators import jwt_required
1919from .view_decorators import verify_jwt_in_request
2020
21- __version__ = "4.0.1 "
21+ __version__ = "4.0.2 "
You can’t perform that action at this time.
0 commit comments