Skip to content

Commit 76f15d2

Browse files
authored
Merge pull request solidusio#6409 from SuperGoodSoft/alistair/rails-8.1
Allow Rails 8.1
2 parents 714b3ec + 3dde7dc commit 76f15d2

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/test_solidus.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
ruby: "3.4"
3838
database: sqlite
3939
storage: activestorage
40+
- rails: "8.1"
41+
ruby: "3.4"
42+
database: sqlite
43+
storage: activestorage
4044
env:
4145
BUNDLE_WITHOUT: "lint release"
4246
COVERAGE_DIR: ${{ github.workspace }}/${{ inputs.lib_name }}/coverage

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gemspec require: false
88
if /(stable|main)/.match? ENV['RAILS_VERSION']
99
gem 'rails', github: 'rails', require: false, branch: ENV['RAILS_VERSION']
1010
else
11-
gem 'rails', ENV['RAILS_VERSION'] || ['> 7.0', '< 8.1.0.beta1'], require: false
11+
gem 'rails', ENV['RAILS_VERSION'] || ['> 7.0', '< 8.2'], require: false
1212
end
1313
# rubocop:enable Bundler/DuplicatedGem
1414

core/solidus_core.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |s|
2929
].each do |rails_dep|
3030
s.add_dependency rails_dep, [
3131
">= #{Spree.minimum_required_rails_version}",
32-
"< 8.1.0.beta1"
32+
"< 8.2"
3333
]
3434
end
3535

0 commit comments

Comments
 (0)