-
Notifications
You must be signed in to change notification settings - Fork 18
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
Rails 7.1 and gh actions #60
base: master
Are you sure you want to change the base?
Conversation
@sebaherrera07 build failing - will dig, but prolly not today tbh |
No hurry! Thanks! |
@@ -17,7 +17,7 @@ Gem::Specification.new do |s| | |||
s.files = Dir["{app,config,db,lib,vendor}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"] | |||
s.test_files = Dir["test/**/*"] | |||
|
|||
s.add_runtime_dependency "rails", ">= 5.0.0", "< 7.1" |
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.
Maybe we can set smaller supported version to Rails 6.1?.
Also the failed unit tests indicate:
ArgumentError: The `legacy_connection_handling` setter was deprecated in 7.0 and removed in 7.1, but is still defined in your configuration. Please remove this call as it no longer has any effect."
which is defined in application.rb
, so we can probably get rid of that line.
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.
@sebaherrera07 yep, that works - we should only support current versions; I think 6.1.x is the oldest still being patched.
continuing #59 from @sebaherrera07