Browse Source
Merge pull request #12849 from thingsboard/fix/supported-upgrade-versions
Add 3.9.1 to SUPPORTED_VERSIONS_FOR_UPGRADE
pull/12883/head
Viacheslav Klimov
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
application/src/main/java/org/thingsboard/server/service/install/DefaultDatabaseSchemaSettingsService.java
|
|
|
@ -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; |
|
|
|
|