-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: Update que Appraisals #1256
base: main
Are you sure you want to change the base?
Conversation
The latest version of the gem now supports Rails 7.2
Active Record 7.2+ are only compatible with que 2.4.1+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.1.0') | ||
gem 'activerecord', '~> 7.2.0' | ||
else | ||
gem 'activerecord' | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this, we'd skip testing on Rails 7.2 and jump straight to Rails 8.0. Que made a change to support Rails 7.2 in 2.4.1, but our instrumentation didn't need to change.
Since these tests are for our instrumentation and not necessarily for activerecord compatibility with que, I'm not sure we need the condition. Thoughts?
👋 This pull request has been marked as stale because it has been open with no activity. You can: comment on the issue or remove the stale label to hold stale off for a while, add the |
The latest version of the gem now supports Rails 7.2 and Rails 8.0
Resolves: #1110