Skip to content

Commit

Permalink
Update DB to remove possible unstable versions from analysis cache an…
Browse files Browse the repository at this point in the history
…d repository metadata

Signed-off-by: Walter de Boer <[email protected]>
  • Loading branch information
Walter de Boer committed Apr 28, 2023
1 parent c8ac898 commit 60dcb17
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class UpgradeItems {
UPGRADE_ITEMS.add(org.dependencytrack.upgrade.v463.v463Updater.class);
UPGRADE_ITEMS.add(org.dependencytrack.upgrade.v470.v470Updater.class);
UPGRADE_ITEMS.add(org.dependencytrack.upgrade.v480.v480Updater.class);
UPGRADE_ITEMS.add(org.dependencytrack.upgrade.v490.v490Updater.class);
}

static List<Class<? extends UpgradeItem>> getUpgradeItems() {
Expand Down
51 changes: 51 additions & 0 deletions src/main/java/org/dependencytrack/upgrade/v490/v490Updater.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* This file is part of Dependency-Track.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) Steve Springett. All Rights Reserved.
*/
package org.dependencytrack.upgrade.v490;

import alpine.common.logging.Logger;
import alpine.persistence.AlpineQueryManager;
import alpine.server.upgrade.AbstractUpgradeItem;
import alpine.server.util.DbUtil;

import java.sql.Connection;
import java.sql.PreparedStatement;

public class v490Updater extends AbstractUpgradeItem {

private static final Logger LOGGER = Logger.getLogger(v490Updater.class);

@Override
public String getSchemaVersion() {
return "4.9.0";
}

@Override
public void executeUpgrade(final AlpineQueryManager qm, final Connection connection) throws Exception {
removeUnstableVersionsFromAnalysisCacheAndRepoMetadata(connection);
}

private void removeUnstableVersionsFromAnalysisCacheAndRepoMetadata(Connection connection) throws Exception {
// Versions with a '-' in it probably indicate unstable versions. Remove them all
// from component analysis cache and repository metadata
// See: https://github.com/DependencyTrack/dependency-track/issues/2500
LOGGER.info("Removing possible unstable versions from component analysis cache");
DbUtil.executeUpdate(connection, "DELETE FROM \"COMPONENTANALYSISCACHE\" WHERE RESULT LIKE '%-%'");
LOGGER.info("Removing possible unstable versions from repository metadata");
DbUtil.executeUpdate(connection, "DELETE FROM \"REPOSITORY_META_COMPONENT\" WHERE LATEST_VERSION LIKE '%-%'");
}}

0 comments on commit 60dcb17

Please sign in to comment.