Skip to content

Releases: mpdavis/python-jose

1.3.1

02 Sep 12:18
Compare
Choose a tag to compare

1.3.0

01 Sep 15:09
Compare
Choose a tag to compare

1.2.0

27 Jul 20:25
Compare
Choose a tag to compare

1.1.0

22 Jul 12:54
Compare
Choose a tag to compare

New Features

1.0.0

23 Jun 04:56
Compare
Choose a tag to compare

JWK Support

JWKs are now supported as first class objects.

JWK Improvements

0.7.0

15 Jun 15:39
Compare
Choose a tag to compare

0.6.2

01 Jun 18:06
Compare
Choose a tag to compare

0.6.1

02 Mar 02:23
Compare
Choose a tag to compare

Fix missing future dependency for python2.

My apologies for breaking 0.6.0.

0.6.0

01 Mar 06:22
Compare
Choose a tag to compare

JWS API Changes

A couple of alterations to the JWS API to account for strings to be signed as opposed to only JSON objects.

If you pass jws.sign() a string, it will no longer try to parse it as a JSON object. Additionally, jws.verify() now returns a string instead of attempting to load that string as a JSON object.

Strings are perfectly valid JWS payloads.

The extra step of loading the JSON object has been moved to jwt.decode() because that is required to be a JSON object.

RSA JWKs

A JWK dictionary can now be passed directly to RSAKey.prepare_key() in order to construct that key. Once this works for every key type, I am going to bump to version 1.0.

0.5.6

22 Jan 15:39
Compare
Choose a tag to compare

Relaxed requirements.