-
Notifications
You must be signed in to change notification settings - Fork 989
Expand file tree
/
Copy pathminimum_version.go
More file actions
31 lines (20 loc) · 880 Bytes
/
minimum_version.go
File metadata and controls
31 lines (20 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package ccversion
const (
MinSupportedV2ClientVersion = "2.128.0"
MinSupportedClientVersionV8 = "3.99.0"
MinVersionUpdateServiceNameWhenPlanNotVisibleV2 = "2.131.0"
MinVersionUpdateServiceInstanceMaintenanceInfoV2 = "2.135.0"
MinVersionMaintenanceInfoInSummaryV2 = "2.138.0"
MinVersionCreateServiceBrokerV3 = "3.72.0"
MinVersionCreateSpaceScopedServiceBrokerV3 = "3.75.0"
MinVersionHTTP2RoutingV3 = "3.104.0"
MinVersionSpaceSupporterV3 = "3.104.0"
MinVersionLogRateLimitingV3 = "3.124.0" // TODO: update this when we have a CAPI release
MinVersionCNB = "3.168.0"
MinVersionBuildpackLifecycleQuery = "3.194.0"
MinVersionPerRouteOpts = "3.183.0"
MinVersionCanarySteps = "3.189.0"
MinVersionServiceBindingStrategy = "3.205.0"
MinVersionEmbeddedProcessInstances = "3.211.0"
MinVersionUpdateStack = "3.211.0"
)