Project

General

Profile

Redmine 3.0.4 and 2.6.6 released

Added by Jean-Philippe Lang almost 9 years ago

Redmine 3.0.4 and 2.6.6 are maintenance releases that fix several issues for 3.0.x and 2.6.x users.
You can review the changes in the Changelog.

Redmine 3.0.4 runs with the latest Rails version (4.2.3). Redmine 2.6.6 was upgraded to the latest 3.x Rails (3.2.22) that brings ruby 2.2 compatibility.
These upgrades both include fixes for several Ruby on Rails vulnerabilities (announcement).


Comments

Added by Go MAEDA almost 9 years ago

Thanks to the developers for the great works!

Added by Toshi MARUYAMA almost 9 years ago

Redmine does not define "rack" version in Gemfile.
If you manage Gemfile.lock, you need to upgrade "rack" too.

Added by Hiroki Najima almost 9 years ago

Thanks a lot!

By the way, if you got "undefined method `active_record'" error after upgrade, it might caused by the arel bug.
Version 6.0.1 causes error: `method_missing': undefined method `active_record'

To fix the problem, you can rollback arel version by the following way.
1. Add the following line to Gemfile.

gem "arel", "6.0.0" 

2. Execute the following command.
bundle update