Reputation: 47111
Does anyone know when Rails 5.2 reaches end of life? Is there a central place where end of life dates for Rails are documented?
Upvotes: 5
Views: 5561
Reputation: 33
Rails 5.2.Z is included in the list of supported series until June 1st 2022.
You can find the central place where end of life dates for Rails are documented at https://endoflife.date/rails or at https://guides.rubyonrails.org/maintenance_policy.html
Upvotes: 1
Reputation: 73
Rails don't do long term support of old versions. They only release security path. You can get a better idea of how this work here: https://guides.rubyonrails.org/maintenance_policy.html
It is important to emphasize that you have to keep updating the gem of rails to avoid incompatibilities in the future, see the case of the update of Github in rails 3 to version rails 6
https://github.blog/2018-09-28-upgrading-github-from-rails-3-2-to-5-2/ https://github.blog/2019-09-09-running-github-on-rails-6-0/
Upvotes: 1
Reputation: 20263
I believe Rails 6 is still "Edge" (unreleased) and Rails 5 is the latest released version. (See this Q&A for definitions.) As such, I believe there is no EOL date for Rails 5.
I believe you can find, essentially, EOL information by looking at the latest release notes, as discussed in this Q&A.
Upvotes: 0