Skip to content

Commit 908ee84

Browse files
authored
Merge pull request jpadilla#255 from jpadilla/new-release
v1.5.0 release
2 parents 7992d81 + 5f317c3 commit 908ee84

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
77
[Unreleased][unreleased]
88
-------------------------------------------------------------------------
99
### Changed
10+
11+
### Fixed
12+
13+
[v1.5.0][1.5.0]
14+
-------------------------------------------------------------------------
15+
### Changed
1016
- Add support for ECDSA public keys in RFC 4253 (OpenSSH) format [#244][244]
11-
- Renamed commandline script `jwt` to `jwt-cli` to avoid issues with the script clobbering the `jwt` module in some circumstances.
17+
- Renamed commandline script `jwt` to `jwt-cli` to avoid issues with the script clobbering the `jwt` module in some circumstances. [#187][187]
1218
- Better error messages when using an algorithm that requires the cryptography package, but it isn't available [#230][230]
1319
- Tokens with future 'iat' values are no longer rejected [#190][190]
1420
- Non-numeric 'iat' values now raise InvalidIssuedAtError instead of DecodeError
15-
21+
- Remove rejection of future 'iat' claims [#252][252]
1622

1723
### Fixed
24+
- Add back 'ES512' for backward compatibility (for now) [#225][225]
25+
- Fix incorrectly named ECDSA algorithm [#219][219]
26+
- Fix rpm build [#196][196]
27+
28+
### Added
29+
- Add JWK support for HMAC and RSA keys [#202][202]
1830

1931
[v1.4.2][1.4.2]
2032
-------------------------------------------------------------------------
@@ -112,8 +124,7 @@ rarely used. Users affected by this should upgrade to 3.3+.
112124
[1.4.0]: https://github.com/jpadilla/pyjwt/compare/1.3.0...1.4.0
113125
[1.4.1]: https://github.com/jpadilla/pyjwt/compare/1.4.0...1.4.1
114126
[1.4.2]: https://github.com/jpadilla/pyjwt/compare/1.4.1...1.4.2
115-
116-
127+
[1.5.0]: https://github.com/jpadilla/pyjwt/compare/1.4.2...1.5.0
117128

118129
[109]: https://github.com/jpadilla/pyjwt/pull/109
119130
[110]: https://github.com/jpadilla/pyjwt/pull/110
@@ -135,3 +146,10 @@ rarely used. Users affected by this should upgrade to 3.3+.
135146
[190]: https://github.com/jpadilla/pyjwt/pull/190
136147
[213]: https://github.com/jpadilla/pyjwt/pull/214
137148
[244]: https://github.com/jpadilla/pyjwt/pull/244
149+
[202]: https://github.com/jpadilla/pyjwt/pull/202
150+
[252]: https://github.com/jpadilla/pyjwt/pull/252
151+
[225]: https://github.com/jpadilla/pyjwt/pull/225
152+
[219]: https://github.com/jpadilla/pyjwt/pull/219
153+
[196]: https://github.com/jpadilla/pyjwt/pull/196
154+
[187]: https://github.com/jpadilla/pyjwt/pull/187
155+
[230]: https://github.com/jpadilla/pyjwt/pull/230

jwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
__title__ = 'pyjwt'
13-
__version__ = '1.4.2'
13+
__version__ = '1.5.0'
1414
__author__ = 'José Padilla'
1515
__license__ = 'MIT'
1616
__copyright__ = 'Copyright 2015 José Padilla'

0 commit comments

Comments
 (0)