Skip to content
Snippets Groups Projects

updated gem version according to upstream.

Closed Chirag Sukhala requested to merge chirag_sukhala/redmine:master into master
Files
4
Last-Update: 2023-10-30
Forwarded: not-needed
Authors: Antonio Terceiro <terceiro@debian.org>
Author: Antonio Terceiro <terceiro@debian.org>
Description: Adapt dep requirements
1) Specifying minor SemVer is too pedantic. Minor versions are
backwards-compatible by definition. It becomes likely that if any dep is
@@ -41,7 +41,8 @@ Index: redmine/Gemfile
-gem 'nokogiri', (Gem.ruby_version < Gem::Version.new('2.6.0') ? '~> 1.12.5' : '~> 1.13.4')
+gem 'nokogiri', '~> 1.15.2'
gem "rexml", require: false if Gem.ruby_version >= Gem::Version.new('3.0')
gem 'i18n', '~> 1.10.0'
-gem 'i18n', '~> 1.10.0'
+gem 'i18n', '~> 1.14.1'
gem "rbpdf", "~> 1.20.0"
gem 'addressable'
gem 'rubyzip', '~> 2.3.0'
@@ -54,7 +55,7 @@ Index: redmine/Gemfile
# Rails 6.1.6.1 does not work with Pysch 3.0.2, which is installed by default with Ruby 2.5. See https://github.com/rails/rails/issues/45590
gem 'psych', '>= 3.1.0' if Gem.ruby_version < Gem::Version.new('2.6.0')
@@ -48,10 +48,10 @@ gem 'redcarpet', '~> 3.5.1', groups: [:m
@@ -48,10 +48,10 @@ gem 'redcarpet', '~> 3.6.0', groups: [:m
# Optional CommonMark support, not for JRuby
group :common_mark do
Loading