-
Notifications
You must be signed in to change notification settings - Fork 230
Drop support for versions below Ruby 3.2 and Rails 7.1 #383
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
Drop support for versions below Ruby 3.2 and Rails 7.1 #383
Conversation
Sorcery only supports the currently officially supported versions of Ruby and Rails. Also remove conditionals for Rails versions older than 7.0, and mongoid versions older than 4.0 Mongoid 3.x is no longer relevant since its latest release (v3.1.7) depends on `activemodel ~> 3.2`, which is incompatible with current versions of Sorcery. See: https://github.com/mongodb/mongoid/blob/v3.1.7/mongoid.gemspec#L22
I tried to add @Beartech as a reviewer, but I couldn't. ![]() |
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.
Thanks!
@willnet oh, can you remove the testing matrix from the readme? No longer needed as we removed the exclusions. |
@joshbuker Thank you for the feedback. I'll create a follow-up PR later. |
followup Sorcery#383 Remove the matrix as it is no longer needed. We could mention support for Ruby 3.2+ and Rails 7.1+ in the README, but for now, I just removed the matrix.
followup Sorcery#383 Remove the matrix as it is no longer needed. We could mention support for Ruby 3.2+ and Rails 7.1+ in the README, but for now, I just removed the matrix.
Sorcery only supports the currently officially supported versions of Ruby and Rails.
Also remove conditionals for Rails versions older than 7.0, and mongoid versions older than 4.0
Mongoid 3.x is no longer relevant since its latest release (v3.1.7) depends on
activemodel ~> 3.2
, which is incompatible with current versions of Sorcery. See: https://github.com/mongodb/mongoid/blob/v3.1.7/mongoid.gemspec#L22