Project

General

Profile

Actions

Feature #30356

closed

Drop Ruby 2.2 support

Added by Go MAEDA over 5 years ago. Updated about 5 years ago.

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

0%

Estimated time:
Resolution:
Fixed

Description

Currently, Redmine 4.0 supports Ruby 2.2. But the latest nokogiri gem 1.10.0 supports 2.3 and later, does not 2.2. So, we cannot update nogogiri gem to 1.10.0 as long as Redmine officially supports Ruby 2.2.

However, it is necessary to update nokogiri to 1.10.0 in order to support Ruby 2.6 because older nokogiri does not support Ruby 2.6 on Windows (https://github.com/sparklemotion/nokogiri/pull/1850).

We have to choose the Ruby version we support, 2.2 or 2.6. Needless to say, Redmine 4.0 should support Ruby 2.6 rather than retired 2.2.


Files


Related issues

Related to Redmine - Patch #30241: Update nokogiri gem (~> 1.10.0)ClosedGo MAEDA

Actions
Blocks Redmine - Feature #29946: Update i18n gem (~> 1.6.0)ClosedGo MAEDA

Actions
Actions #1

Updated by Go MAEDA over 5 years ago

  • Related to Patch #30241: Update nokogiri gem (~> 1.10.0) added
Actions #2

Updated by Go MAEDA over 5 years ago

Actions #3

Updated by Pavel Rosický over 5 years ago

What about just locking nokogiri 1.9.0 for Ruby 2.2?

Actions #4

Updated by Go MAEDA over 5 years ago

Pavel Rosický wrote:

What about just locking nokogiri 1.9.0 for Ruby 2.2?

You are right. I quite forgot about it. This should work.

Index: Gemfile
===================================================================
--- Gemfile    (revision 17777)
+++ Gemfile    (working copy)
@@ -14,7 +14,7 @@
 gem "mail", "~> 2.7.1" 
 gem "csv", "~> 3.0.1" if RUBY_VERSION >= "2.3" && RUBY_VERSION < "2.6" 

-gem "nokogiri", "~> 1.9.0" 
+gem "nokogiri", (RUBY_VERSION >= "2.3" ? "~> 1.10.0" : "~> 1.9.1")
 gem "i18n", "~> 0.7.0" 

 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
Actions #5

Updated by Marius BĂLTEANU over 5 years ago

In my opinion, we should drop Ruby 2.2 support in 4.1.0.

Actions #6

Updated by Go MAEDA over 5 years ago

  • Assignee set to Jean-Philippe Lang
  • Target version set to 4.0.1

Jean-Philippe Lang is considering to drop Ruby 2.2 support in 4.0-stable (see #30161#note-3). I will leave this issue to him.

Actions #7

Updated by Marius BĂLTEANU over 5 years ago

Go MAEDA wrote:

Jean-Philippe Lang is considering to drop Ruby 2.2 support in 4.0-stable (see #30161#note-3). I will leave this issue to him.

Agree.

I proposed 4.1.0 because 4.0.1 will be a maintenance release (mostly with bug fixes and small changes) and dropping support for Ruby 2.2 could have an important impact:
  • Server administrators will need to update the Ruby version on installations with Ruby 2.2.
  • The codebase of the plugins compatible with 4.0 must be rechecked by their developers to support 4.0.1.

Discussions on the same topic: #25538

Actions #8

Updated by Go MAEDA over 5 years ago

We don't have to drop Ruby 2.2 support in a hurry for now. And I think there isn't any harm to commit the patch #30356#note-4 to the trunk and 4.0-stable.

I would like to commit #30356#note-4 as a part of #30241. What do you all think?

Actions #9

Updated by Marius BĂLTEANU over 5 years ago

Go MAEDA wrote:

We don't have to drop Ruby 2.2 support in a hurry for now. And I think there isn't any harm to commit the patch #30356#note-4 to the trunk and 4.0-stable.

I would like to commit #30356#note-4 as a part of #30241. What do you all think?

I’m totally agree.

Actions #10

Updated by Go MAEDA over 5 years ago

  • Status changed from New to Closed
  • Assignee deleted (Jean-Philippe Lang)
  • Target version deleted (4.0.1)

Uses Nokogiri 1.9 for Ruby 2.2, 1.10 for Ruby >=2.3. We don't have to drop support for Ruby 2.2. See r17778.

Actions #11

Updated by Go MAEDA over 5 years ago

Actions #12

Updated by Go MAEDA over 5 years ago

  • Resolution set to Invalid
Actions #13

Updated by Marius BĂLTEANU about 5 years ago

  • Status changed from Closed to Reopened
  • Target version set to 4.1.0

I'm reopening this for 4.1.0.

Actions #14

Updated by Go MAEDA about 5 years ago

The attached patch removes code for Ruby 2.2.

Actions #15

Updated by Go MAEDA about 5 years ago

Actions #16

Updated by Go MAEDA about 5 years ago

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

Committed. Redmine 4.1 supports Ruby 2.3 and later.

Actions #17

Updated by Marius BĂLTEANU about 5 years ago

Actions #18

Updated by Marius BĂLTEANU about 5 years ago

Actions

Also available in: Atom PDF