Skip to content

Commit ba6b446

Browse files
committed
Merge branch 'master' into hotfix-twitter-login
2 parents 147dfb9 + e358a6d commit ba6b446

File tree

103 files changed

+1661
-1725
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+1661
-1725
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ doc
1414
# jeweler generated
1515
pkg
1616

17+
# byebug generated
18+
.byebug_history
19+
1720
# for RVM
1821
.rvmrc
1922

.travis.yml

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ language: ruby
22
rvm:
33
- jruby
44
- 2.0.0
5-
- 2.1
6-
- 2.2
7-
- 2.3.0
5+
- 2.1.10
6+
- 2.2.6
7+
- 2.3.3
8+
- 2.4.0
89

910
env:
1011
global:
@@ -31,11 +32,26 @@ matrix:
3132
- rvm: 2.0.0
3233
gemfile: gemfiles/active_record-rails42.gemfile
3334

34-
- rvm: jruby
35+
- rvm: 2.0.0
36+
gemfile: Gemfile
37+
38+
- rvm: 2.1.10
3539
gemfile: Gemfile
3640

37-
- rvm: 2.2
41+
- rvm: 2.2.6
42+
gemfile: gemfiles/active_record-rails40.gemfile
43+
44+
- rvm: 2.3.3
3845
gemfile: gemfiles/active_record-rails40.gemfile
3946

40-
- rvm: 2.3.0
47+
- rvm: 2.4.0
4148
gemfile: gemfiles/active_record-rails40.gemfile
49+
50+
- rvm: 2.4.0
51+
gemfile: gemfiles/active_record-rails41.gemfile
52+
53+
- rvm: 2.4.0
54+
gemfile: gemfiles/active_record-rails42.gemfile
55+
56+
- rvm: jruby
57+
gemfile: Gemfile

CHANGELOG.md

Lines changed: 19 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,28 @@
11
# Changelog
22

3-
## 1.0 (not released yet)
3+
## 0.10.2
4+
5+
* Added support for Microsoft OAuth (thanks to @athix) [#37](https://github.com/Sorcery/sorcery/pull/37)
6+
7+
## 0.10.1
8+
9+
* Fixed LinkedIn bug [#36](https://github.com/Sorcery/sorcery/pull/36)
10+
11+
## 0.10.0
412

513
* Adapters (Mongoid, MongoMapper, DataMapper) are now separated from the core Sorcery repo and moved under `sorcery-rails` organization. Special thanks to @juike!
614
* `current_users` method was removed
715
* Added `logged_in?` `logged_out?` `online?` to activity_logging instance methods
8-
* PayPal provider added to external submodule
16+
* Added support for PayPal OAuth (thanks to @rubenmoya)
17+
* Added support for Slack OAuth (thanks to @youzik)
18+
* Added support for WeChat OAuth (thanks to @Darmody)
919
* Deprecated Rails 3
1020
* Deprecated using `callback_filter` in favor of `callback_action`
1121
* Added null: false to migrations
22+
* Added support for Rails 5 (thanks to @kyuden)
23+
* Added support for Ruby 2.4 (thanks to @kyuden)
24+
* Added WeChat provider to external submodule.
25+
* Namespace login lock/unlock methods to fix conflicts with Rails lock/unlock (thanks to @kyuden)
1226

1327
## 0.9.1
1428

@@ -69,46 +83,17 @@
6983

7084
## 0.8.4
7185

72-
* Few security fixes in `external` module
86+
* Few security fixes in `external` module
7387

7488
## 0.8.3 (yanked because of bad Jeweler release)
7589

7690
## 0.8.2
7791

7892
* Activity logging feature has a new column called `last_login_from_ip_address` (string type). If you use ActiveRecord, you will have to add this column to DB ([#465](https://github.com/NoamB/sorcery/issues/465))
7993

80-
## 0.8.1
81-
<!-- TO BE WRITTEN -->
82-
83-
## 0.8.0
84-
<!-- TO BE WRITTEN -->
85-
86-
## 0.7.13
87-
<!-- TO BE WRITTEN -->
88-
89-
## 0.7.12
90-
<!-- TO BE WRITTEN -->
91-
92-
## 0.7.11
93-
<!-- TO BE WRITTEN -->
94-
95-
## 0.7.10
96-
<!-- TO BE WRITTEN -->
97-
98-
## 0.7.9
99-
<!-- TO BE WRITTEN -->
100-
101-
## 0.7.8
102-
<!-- TO BE WRITTEN -->
103-
104-
## 0.7.7
105-
<!-- TO BE WRITTEN -->
106-
107-
## 0.7.6
108-
<!-- TO BE WRITTEN -->
94+
## 0.7.5-0.8.1
10995

110-
## 0.7.5
111-
<!-- TO BE WRITTEN -->
96+
<!-- HERE BE DRAGONS (Changelogs never written) -->
11297

11398
## 0.7.1-0.7.4
11499

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source 'https://rubygems.org'
22

3-
gem 'rails', '~> 4.0'
3+
gem 'rails', '~> 5.0.0'
4+
gem 'rails-controller-testing'
45
gem 'sqlite3'
56
gem 'pry'
67

0 commit comments

Comments
 (0)