Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions ydb/core/driver_lib/version/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,23 @@ TCompatibilityInfo::TCompatibilityInfo() {
},
.CanLoadFrom = {
TCompatibilityRuleConstructor{
.Application = "ydb",
.LowerLimit = TVersionConstructor{ .Year = 23, .Major = 3 },
.LowerLimit = TVersionConstructor{ .Year = 23, .Major = 4 },
.UpperLimit = TVersionConstructor{ .Year = 24, .Major = 1 },
},
},
.StoresReadableBy = {
TCompatibilityRuleConstructor{
.Application = "ydb",
.LowerLimit = TVersionConstructor{ .Year = 23, .Major = 3 },
.LowerLimit = TVersionConstructor{ .Year = 23, .Major = 4 },
.UpperLimit = TVersionConstructor{ .Year = 24, .Major = 1 },
},
},
.CanConnectTo = {
TCompatibilityRuleConstructor{
.Application = "ydb",
.LowerLimit = TVersionConstructor{ .Year = 23, .Major = 4 },
.UpperLimit = TVersionConstructor{ .Year = 24, .Major = 1 },
},
TCompatibilityRuleConstructor{
.Application = "nbs",
.LowerLimit = TVersionConstructor{ .Year = 23, .Major = 3 },
.UpperLimit = TVersionConstructor{ .Year = 24, .Major = 1 },
},
Expand Down Expand Up @@ -107,7 +109,6 @@ TMaybe<NActors::TInterconnectProxyCommon::TVersionInfo> VERSION = NActors::TInte
// compatible versions; must include all compatible old ones, including this one; version verification occurs on both
// peers and connection is accepted if at least one of peers accepts the version of the other peer
{
"stable-23-3",
"stable-23-4",
"stable-24-1"
}
Expand Down