Project

General

Profile

Actions

Feature #31500

closed

Ruby 2.7 support

Added by Go MAEDA almost 5 years ago. Updated about 3 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Ruby support
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed

Description

Ruby 2.7.0 is going to be released on 2019-12-25.
https://bugs.ruby-lang.org/versions/35


Related issues

Related to Redmine - Patch #32527: Fix ruby 2.7 warning: given argument is nil; this will raise a TypeError in the next releaseClosed

Actions
Related to Redmine - Patch #32542: Fix ruby 2.7 warning: The last argument is used as the keyword parameterClosedGo MAEDA

Actions
Related to Redmine - Defect #32752: Ruby 2.7: Remove deprecated URI.escape/unescapeClosedGo MAEDA

Actions
Related to Redmine - Patch #32906: Update i18n (~> 1.8.2)ClosedGo MAEDA

Actions
Related to Redmine - Patch #32907: Update capybara (~> 3.31.0)Closed

Actions
Related to Redmine - Defect #33021: [v.4.0.5-stable] Internal Server Error 500 when accessing 'repository' tabClosed

Actions
Related to Redmine - Defect #35135: FrozenError when new LDAP users try to loginClosedGo MAEDA

Actions
Related to Redmine - Defect #35441: Inline image in Textile is not displayed if the image URL contains ampersandsClosedGo MAEDA

Actions
Copied from Redmine - Feature #30118: Ruby 2.6 supportClosedJean-Philippe Lang

Actions
Actions #1

Updated by Go MAEDA almost 5 years ago

Actions #2

Updated by Go MAEDA over 4 years ago

  • Related to Patch #32527: Fix ruby 2.7 warning: given argument is nil; this will raise a TypeError in the next release added
Actions #3

Updated by Seiei Miyagi over 4 years ago

With ruby 2.7, following tests failed.

bin/rails test test/functional/timelog_report_test.rb:262
bin/rails test test/functional/timelog_report_test.rb:308

I send a pull request to ruby/csv to fix it.
https://github.com/ruby/csv/pull/111
The pull request is merged but not released yet.

Actions #4

Updated by Go MAEDA over 4 years ago

  • Related to Patch #32542: Fix ruby 2.7 warning: The last argument is used as the keyword parameter added
Actions #5

Updated by Go MAEDA about 4 years ago

  • Related to Defect #32752: Ruby 2.7: Remove deprecated URI.escape/unescape added
Actions #6

Updated by Marius BÄ‚LTEANU about 4 years ago

Actions #7

Updated by Go MAEDA about 4 years ago

  • Related to Patch #32907: Update capybara (~> 3.31.0) added
Actions #8

Updated by Go MAEDA about 4 years ago

  • Related to Defect #33021: [v.4.0.5-stable] Internal Server Error 500 when accessing 'repository' tab added
Actions #9

Updated by Jeremy Bailey almost 4 years ago

https://github.com/ruby/csv/pull/111 was merged in November 2019, but it seems that ruby/csv hasn't yet been updated since 3.1.2 in October 2019.

Actions #10

Updated by Ludovic Andrieux almost 4 years ago

ruby/csv 3.1.3 is released with the fix : https://github.com/ruby/csv/releases/tag/v3.1.3

Actions #11

Updated by Anatol Pomozov over 3 years ago

Hi folks,

Ruby 2.7 released almost a year ago. It would be great if useful tools redmine finally became supported at this latest stable version of Ruby.

Could anyone please give an update on the current status of this activity?

Actions #12

Updated by Xavier Maquil over 3 years ago

Any news about release for 2.7 support (Ubuntu 20.04.1 has it build in)

Actions #13

Updated by Go MAEDA over 3 years ago

Since the latest Ruby 2.7.2 disables all deprecation warnings by default, I think Redmine can support Ruby 2.7 if it ignores 2.7.0 and 2.7.1.

The reason why Redmine still stays in Ruby 2.6 is that huge numbers of deprecation warnings are displayed while runnning tests. The problem is resolved by the change of Ruby 2.7.2, so I think it is no problem to use Ruby 2.7.2 now.

diff --git a/Gemfile b/Gemfile
index 0cfe10e49..24c85b341 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,6 +1,6 @@
 source 'https://rubygems.org'

-ruby '>= 2.3.0', '< 2.7.0'
+ruby '>= 2.3.0', '< 2.8.0'
 gem 'bundler', '>= 1.12.0'

 gem 'rails', '5.2.4.4'
diff --git a/doc/INSTALL b/doc/INSTALL
index f4374dae1..137088290 100644
--- a/doc/INSTALL
+++ b/doc/INSTALL
@@ -7,7 +7,7 @@ http://www.redmine.org/

 == Requirements

-* Ruby 2.3, 2.4, 2.5, 2.6
+* Ruby 2.3, 2.4, 2.5, 2.6, 2.7 (except for 2.7.0 and 2.7.1)
 * Bundler >= 1.12.0

 * A database:
Actions #14

Updated by Go MAEDA over 3 years ago

  • Status changed from New to Closed
  • Assignee set to Go MAEDA
  • Resolution set to Fixed

Redmine supports Ruby 2.7 (excluding 2.7.0 and 2.7.1) after r20150.

Actions #15

Updated by Enziin System over 3 years ago

If Ruby 2.7 (excluding 2.7.0 and 2.7.1) then Redmine NOT support Ruby 2.7 version, still Ruby 2.6x

In the Gemfile:

ruby '>= 2.3.0', '< 2.7.0'

To

ruby '>= 2.3.0', '<= 2.7.0'

Actions #16

Updated by Go MAEDA over 3 years ago

Enziin System wrote:

If Ruby 2.7 (excluding 2.7.0 and 2.7.1) then Redmine NOT support Ruby 2.7 version, still Ruby 2.6x

Although Redmine does not support Ruby 2.7.0 and 2.7.1 but supports 2.7.2 or higher. This is related to the following issues:

Actions #17

Updated by Enziin System over 3 years ago

Ok, thanks!

In the above comment, you said "I think it is no problem to use Ruby 2.7.2 now"

Redmine run passed all tests on Ruby 2.7.2, isn't it?

Actions #18

Updated by Go MAEDA over 3 years ago

Enziin System wrote:

Redmine run passed all tests on Ruby 2.7.2, isn't it?

Yes. Redmine on Ruby 2.7.2 passes all tests without warnings.

Actions #19

Updated by Adrien Crivelli about 3 years ago

Thank you for the patch.

Unfortunately the patch was ready 4 months ago, but it has not been released yet, and will only be released as part of 4.2.0. According to the roadmap, 4.2.0 is at 80% with 42 opened issues. It could still be weeks, if not months, before we see this patch released.

I would like to suggest to consider to make releases slightly more often. Last release was almost 1 year ago. In fact with 210 issues 4.2.0 is on the biggest version in recent years. What about splitting versions in two to have approximately two releases per year ?

So I'd suggest to release the first half of 4.1.0 right now, and postpone what is not ready in the next version.

What do you think ?

Actions #20

Updated by Go MAEDA almost 3 years ago

  • Related to Defect #35135: FrozenError when new LDAP users try to login added
Actions #21

Updated by Go MAEDA over 2 years ago

  • Related to Defect #35441: Inline image in Textile is not displayed if the image URL contains ampersands added
Actions

Also available in: Atom PDF