mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 23:58:06 -05:00
Add support for Rails 7
This commit adds support for latest Rails release.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
### unreleased
|
### unreleased
|
||||||
|
|
||||||
* enhancements
|
* enhancements
|
||||||
* Add support for Rails 7.0 rc.
|
* Add support for Rails 7.0
|
||||||
|
|
||||||
### 4.8.0 - 2021-04-29
|
### 4.8.0 - 2021-04-29
|
||||||
|
|
||||||
|
|||||||
2
Gemfile
2
Gemfile
@@ -4,7 +4,7 @@ source "https://rubygems.org"
|
|||||||
|
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
gem "rails", "~> 7.0.0.rc1"
|
gem "rails", "~> 7.0.0"
|
||||||
gem "omniauth"
|
gem "omniauth"
|
||||||
gem "omniauth-oauth2"
|
gem "omniauth-oauth2"
|
||||||
gem "rdoc"
|
gem "rdoc"
|
||||||
|
|||||||
112
Gemfile.lock
112
Gemfile.lock
@@ -20,61 +20,61 @@ PATH
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actioncable (7.0.0.rc1)
|
actioncable (7.0.0)
|
||||||
actionpack (= 7.0.0.rc1)
|
actionpack (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
actionmailbox (7.0.0.rc1)
|
actionmailbox (7.0.0)
|
||||||
actionpack (= 7.0.0.rc1)
|
actionpack (= 7.0.0)
|
||||||
activejob (= 7.0.0.rc1)
|
activejob (= 7.0.0)
|
||||||
activerecord (= 7.0.0.rc1)
|
activerecord (= 7.0.0)
|
||||||
activestorage (= 7.0.0.rc1)
|
activestorage (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
mail (>= 2.7.1)
|
mail (>= 2.7.1)
|
||||||
actionmailer (7.0.0.rc1)
|
actionmailer (7.0.0)
|
||||||
actionpack (= 7.0.0.rc1)
|
actionpack (= 7.0.0)
|
||||||
actionview (= 7.0.0.rc1)
|
actionview (= 7.0.0)
|
||||||
activejob (= 7.0.0.rc1)
|
activejob (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
mail (~> 2.5, >= 2.5.4)
|
mail (~> 2.5, >= 2.5.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
actionpack (7.0.0.rc1)
|
actionpack (7.0.0)
|
||||||
actionview (= 7.0.0.rc1)
|
actionview (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
rack (~> 2.0, >= 2.2.0)
|
rack (~> 2.0, >= 2.2.0)
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
actiontext (7.0.0.rc1)
|
actiontext (7.0.0)
|
||||||
actionpack (= 7.0.0.rc1)
|
actionpack (= 7.0.0)
|
||||||
activerecord (= 7.0.0.rc1)
|
activerecord (= 7.0.0)
|
||||||
activestorage (= 7.0.0.rc1)
|
activestorage (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
globalid (>= 0.6.0)
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (7.0.0.rc1)
|
actionview (7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.4)
|
erubi (~> 1.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
activejob (7.0.0.rc1)
|
activejob (7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (7.0.0.rc1)
|
activemodel (7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
activerecord (7.0.0.rc1)
|
activerecord (7.0.0)
|
||||||
activemodel (= 7.0.0.rc1)
|
activemodel (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
activestorage (7.0.0.rc1)
|
activestorage (7.0.0)
|
||||||
actionpack (= 7.0.0.rc1)
|
actionpack (= 7.0.0)
|
||||||
activejob (= 7.0.0.rc1)
|
activejob (= 7.0.0)
|
||||||
activerecord (= 7.0.0.rc1)
|
activerecord (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
mini_mime (>= 1.1.0)
|
mini_mime (>= 1.1.0)
|
||||||
activesupport (7.0.0.rc1)
|
activesupport (7.0.0)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
@@ -109,7 +109,7 @@ GEM
|
|||||||
i18n (1.8.11)
|
i18n (1.8.11)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
jwt (2.3.0)
|
jwt (2.3.0)
|
||||||
loofah (2.12.0)
|
loofah (2.13.0)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.5.9)
|
nokogiri (>= 1.5.9)
|
||||||
mail (2.7.1)
|
mail (2.7.1)
|
||||||
@@ -118,7 +118,7 @@ GEM
|
|||||||
method_source (1.0.0)
|
method_source (1.0.0)
|
||||||
mini_mime (1.1.2)
|
mini_mime (1.1.2)
|
||||||
mini_portile2 (2.6.1)
|
mini_portile2 (2.6.1)
|
||||||
minitest (5.14.4)
|
minitest (5.15.0)
|
||||||
mocha (1.13.0)
|
mocha (1.13.0)
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
multi_xml (0.6.0)
|
multi_xml (0.6.0)
|
||||||
@@ -155,28 +155,28 @@ GEM
|
|||||||
rack
|
rack
|
||||||
rack-test (1.1.0)
|
rack-test (1.1.0)
|
||||||
rack (>= 1.0, < 3)
|
rack (>= 1.0, < 3)
|
||||||
rails (7.0.0.rc1)
|
rails (7.0.0)
|
||||||
actioncable (= 7.0.0.rc1)
|
actioncable (= 7.0.0)
|
||||||
actionmailbox (= 7.0.0.rc1)
|
actionmailbox (= 7.0.0)
|
||||||
actionmailer (= 7.0.0.rc1)
|
actionmailer (= 7.0.0)
|
||||||
actionpack (= 7.0.0.rc1)
|
actionpack (= 7.0.0)
|
||||||
actiontext (= 7.0.0.rc1)
|
actiontext (= 7.0.0)
|
||||||
actionview (= 7.0.0.rc1)
|
actionview (= 7.0.0)
|
||||||
activejob (= 7.0.0.rc1)
|
activejob (= 7.0.0)
|
||||||
activemodel (= 7.0.0.rc1)
|
activemodel (= 7.0.0)
|
||||||
activerecord (= 7.0.0.rc1)
|
activerecord (= 7.0.0)
|
||||||
activestorage (= 7.0.0.rc1)
|
activestorage (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 7.0.0.rc1)
|
railties (= 7.0.0)
|
||||||
rails-dom-testing (2.0.3)
|
rails-dom-testing (2.0.3)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
rails-html-sanitizer (1.4.2)
|
rails-html-sanitizer (1.4.2)
|
||||||
loofah (~> 2.3)
|
loofah (~> 2.3)
|
||||||
railties (7.0.0.rc1)
|
railties (7.0.0)
|
||||||
actionpack (= 7.0.0.rc1)
|
actionpack (= 7.0.0)
|
||||||
activesupport (= 7.0.0.rc1)
|
activesupport (= 7.0.0)
|
||||||
method_source
|
method_source
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
@@ -215,7 +215,7 @@ DEPENDENCIES
|
|||||||
omniauth-facebook
|
omniauth-facebook
|
||||||
omniauth-oauth2
|
omniauth-oauth2
|
||||||
omniauth-openid
|
omniauth-openid
|
||||||
rails (~> 7.0.0.rc1)
|
rails (~> 7.0.0)
|
||||||
rails-controller-testing!
|
rails-controller-testing!
|
||||||
rdoc
|
rdoc
|
||||||
responders (~> 3.0)
|
responders (~> 3.0)
|
||||||
|
|||||||
Reference in New Issue
Block a user