Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 1 addition & 5 deletions .github/workflows/test_solidus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@ jobs:
fail-fast: false
matrix:
include:
- rails: "7.0"
ruby: "3.2"
database: postgres
storage: paperclip
- rails: "7.1"
- rails: "7.2"
ruby: "3.2"
database: mysql
storage: activestorage
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gemspec require: false
if /(stable|main)/.match? ENV['RAILS_VERSION']
gem 'rails', github: 'rails', require: false, branch: ENV['RAILS_VERSION']
else
gem 'rails', ENV['RAILS_VERSION'] || ['> 7.0', '< 8.2'], require: false
gem 'rails', ENV['RAILS_VERSION'] || ['> 7.2', '< 8.2'], require: false
end
# rubocop:enable Bundler/DuplicatedGem

Expand Down
2 changes: 1 addition & 1 deletion core/lib/spree/core/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Spree

def self.solidus_version = VERSION

def self.minimum_required_rails_version = "7.0"
def self.minimum_required_rails_version = "7.2"

def self.previous_solidus_minor_version = "4.6"

Expand Down
2 changes: 1 addition & 1 deletion tasks/linting/wrong_migration_version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

expect_offense(<<~RUBY)
class TestMigration < ActiveRecord::Migration[#{greater_than_minimum_version}]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Solidus/WrongMigrationVersion: Subclasses of ActiveRecord::Migration must use a migration version of <= 7.0
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Solidus/WrongMigrationVersion: Subclasses of ActiveRecord::Migration must use a migration version of <= 7.2
end
RUBY
end
Expand Down
Loading