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

Commit 32132e0

Browse files
author
Michael Kelly
committed
0.11 release! Let’s hope it ain’t broken.
1 parent b1f8068 commit 32132e0

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

CHANGELOG.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
33
History
44
-------
55

6+
0.11 (2014-09-25)
7+
+++++++++++++++++++
8+
- Add support for local assertion verification instead of relying on the remote
9+
verification service if PyBrowserID is installed.
10+
11+
- Add an auto-login backend to support offline local development when the
12+
Persona service isn't available.
13+
14+
- Run automated tests for Django 1.7.
15+
16+
- Use the stateless Persona API, removing the need to work around issues
17+
involving Persona attempting to auto-login or auto-logout users.
18+
19+
- Add support for setting an `on_ready` handler to be executed when the Persona
20+
API is ready to fetch assertions.
21+
22+
- Fix broken Django admin integration.
23+
24+
- Fix some issues around CSRF tokens used during the login process.
25+
26+
- Improve logging when using the default verify view so that it doesn't look
27+
like an error.
28+
29+
- Various documentation updates.
30+
31+
632
0.10.1 (2014-05-02)
733
+++++++++++++++++++
834
- Add ``browserid_info`` helper back in. The previous method of fetching the

django_browserid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
License, v. 2.0. If a copy of the MPL was not distributed with this
66
file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
"""
8-
__version__ = '0.10.1'
8+
__version__ = '0.11'
99

1010
from django_browserid.auth import (
1111
BrowserIDBackend,

docs/user/upgrading.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ in the right place. This document describes the major changes required to get
55
your site up to the latest and greatest!
66

77

8+
0.10.1 to 0.11
9+
--------------
10+
No changes are necessary to switch from 0.10.1 to 0.11.
11+
12+
813
0.9 to 0.10.1
914
-------------
1015
- The minimum supported version of requests is now 1.0.0, and six has been

0 commit comments

Comments
 (0)