From b10ee7c5dd0256696538266a3b40d0c29b105d9b Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 17 Apr 2018 10:37:48 +0200
Subject: [PATCH] =?UTF-8?q?fix:=20don=E2=80=99t=20strip=20semanticPrefix?=
 =?UTF-8?q?=20when=20migrating?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 lib/config/migration.js | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/lib/config/migration.js b/lib/config/migration.js
index ac9b08288b..e027b09fea 100644
--- a/lib/config/migration.js
+++ b/lib/config/migration.js
@@ -203,12 +203,6 @@ function migrateConfig(config) {
             migratedConfig.schedule = schedules;
           }
         }
-      } else if (
-        typeof val === 'string' &&
-        val.indexOf('{{semanticPrefix}}') === 0
-      ) {
-        isMigrated = true;
-        migratedConfig[key] = val.replace('{{semanticPrefix}}', '');
       } else if (key === 'depTypes' && Array.isArray(val)) {
         val.forEach(depType => {
           if (isObject(depType)) {
-- 
GitLab