Skip to content

Commit

Permalink
Temporarily constrain rails 6 to < rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbeck committed Jul 28, 2019
1 parent 1188764 commit 657f5dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ end

appraise "ar-6.0" do
# >= 6.0.0.beta3 because CVE-2019-5420
gem "activerecord", [">= 6.0.0.beta3", "< 6.1"]
# < rc2 because there seem to have been breaking changes between rc1 and rc2
# re: MigrationContext
gem "activerecord", [">= 6.0.0.beta3", "< 6.0.0.rc2"]
gem "rails-controller-testing", "~> 1.0.3"

# Must match `gem` call in active_record/connection_adapters/sqlite3_adapter.rb
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activerecord", [">= 6.0.0.beta3", "< 6.1"]
gem "activerecord", [">= 6.0.0.beta3", "< 6.0.0.rc2"]
gem "rails-controller-testing", "~> 1.0.3"
gem "sqlite3", "~> 1.4"

Expand Down

0 comments on commit 657f5dd

Please sign in to comment.