Skip to content

Commit 97794d6

Browse files
committed
1.2.0-beta.2
1 parent c416797 commit 97794d6

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# 1.2.0-beta.2
2+
3+
* The `getOwner` function is now read from the `Ember` object instead of
4+
importing it from `ember-getowner-polyfill` which fixes a deprecation, see
5+
#1124.
6+
* Transitions are no longer aborted in the `AuthenticatedRouteMixin` and
7+
`UnauthenticatedRouteMixin` which was simply unnecessary, see #1126.
8+
* There is now an assertion checking that a valid authorizer has been passed to
9+
the session's `authorize` method, see #1132.
10+
* The attempted transition is now being stored in a cookie when Ember Simple
11+
Auth intercepts a transition and redirects to the login route in the
12+
`AuthenticatedRouteMixin` so that the transition can be retried in the
13+
browser, see #1136.
14+
* The `ember-cookies` dependency has been updated to 0.0.11 which fixes a
15+
deprecation, see #1153.
16+
* Ember Simple Auth now longer uses `Ember.K`, see #1166.
17+
* Deprecated ways to use Ember's deprecations which caused a deprecation
18+
themselves have been fixed, see #1170.
19+
* There is now a warning when a `cookieExpirationTime` lower than 90 seconds is
20+
set as that will lead to problems with Ember Simple Auth's session time
21+
extension mechanism, see #1160.
22+
* Several parts of the documentation have been fixed and a new guide on
23+
implementing authentication with github has been added, see #1143, #1142,
24+
#1121, #1139.
25+
126
# 1.2.0-beta.1
227

328
* Ember Simple Auth now supports FastBoot out-of-the-box (when using the cookie

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-simple-auth",
3-
"version": "1.2.0-beta.1",
3+
"version": "1.2.0-beta.2",
44
"description": "A lightweight library for implementing authentication/authorization with Ember.js applications.",
55
"keywords": [
66
"ember-addon"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Ember.libraries.register('Ember Simple Auth', '1.2.0-beta.1');
1+
Ember.libraries.register('Ember Simple Auth', '1.2.0-beta.2');

0 commit comments

Comments
 (0)