summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2017-04-19 10:25:05 -0400
committerGitHub <noreply@github.com>2017-04-19 10:25:05 -0400
commit908ee84aeefb8126a94e48e88ba9916d9d2512b3 (patch)
tree4c5d256325aacfec1e8fc76529f11e65ba60450d
parent7992d81ac827d2e1f1bf0b4fd62fafdbae412197 (diff)
parent5f317c35ea7f863cbbff294235c12af739c8bae1 (diff)
downloadpyjwt-908ee84aeefb8126a94e48e88ba9916d9d2512b3.tar.gz
Merge pull request #255 from jpadilla/new-release1.5.0
v1.5.0 release
-rw-r--r--CHANGELOG.md26
-rw-r--r--jwt/__init__.py2
2 files changed, 23 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a84f2bf..04e5259 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,14 +7,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[Unreleased][unreleased]
-------------------------------------------------------------------------
### Changed
+
+### Fixed
+
+[v1.5.0][1.5.0]
+-------------------------------------------------------------------------
+### Changed
- Add support for ECDSA public keys in RFC 4253 (OpenSSH) format [#244][244]
-- Renamed commandline script `jwt` to `jwt-cli` to avoid issues with the script clobbering the `jwt` module in some circumstances.
+- Renamed commandline script `jwt` to `jwt-cli` to avoid issues with the script clobbering the `jwt` module in some circumstances. [#187][187]
- Better error messages when using an algorithm that requires the cryptography package, but it isn't available [#230][230]
- Tokens with future 'iat' values are no longer rejected [#190][190]
- Non-numeric 'iat' values now raise InvalidIssuedAtError instead of DecodeError
-
+- Remove rejection of future 'iat' claims [#252][252]
### Fixed
+- Add back 'ES512' for backward compatibility (for now) [#225][225]
+- Fix incorrectly named ECDSA algorithm [#219][219]
+- Fix rpm build [#196][196]
+
+### Added
+- Add JWK support for HMAC and RSA keys [#202][202]
[v1.4.2][1.4.2]
-------------------------------------------------------------------------
@@ -112,8 +124,7 @@ rarely used. Users affected by this should upgrade to 3.3+.
[1.4.0]: https://github.com/jpadilla/pyjwt/compare/1.3.0...1.4.0
[1.4.1]: https://github.com/jpadilla/pyjwt/compare/1.4.0...1.4.1
[1.4.2]: https://github.com/jpadilla/pyjwt/compare/1.4.1...1.4.2
-
-
+[1.5.0]: https://github.com/jpadilla/pyjwt/compare/1.4.2...1.5.0
[109]: https://github.com/jpadilla/pyjwt/pull/109
[110]: https://github.com/jpadilla/pyjwt/pull/110
@@ -135,3 +146,10 @@ rarely used. Users affected by this should upgrade to 3.3+.
[190]: https://github.com/jpadilla/pyjwt/pull/190
[213]: https://github.com/jpadilla/pyjwt/pull/214
[244]: https://github.com/jpadilla/pyjwt/pull/244
+[202]: https://github.com/jpadilla/pyjwt/pull/202
+[252]: https://github.com/jpadilla/pyjwt/pull/252
+[225]: https://github.com/jpadilla/pyjwt/pull/225
+[219]: https://github.com/jpadilla/pyjwt/pull/219
+[196]: https://github.com/jpadilla/pyjwt/pull/196
+[187]: https://github.com/jpadilla/pyjwt/pull/187
+[230]: https://github.com/jpadilla/pyjwt/pull/230
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 64b2f97..398d854 100644
--- a/jwt/__init__.py
+++ b/jwt/__init__.py
@@ -10,7 +10,7 @@ http://self-issued.info/docs/draft-jones-json-web-token-01.html
__title__ = 'pyjwt'
-__version__ = '1.4.2'
+__version__ = '1.5.0'
__author__ = 'José Padilla'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 José Padilla'