flask-jwt-extended

An open source Flask extension that provides JWT support (with batteries included)!

MIT License

Downloads
18M
Stars
1.5K
Committers
92

Bot releases are visible (Hide)

flask-jwt-extended - 1.0.3

Published by vimalloc almost 8 years ago

  • Better error messages when using a different header name than 'Authorization'
flask-jwt-extended - 1.0.2

Published by vimalloc almost 8 years ago

  • Fix using alternative header names. There was an option for alternate header names before, but it was hard coded to look for JWTs under the default 'Authorization' header.
flask-jwt-extended - 1.0.1

Published by vimalloc almost 8 years ago

  • Switch to semantic versioning
  • Set PROPAGATE_EXCEPTIONS=True. Should fix the extension when run in production
flask-jwt-extended - 0.0.9

Published by vimalloc almost 8 years ago

(minor release)

  • Fix returned json when NoAuthorizationError is raised and cookies are being used to store the JWT
flask-jwt-extended - 0.0.8

Published by vimalloc almost 8 years ago

  • Removes option identity_lookup kwarg in create_access_token() function, introduced in 0.0.7. Now uses the decorator @jwt.user_identity_loader to perform this functionality. This is a breaking change.
flask-jwt-extended - 0.0.7

Published by vimalloc about 8 years ago

  • create_access_token() now defaults to non-fresh tokens
  • Adds a help method for logging out when using cookies to store the JWTs: unset_jwt_cookies()
  • Allows passing complex objects into the create_access_token() function, to prevent unnecessary duplicate disk lookups. See #11
flask-jwt-extended - 0.0.6

Published by vimalloc about 8 years ago

  • Fixes jwt_required (et al) decorators to work with flask-restless (and probably other frameworks as well)
flask-jwt-extended - 0.0.5

Published by vimalloc about 8 years ago

  • Better examples for common use cases
  • Unify cookie API's (breaking change, set_refresh_cookie is now set_refresh_cookies)
flask-jwt-extended - 0.0.4

Published by vimalloc about 8 years ago

  • Fix csrf cookie paths, so javascript outside of that path can still access the csrf token.
flask-jwt-extended - 0.0.3

Published by vimalloc about 8 years ago

  • Adds support for storing JWTs in cookies, and CSRF protection
  • Adds readthedoc documentation (thanks @rlam3)
flask-jwt-extended - 0.0.2

Published by vimalloc about 8 years ago

  • Remove unused code
  • Add support for custom authorization headers
  • Fix decoding for non-default algorithm
  • Updated examples