Browse Source
Add 4.2.2.x as supported from version for upgrade
pull/15112/head
Viacheslav Klimov
3 months ago
Failed to extract signature
1 changed files with
2 additions and
1 deletions
-
application/src/main/java/org/thingsboard/server/service/install/DefaultDatabaseSchemaSettingsService.java
|
|
|
@ -31,7 +31,8 @@ public class DefaultDatabaseSchemaSettingsService implements DatabaseSchemaSetti |
|
|
|
// map of versions from which the upgrade to the current version is possible
|
|
|
|
// key - supported version prefix, value - display name
|
|
|
|
private static final Map<String, String> SUPPORTED_VERSIONS_FOR_UPGRADE = Map.of( |
|
|
|
"4.2.1", "4.2.1.x" |
|
|
|
"4.2.1", "4.2.1.x", |
|
|
|
"4.2.2", "4.2.2.x" |
|
|
|
); |
|
|
|
|
|
|
|
private final ProjectInfo projectInfo; |
|
|
|
|