Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Last 3.1.0 tweaks #159

Merged
merged 5 commits into from
Dec 10, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update CHANGELOG.md
  • Loading branch information
blag committed Dec 10, 2019
commit 583c4973ebd39f23b2de67b9b57dd2675c28804f
86 changes: 45 additions & 41 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,45 @@
---------
Changelog
---------

3.1.0 -- 2019-??-??
^^^^^^^^^^^^^^^^^^^

Major
"""""

* Require claim options added.
`#98 <https://github.com/mpdavis/python-jose/pull/98>`_
* Isolate and flesh out cryptographic backends to enable independent operation.
`#114 <https://github.com/mpdavis/python-jose/issues/114>`_
`#129 <https://github.com/mpdavis/python-jose/pull/129>`_
* Remove pyca/cryptography backend's dependency on python-ecdsa.
`#117 <https://github.com/mpdavis/python-jose/pull/117>`_
* Remove pycrypto/dome backends' dependency on python-rsa.
`#121 <https://github.com/mpdavis/python-jose/pull/121>`_
* Make pyca/cryptography backend the preferred backend if multiple backends are present.
`#122 <https://github.com/mpdavis/python-jose/pull/122>`_
* Allow for headless JWT by sorting headers when serializing.
`#136 <https://github.com/mpdavis/python-jose/pull/136>`_

Bugfixes
""""""""

* Fix invalid RSA private key PKCS8 encoding by python-rsa backend.
`#120 <https://github.com/mpdavis/python-jose/pull/120>`_

Housekeeping
""""""""""""

* Test each cryptographic backend independently in CI.
`#114 <https://github.com/mpdavis/python-jose/issues/114>`_
`#129 <https://github.com/mpdavis/python-jose/pull/129>`_
`#135 <https://github.com/mpdavis/python-jose/pull/135>`_
* Add flake8 checks in CI.
* Add CPython 3.7 and PyPy 3.5 testing in CI.
* Remove package future as a dependency, not needed anymore.
* Fix warnings from py.test.
# Changelog #

## 3.1.0 -- 2019-12-10 ##

This is a greatly overdue release.

### Features ###

* Improve `JWT.decode()` #76 (fixes #75)
* Sort headers when serializing to allow for headless JWT #136 (fixes #80)
* Adjust dependency handling
- Use PyCryptodome instead of PyCrypto #83
- Update package dependencies #124 (fixes #158)
* Avoid using deprecated methods #85
* Support X509 certificates #107
* Isolate and flesh out cryptographic backends to enable independent operation #129 (fixes #114)
- Remove pyca/cryptography backend's dependency on python-ecdsa #117
- Remove pycrypto/dome backends' dependency on python-rsa #121
- Make pyca/cryptography backend the preferred backend if multiple backends are present #122

### Bugfixes/Improvements ###

* Enable flake8 check in tox/TravisCI #77
* Fix `crytography` dependency typo #94
* Trigger tests using `python setup.py test` #97
* Properly raise an error if a claim is expected and not given #98
* Typo fixes #110
* Fix invalid RSA private key PKCS8 encoding by python-rsa backend #120 (fixes #119)
* Remove `future` dependency #134 (fixes #112)
* Fix incorrect use of `pytest.raises(message=...)` #141
* Typo fix #143
* Clarify sign docstring to allow for `dict` payload #150

### Housekeeping ###

* Streamline the code a bit and update classifiers #87
* Fix typo and rephrase `access_token` documentation #89
* Code linting now mostly honors flake8 #101
* Document using a `dict` for `jwt.encode` and `jwt.decode` #103
* Include docs and tests in source distributions #111
* Updating README descriptions of crypto backends #130
* Document versioning policy #131
* Add `CHANGELOG.rst` #132 (fixes #99)
* Simplify and extend `.travis.yml` #135
* Move `CHANGELOG.rst` to `CHANGELOG.md` and update it #158