Skip to content

Commit 0f89aa8

Browse files
authored
Test against official Rails 8.0 release (#2479)
1 parent e8566fb commit 0f89aa8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/sentry_rails_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
- { ruby_version: "3.1", rails_version: 7.2.0 }
5252
- { ruby_version: "3.2", rails_version: 7.2.0 }
5353
- { ruby_version: "3.3", rails_version: 7.2.0 }
54-
- { ruby_version: "3.2", rails_version: "8.0.0.rc1" }
55-
- { ruby_version: "3.3", rails_version: "8.0.0.rc1" }
54+
- { ruby_version: "3.2", rails_version: "8.0.0" }
55+
- { ruby_version: "3.3", rails_version: "8.0.0" }
5656
- { ruby_version: "jruby", rails_version: 6.1.0 }
5757
- {
5858
ruby_version: "3.2",

sentry-rails/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ end
1515
ruby_version = Gem::Version.new(RUBY_VERSION)
1616

1717
rails_version = ENV["RAILS_VERSION"]
18-
rails_version = "7.2.0" if rails_version.nil?
18+
rails_version = "8.0.0" if rails_version.nil?
1919
rails_version = Gem::Version.new(rails_version)
2020

2121
gem "rails", "~> #{rails_version}"
2222

23-
if rails_version >= Gem::Version.new("8.0.0.alpha")
23+
if rails_version >= Gem::Version.new("8.0.0")
2424
gem "rspec-rails"
2525
gem "sqlite3", platform: :ruby
2626
elsif rails_version >= Gem::Version.new("7.1.0")

0 commit comments

Comments
 (0)