Skip to content

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoow committed Jun 25, 2014
2 parents 95c6416 + c76ca36 commit 9eb0b0d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.6.2

* The `crossOriginWhitelist` is now loaded from `window.ENV` correctly, see
#218.

# 0.6.1

* __[BREAKING] All factory properties that previously had a "Factory" suffix
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-simple-auth-cookie-store/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ember-simple-auth-cookie-store",
"main": "simple-auth-cookie-store",
"version": "0.6.1",
"version": "0.6.2",
"description": "A Cookie based store for Ember Simple Auth.",
"author": "Marco Otte-Witte",
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-simple-auth-devise/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ember-simple-auth-devise",
"main": "simple-auth-devise",
"version": "0.6.1",
"version": "0.6.2",
"description": "An authenticator and authorizer for Ember Simple Auth that is compatible with the Ruby on Rails plugin devise.",
"author": "Timothy Baron, Marco Otte-Witte",
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-simple-auth-oauth2/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ember-simple-auth-oauth2",
"main": "simple-auth-oauth2",
"version": "0.6.1",
"version": "0.6.2",
"description": "An authenticator and authorizer for Ember Simple Auth that implement RFC 6749 OAuth 2.0 and RFC 6750 (Bearer Tokens).",
"author": "Marco Otte-Witte",
"license": "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export default {
this.sessionPropertyName = globalConfig.sessionPropertyName || this.sessionPropertyName;
this.authorizer = globalConfig.authorizer || this.authorizer;
this.store = globalConfig.store || this.store;
this.crossOriginWhitelist = globalConfig.crossOriginWhitelist || this.crossOriginWhitelist;
this.applicationRootUrl = container.lookup('router:main').get('rootURL') || '/';
}
};
2 changes: 1 addition & 1 deletion packages/ember-simple-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ember-simple-auth",
"main": "simple-auth",
"version": "0.6.1",
"version": "0.6.2",
"description": "A lightweight library for implementing authentication/authorization with Ember.js applications.",
"author": "Marco Otte-Witte",
"license": "MIT"
Expand Down

0 comments on commit 9eb0b0d

Please sign in to comment.