Skip to content

Commit

Permalink
Bump version: 0.1.10 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johngian committed Jun 7, 2017
1 parent 7aa32e5 commit ebcef60
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@
History
-------
0.2.0 (2017-06-07)
+++++++++++++++++++

Backwards-incompatible changes:

* Drop support for Django 1.9 (#130)

If you're using Django 1.9, you should update Django first.

* Move middleware to `mozilla_django_oidc.middleware` and
change it to use authentication endpoint with `prompt=none` (#94)

You'll need to update your `MIDDLEWARE_CLASSES`/`MIDDLEWARE`
setting accordingly.

* Remove legacy base64 handling of OIDC secret. Now RP secret
should be plaintext.

Features:

* Add support for Django 1.11 and Python 3.6 (#85)
* Update middleware to work with Django 1.10+ (#90)
* Documentation updates
* Rework test infrastructure so it's tox-based (#100)

Bugs:

* always decode verified token before json.load() (#116)
* always redirect to logout_url even when logged out (#121)
* Change email matching to be case-insensitive (#102)
* Allow combining OIDCAuthenticationBackend with other backends (#87)
* fix is_authenticated usage for Django 1.10+ (#125)

0.1.0 (2016-10-12)
++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion mozilla_django_oidc/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.10'
__version__ = '0.2.0'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.10
current_version = 0.2.0
commit = True
tag = True

Expand Down

0 comments on commit ebcef60

Please sign in to comment.