Add 3.9.1 to SUPPORTED_VERSIONS_FOR_UPGRADE

This commit is contained in:
ViacheslavKlimov 2025-03-07 12:11:57 +02:00
parent 388c53a619
commit 7ca43d386c

View File

@ -32,7 +32,7 @@ public class DefaultDatabaseSchemaSettingsService implements DatabaseSchemaSetti
// This list should include all versions which are compatible for the upgrade.
// The compatibility cycle usually breaks when we have some scripts written in Java that may not work after new release.
private static final List<String> SUPPORTED_VERSIONS_FOR_UPGRADE = List.of("3.9.0");
private static final List<String> SUPPORTED_VERSIONS_FOR_UPGRADE = List.of("3.9.0", "3.9.1");
private final ProjectInfo projectInfo;
private final JdbcTemplate jdbcTemplate;