Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7314788
adding controller strategies configuration to limit which are run
Jul 29, 2021
bdd2e7e
Fix comment in some modules
chihaso Sep 17, 2021
7d103bc
Merge pull request #5405 from chihaso/fix_comment_in_some_modules
carlosantoniodasilva Oct 6, 2021
366a428
Revise docs from #5405
carlosantoniodasilva Oct 6, 2021
b39faff
Test against Rails main and remove `ActiveSupport::Dependencies.refer…
ghiculescu Oct 7, 2021
a0ccc1c
Fix deprecated `ActiveSupport::Dependencies.constantize` (#5397)
strobilomyces Oct 7, 2021
f3e8fd3
Move the Gemfile to test with Rails 7.0 alpha2, fix session test issue
carlosantoniodasilva Oct 7, 2021
14eb136
Eliminate Rails 7 warning about Active Record legacy connection handling
carlosantoniodasilva Oct 7, 2021
51bf327
Refactor using helper to swap config
carlosantoniodasilva Oct 7, 2021
772b74a
Update Changelog adding Rails 7 support
carlosantoniodasilva Oct 7, 2021
bb879f7
Merge branch 'ca-rails-main'
carlosantoniodasilva Oct 7, 2021
8593801
Keep the constantize behavior consistent for versions prior to Rails 7
carlosantoniodasilva Oct 8, 2021
9f5b837
Bundle update to Rails 7.0 rc1
carlosantoniodasilva Dec 8, 2021
289dd5f
Add support for Rails 7
dixpac Dec 16, 2021
baf5e00
Merge pull request #5435 from dixpac/dix/rails_7
carlosantoniodasilva Dec 16, 2021
43800b4
Bump to 4.8.1 with Rails 7 support
carlosantoniodasilva Dec 16, 2021
025b1c8
Add date to v4.8.1 changelog [ci skip]
carlosantoniodasilva Dec 16, 2021
a2760cc
adding controller strategies configuration to limit which are run
Jul 29, 2021
a3143b4
Merge branch 'RL_feature/configure_strategies_per_controller' of gith…
Jan 7, 2022
882573f
change strategies controller class variable to be an instance method
Jan 8, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
matrix:
gemfile:
- Gemfile
- gemfiles/Gemfile-rails-main
- gemfiles/Gemfile-rails-6-1
- gemfiles/Gemfile-rails-6-0
- gemfiles/Gemfile-rails-5-2
- gemfiles/Gemfile-rails-5-1
Expand All @@ -30,6 +32,10 @@ jobs:
gemfile: Gemfile
- ruby: 2.1
gemfile: gemfiles/Gemfile-rails-6-0
- ruby: 2.1
gemfile: gemfiles/Gemfile-rails-6-1
- ruby: 2.1
gemfile: gemfiles/Gemfile-rails-main
- ruby: 2.1
gemfile: gemfiles/Gemfile-rails-5-2
- ruby: 2.1
Expand All @@ -40,24 +46,44 @@ jobs:
gemfile: Gemfile
- ruby: 2.2
gemfile: gemfiles/Gemfile-rails-6-0
- ruby: 2.2
gemfile: gemfiles/Gemfile-rails-6-1
- ruby: 2.2
gemfile: gemfiles/Gemfile-rails-main
- ruby: 2.2
gemfile: gemfiles/Gemfile-rails-5-2
- ruby: 2.3
gemfile: Gemfile
- ruby: 2.3
gemfile: gemfiles/Gemfile-rails-6-0
- ruby: 2.3
gemfile: gemfiles/Gemfile-rails-6-1
- ruby: 2.3
gemfile: gemfiles/Gemfile-rails-main
- ruby: 2.4
gemfile: Gemfile
- ruby: 2.4
gemfile: gemfiles/Gemfile-rails-6-0
- ruby: 2.4
gemfile: gemfiles/Gemfile-rails-6-1
- ruby: 2.4
gemfile: gemfiles/Gemfile-rails-main
- ruby: 2.4
gemfile: gemfiles/Gemfile-rails-4-1
- ruby: 2.5
gemfile: gemfiles/Gemfile-rails-4-1
- ruby: 2.5
gemfile: gemfiles/Gemfile-rails-main
- ruby: 2.5
gemfile: Gemfile
- ruby: 2.6
gemfile: gemfiles/Gemfile-rails-4-1
- ruby: 2.6
gemfile: gemfiles/Gemfile-rails-4-2
- ruby: 2.6
gemfile: Gemfile
- ruby: 2.6
gemfile: gemfiles/Gemfile-rails-main
- ruby: 2.7
gemfile: gemfiles/Gemfile-rails-4-1
- ruby: 2.7
Expand Down Expand Up @@ -88,6 +114,12 @@ jobs:
gemfile: gemfiles/Gemfile-rails-5-2
- env: DEVISE_ORM=mongoid
gemfile: gemfiles/Gemfile-rails-6-0
- env: DEVISE_ORM=mongoid
gemfile: gemfiles/Gemfile-rails-6-1
- env: DEVISE_ORM=mongoid
gemfile: Gemfile
- env: DEVISE_ORM=mongoid
gemfile: gemfiles/Gemfile-rails-main
runs-on: ubuntu-latest
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### unreleased
### 4.8.1 - 2021-12-16

* enhancements
* Add support for Rails 7.0. Please note that Turbo integration is not fully supported by Devise yet.

### 4.8.0 - 2021-04-29

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gemspec

gem "rails", "~> 6.1.0"
gem "rails", "~> 7.0.0"
gem "omniauth"
gem "omniauth-oauth2"
gem "rdoc"
Expand Down
Loading