File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
See updating [ Changelog example here] ( https://keepachangelog.com/en/1.0.0/ ) .
4
4
5
+ ## 0.29.0
6
+
7
+ ### Added
8
+
9
+ * Adding a new status for the database whilst it is pending: ` dynamic-endpoints-creation-pending `
10
+
5
11
## 0.28.0
6
12
7
13
### Added
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ func TestDatabaseFixtures(t *testing.T) {
39
39
assert .Equal (t , "rcp-active-change-draft" , databases .StatusRCPActiveChangeDraft )
40
40
assert .Equal (t , "active-change-draft" , databases .StatusActiveChangeDraft )
41
41
assert .Equal (t , "active-change-pending" , databases .StatusActiveChangePending )
42
+ assert .Equal (t , "dynamic-endpoints-creation-pending" , databases .StatusDynamicEndpointsCreationPending )
42
43
43
44
assert .Equal (t , "proxy-policy-change-pending" , databases .StatusProxyPolicyChangePending )
44
45
assert .Equal (t , "proxy-policy-change-draft" , databases .StatusProxyPolicyChangeDraft )
Original file line number Diff line number Diff line change @@ -252,6 +252,8 @@ const (
252
252
StatusActiveChangeDraft = "active-change-draft"
253
253
// StatusActiveChangePending is the Active change pending value of the `Status` field in `Database`
254
254
StatusActiveChangePending = "active-change-pending"
255
+ // StatusDynamicEndpointsCreationPending is the Dynamic endpoints creation pending value of the `Status` field in `Database`
256
+ StatusDynamicEndpointsCreationPending = "dynamic-endpoints-creation-pending"
255
257
256
258
// StatusProxyPolicyChangePending and StatusProxyPolicyChangeDraft
257
259
//The below two Proxy Policy states are caused by a change to the 'support_oss_cluster_api' attribute
You can’t perform that action at this time.
0 commit comments