Skip to content

Commit

Permalink
Merge branch 'strategies'
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Otte-Witte committed Jan 20, 2014
2 parents de3d1b8 + ba86585 commit 83590de
Show file tree
Hide file tree
Showing 44 changed files with 2,680 additions and 1,376 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 0.1.0

The Big Rewrite™, see the [README](https://github.com/simplabs/ember-simple-auth#readme) and the [release notes](https://github.com/simplabs/ember-simple-auth/releases/tag/0.1.0).

The main changes are:

* all code that is specific to concrete authentication/authorization mechanisms was moved into strategy classes (see e.g. Authenticators.OAuth2, Authorizers.OAuth2)
* instead of persisting the session in cookies, the default store is now `localStorage`
* Ember.SimpleAuth.setup does not expect the container as first argument anymore, now takes only the application object
* the terms login/logout were replaced by session authentication/session invalidation
* OAuth 2.0 client authentication was removed from the default library as it does not really work for public clients

# 0.0.11

* fixed cross origin check for Firefox (which doesn't implement location.origin), see #41
Expand Down
54 changes: 28 additions & 26 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GIT
remote: https://github.com/emberjs/ember-dev.git
revision: 024ae632632670cfc559b1ccf5e9325aea970e57
revision: a99e27d4f40ee5c183e6721dfefd6717cb78be22
specs:
ember-dev (0.1)
aws-sdk
Expand All @@ -26,50 +26,52 @@ GIT
GEM
remote: https://rubygems.org/
specs:
aws-sdk (1.20.0)
aws-sdk (1.31.0)
json (~> 1.4)
nokogiri (>= 1.4.4, < 1.6.0)
nokogiri (>= 1.4.4)
uuidtools (~> 2.1)
celluloid (0.15.2)
timers (~> 1.1.0)
colored (1.2)
diff-lcs (1.2.4)
ember-source (1.0.0)
handlebars-source (= 1.0.12)
diff-lcs (1.2.5)
ember-source (1.2.0.1)
handlebars-source (~> 1.1.2)
execjs (2.0.2)
ffi (1.9.0)
github-markdown (0.6.1)
ffi (1.9.3)
github-markdown (0.6.3)
grit (2.5.0)
diff-lcs (~> 1.1)
mime-types (~> 1.15)
posix-spawn (~> 0.3.6)
handlebars-source (1.0.12)
json (1.8.0)
kicker (2.6.1)
listen
listen (2.0.0)
celluloid (>= 0.15.1)
handlebars-source (1.1.2)
json (1.8.1)
kicker (3.0.0)
listen (~> 1.3.0)
notify (~> 0.5.2)
listen (1.3.1)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
mime-types (1.25)
multi_json (1.8.1)
nokogiri (1.5.10)
posix-spawn (0.3.6)
puma (2.6.0)
rb-kqueue (>= 0.2)
mime-types (1.25.1)
mini_portile (0.5.2)
nokogiri (1.6.1)
mini_portile (~> 0.5.0)
notify (0.5.2)
posix-spawn (0.3.8)
puma (2.7.1)
rack (>= 1.1, < 2.0)
rack (1.5.2)
rake (10.1.0)
rake (10.1.1)
rake-pipeline-web-filters (0.7.0)
rack
rake-pipeline (~> 0.6)
rb-fsevent (0.9.3)
rb-inotify (0.9.2)
rb-inotify (0.9.3)
ffi (>= 0.5.0)
rb-kqueue (0.2.0)
ffi (>= 0.5.0)
thor (0.18.1)
timers (1.1.0)
uglifier (2.2.1)
uglifier (2.4.0)
execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2)
json (>= 1.8.0)
uuidtools (2.1.4)

PLATFORMS
Expand Down
Loading

0 comments on commit 83590de

Please sign in to comment.