Skip to content

Releases: vimalloc/flask-jwt-extended

1.2.0

30 Jan 02:24
Compare
Choose a tag to compare
  • Adds support for using JWTs in cookies and tokens at the same time (refs #26)

1.1.0

12 Jan 00:05
Compare
Choose a tag to compare
  • Tested against python 3.6
  • Adds ability to access full (raw) jwt in a protected endpoint (#22)

1.0.3

31 Dec 18:42
Compare
Choose a tag to compare
  • Better error messages when using a different header name than 'Authorization'

1.0.2

23 Dec 01:45
Compare
Choose a tag to compare
  • 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.

1.0.1

15 Dec 19:13
Compare
Choose a tag to compare
  • Switch to semantic versioning
  • Set PROPAGATE_EXCEPTIONS=True. Should fix the extension when run in production

0.0.9

29 Oct 21:48
Compare
Choose a tag to compare

(minor release)

  • Fix returned json when NoAuthorizationError is raised and cookies are being used to store the JWT

0.0.8

21 Oct 20:17
Compare
Choose a tag to compare
  • 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.

0.0.7

18 Oct 22:16
Compare
Choose a tag to compare
  • 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

0.0.6

17 Oct 18:12
Compare
Choose a tag to compare
  • Fixes jwt_required (et al) decorators to work with flask-restless (and probably other frameworks as well)

0.0.5

16 Oct 15:08
Compare
Choose a tag to compare
  • Better examples for common use cases
  • Unify cookie API's (breaking change, set_refresh_cookie is now set_refresh_cookies)