summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzamat H. Hackimov <azamat.hackimov@gmail.com>2022-12-09 16:02:36 +0300
committerSam James <sam@gentoo.org>2022-12-24 07:41:39 +0000
commitee6e4e14121a4bdf5c529eb49e95c7dadfef7ca2 (patch)
treeeaca803198df5a90a285febee68e56bcde79c213 /www-apps/redmine/files
parentwww-apps/redmine: add 4.2.9, 5.0.4 (diff)
downloadgentoo-ee6e4e14121a4bdf5c529eb49e95c7dadfef7ca2.tar.gz
gentoo-ee6e4e14121a4bdf5c529eb49e95c7dadfef7ca2.tar.bz2
gentoo-ee6e4e14121a4bdf5c529eb49e95c7dadfef7ca2.zip
www-apps/redmine: drop 4.2.7, 5.0.2
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/28612 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-apps/redmine/files')
-rw-r--r--www-apps/redmine/files/redmine-4.2.7-rails-yaml-safe_load.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/www-apps/redmine/files/redmine-4.2.7-rails-yaml-safe_load.patch b/www-apps/redmine/files/redmine-4.2.7-rails-yaml-safe_load.patch
deleted file mode 100644
index dcd4bdb51073..000000000000
--- a/www-apps/redmine/files/redmine-4.2.7-rails-yaml-safe_load.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 8eb7563204e6c9b3a1fcff453c08ed4824b20bc6 Mon Sep 17 00:00:00 2001
-From: "Azamat H. Hackimov" <azamat.hackimov@gmail.com>
-Date: Wed, 13 Jul 2022 13:52:18 +0300
-Subject: [PATCH] Added compatibility option for recent Rails
-
-Rails 5.2.8.1, 6.0.5.1, 6.1.6.1 and 7.0.3.1 fixes CVE-2022-32224 which
-breaks compatibility with old implementation of YAML.unsafe_load.
-
-Added `config.active_record.yaml_column_permitted_classes = [Symbol]` to
-configuration of application to workaround issue.
----
- config/application.rb | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/config/application.rb b/config/application.rb
-index bba468f38..78557d376 100644
---- a/config/application.rb
-+++ b/config/application.rb
-@@ -32,6 +32,7 @@ module RedmineApp
-
- config.active_record.store_full_sti_class = true
- config.active_record.default_timezone = :local
-+ config.active_record.yaml_column_permitted_classes = [Symbol]
-
- config.action_mailer.delivery_job = "ActionMailer::MailDeliveryJob"
-
---
-2.35.1
-