Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where's the rails release notes or changelog [closed]

Rails 3.0.4 just released. But I don't see any changelog documents.

So where is the rails 3.0.4 changelog? I need to know if I should upgrade all my apps to 3.0.4 from 3.0.3.

like image 238
Lewis Z Avatar asked Feb 10 '11 08:02

Lewis Z


People also ask

Is rails 7 released?

January 6, 2022 Hi everyone,I am happy to announce that Rails 7.0. 1 has been released. The focus of this release is bring support to Ruby 3.1,released last Christmas (December 25, 2021).

Whats the latest version of Rails?

The current version of Rail is 7.0. 2, released on Tuesday, February 8, 2022.

When did rails 7 come out?

Rails 7.0 was released on December 15, 2021, replacing Node. js and Webpack with import maps for JavaScript management by default, replacing Turbolinks with a combination of Turbo and Stimulus, adding at-work encryption into Active Record, using Zeitwerk exclusively for code loading, and more.

Does rails 7 require Ruby 3?

Rails 7 requires Ruby 2.7.


2 Answers

There is a blog post and you can read the single CHANGELOG files

  • https://github.com/rails/rails/blob/3-0-4-security/actionmailer/CHANGELOG
  • https://github.com/rails/rails/blob/3-0-4-security/actionpack/CHANGELOG
  • https://github.com/rails/rails/blob/3-0-4-security/activemodel/CHANGELOG
  • https://github.com/rails/rails/blob/3-0-4-security/activerecord/CHANGELOG
  • https://github.com/rails/rails/blob/3-0-4-security/activeresource/CHANGELOG
  • https://github.com/rails/rails/blob/3-0-4-security/activesupport/CHANGELOG
  • https://github.com/rails/rails/blob/3-0-4-security/railties/CHANGELOG

You can also compare the changes between 3.0.3 and 3.0.4

  • https://github.com/rails/rails/compare/v3.0.3...v3.0.4
like image 158
Simone Carletti Avatar answered Sep 28 '22 06:09

Simone Carletti


Simone's answer has inspired me to collect links to all the changelogs on one page. Includes versions 3.2, 3.1, 3.0, 2.3 as well as the upcoming 4.0.

http://jonathanjulian.com/2013/01/the-rails-changelogs/

I'll try to keep that post up-to-date.

like image 27
Jonathan Julian Avatar answered Sep 28 '22 07:09

Jonathan Julian