From 05eecfc219acb525da6d7e337b1b37be7634e523 Mon Sep 17 00:00:00 2001 From: John Davis Date: Thu, 30 May 2024 11:33:36 -0400 Subject: [PATCH 1/4] Add revision tags for TS migration in 23.1 --- lib/tool_shed/webapp/model/migrations/dbscript.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tool_shed/webapp/model/migrations/dbscript.py b/lib/tool_shed/webapp/model/migrations/dbscript.py index e9a3a5da3494..c045cbb04904 100644 --- a/lib/tool_shed/webapp/model/migrations/dbscript.py +++ b/lib/tool_shed/webapp/model/migrations/dbscript.py @@ -26,8 +26,8 @@ # then using 231 as a partial revision identifier like `sh manage_toolshed_db.sh upgrade 231` # will map to release 23.1 instead of revision 231xxxxxxxxx. REVISION_TAGS = { - "release_23.1": "base", - "23.1": "base", + "release_23.1": "1b5bf427db25", + "23.1": "1b5bf427db25", } From 579884db75d14b2ae7cbfb67270b5d015c157b80 Mon Sep 17 00:00:00 2001 From: John Davis Date: Fri, 31 May 2024 12:25:40 -0400 Subject: [PATCH 2/4] Add TS db revision tags for 23.2 --- lib/tool_shed/webapp/model/migrations/dbscript.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/tool_shed/webapp/model/migrations/dbscript.py b/lib/tool_shed/webapp/model/migrations/dbscript.py index c045cbb04904..6875069871eb 100644 --- a/lib/tool_shed/webapp/model/migrations/dbscript.py +++ b/lib/tool_shed/webapp/model/migrations/dbscript.py @@ -28,6 +28,8 @@ REVISION_TAGS = { "release_23.1": "1b5bf427db25", "23.1": "1b5bf427db25", + "release_23.2": "1b5bf427db25", + "23.2": "1b5bf427db25", } From 6c998adeaca9712a3f2385fef128274173cda40a Mon Sep 17 00:00:00 2001 From: John Davis Date: Fri, 31 May 2024 12:39:40 -0400 Subject: [PATCH 3/4] Add TS db revision tags for 24.0 --- lib/tool_shed/webapp/model/migrations/dbscript.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/tool_shed/webapp/model/migrations/dbscript.py b/lib/tool_shed/webapp/model/migrations/dbscript.py index 6875069871eb..a7c933c39f99 100644 --- a/lib/tool_shed/webapp/model/migrations/dbscript.py +++ b/lib/tool_shed/webapp/model/migrations/dbscript.py @@ -30,6 +30,8 @@ "23.1": "1b5bf427db25", "release_23.2": "1b5bf427db25", "23.2": "1b5bf427db25", + "release_24.0": "1b5bf427db25", + "24.0": "1b5bf427db25", } From 60787f89e3e5e47f4556499b8310e2fb92ff6b5a Mon Sep 17 00:00:00 2001 From: John Davis Date: Fri, 31 May 2024 13:04:08 -0400 Subject: [PATCH 4/4] Add TS db revision tags for 24.1 --- lib/tool_shed/webapp/model/migrations/dbscript.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/tool_shed/webapp/model/migrations/dbscript.py b/lib/tool_shed/webapp/model/migrations/dbscript.py index a7c933c39f99..11c23efa173e 100644 --- a/lib/tool_shed/webapp/model/migrations/dbscript.py +++ b/lib/tool_shed/webapp/model/migrations/dbscript.py @@ -32,6 +32,8 @@ "23.2": "1b5bf427db25", "release_24.0": "1b5bf427db25", "24.0": "1b5bf427db25", + "release_24.1": "1b5bf427db25", + "24.1": "1b5bf427db25", }