From 693a9f78024fbaebc809ba9c873355b7e83e023f Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Thu, 9 Apr 2026 00:49:50 +0000 Subject: [PATCH] Deprecate broken Mantis and Trac migration rake tasks (#43918). git-svn-id: https://svn.redmine.org/redmine/trunk@24565 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/tasks/migrate_from_mantis.rake | 2 ++ lib/tasks/migrate_from_trac.rake | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/tasks/migrate_from_mantis.rake b/lib/tasks/migrate_from_mantis.rake index f07f4a306..9789438c3 100644 --- a/lib/tasks/migrate_from_mantis.rake +++ b/lib/tasks/migrate_from_mantis.rake @@ -22,6 +22,8 @@ require 'pp' namespace :redmine do task :migrate_from_mantis => :environment do + # TODO: Remove this unsupported Mantis migration task in a later version. + abort "This task is no longer maintained and cannot be used. It will be removed in a future version of Redmine." module MantisMigrate diff --git a/lib/tasks/migrate_from_trac.rake b/lib/tasks/migrate_from_trac.rake index c079d9061..330760351 100644 --- a/lib/tasks/migrate_from_trac.rake +++ b/lib/tasks/migrate_from_trac.rake @@ -21,6 +21,8 @@ require 'pp' namespace :redmine do desc 'Trac migration script' task :migrate_from_trac => :environment do + # TODO: Remove this unsupported Trac migration task in a later version. + abort "This task is no longer maintained and cannot be used. It will be removed in a future version of Redmine." module TracMigrate TICKET_MAP = []