-
-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Snyk API version to
2023-06-22
This changes the default version for new DT deployments, and updates the version for existing ones, **if the version has not been changed already**. `2023-06-22` is the most recent stable version according to apidocs.snyk.io. Tested and confirmed that it's working fine with DT's integration. Signed-off-by: nscuro <[email protected]>
- Loading branch information
Showing
3 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
src/main/java/org/dependencytrack/upgrade/v490/v490Updater.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* 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 java.sql.Connection; | ||
import java.sql.PreparedStatement; | ||
|
||
import static org.dependencytrack.model.ConfigPropertyConstants.SCANNER_SNYK_API_VERSION; | ||
|
||
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 { | ||
updateDefaultSnykApiVersion(connection); | ||
} | ||
|
||
/** | ||
* Update the Snyk API version from its previous default to a current and actively supported one. | ||
* Only do so when the version has not been modified manually. | ||
* | ||
* @param connection The {@link Connection} to use for executing queries | ||
* @throws Exception When executing a query failed | ||
*/ | ||
private static void updateDefaultSnykApiVersion(final Connection connection) throws Exception { | ||
LOGGER.info("Updating Snyk API version from 2022-11-14 to %s" | ||
.formatted(SCANNER_SNYK_API_VERSION.getDefaultPropertyValue())); | ||
try (final PreparedStatement ps = connection.prepareStatement(""" | ||
UPDATE "CONFIGPROPERTY" SET "PROPERTYVALUE" = ? | ||
WHERE "GROUPNAME" = 'scanner' | ||
AND "PROPERTYNAME" = 'snyk.api.version' | ||
AND "PROPERTYVALUE" = '2022-11-14' | ||
""")) { | ||
ps.setString(1, SCANNER_SNYK_API_VERSION.getDefaultPropertyValue()); | ||
ps.executeUpdate(); | ||
} | ||
} | ||
|
||
} |