Skip to content
This repository has been archived by the owner on Jan 29, 2019. It is now read-only.

Commit

Permalink
0.11 release! Let’s hope it ain’t broken.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kelly committed Sep 25, 2014
1 parent b1f8068 commit 32132e0
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
History
-------

0.11 (2014-09-25)
+++++++++++++++++++
- Add support for local assertion verification instead of relying on the remote
verification service if PyBrowserID is installed.

- Add an auto-login backend to support offline local development when the
Persona service isn't available.

- Run automated tests for Django 1.7.

- Use the stateless Persona API, removing the need to work around issues
involving Persona attempting to auto-login or auto-logout users.

- Add support for setting an `on_ready` handler to be executed when the Persona
API is ready to fetch assertions.

- Fix broken Django admin integration.

- Fix some issues around CSRF tokens used during the login process.

- Improve logging when using the default verify view so that it doesn't look
like an error.

- Various documentation updates.


0.10.1 (2014-05-02)
+++++++++++++++++++
- Add ``browserid_info`` helper back in. The previous method of fetching the
Expand Down
2 changes: 1 addition & 1 deletion django_browserid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""
__version__ = '0.10.1'
__version__ = '0.11'

from django_browserid.auth import (
BrowserIDBackend,
Expand Down
5 changes: 5 additions & 0 deletions docs/user/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ in the right place. This document describes the major changes required to get
your site up to the latest and greatest!


0.10.1 to 0.11
--------------
No changes are necessary to switch from 0.10.1 to 0.11.


0.9 to 0.10.1
-------------
- The minimum supported version of requests is now 1.0.0, and six has been
Expand Down

0 comments on commit 32132e0

Please sign in to comment.