Skip to content

Commit db38cb0

Browse files
committed
Fixup
Add "Changed" records for 2 APIs which were missed. Fix "param_release" for 3 added parameters. Signed-off-by: Gang Ji <[email protected]>
1 parent 497bbfa commit db38cb0

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

ocaml/idl/datamodel_host.ml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1297,14 +1297,22 @@ let create_params =
12971297
; param_doc=
12981298
"The SHA256 checksum of updateinfo of the most recently applied update \
12991299
on the host"
1300-
; param_release= numbered_release "24.39.0-next"
1300+
; param_release= numbered_release "24.40.0"
13011301
; param_default= Some (VString "")
13021302
}
13031303
]
13041304

13051305
let create =
13061306
call ~name:"create" ~in_oss_since:None
1307-
~lifecycle:[(Published, rel_rio, "Create a new host record")]
1307+
~lifecycle:
1308+
[
1309+
(Published, rel_rio, "Create a new host record")
1310+
; ( Changed
1311+
, "24.40.0"
1312+
, "Added --last_update_hash option to allow last_update_hash to be \
1313+
kept for host joined a pool"
1314+
)
1315+
]
13081316
~versioned_params:create_params ~doc:"Create a new host record"
13091317
~result:(Ref _host, "Reference to the newly created host object.")
13101318
~hide_from_docs:true ~allowed_roles:_R_POOL_OP ()

ocaml/idl/datamodel_pool.ml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,15 @@ let remove_repository =
12491249

12501250
let sync_updates =
12511251
call ~name:"sync_updates"
1252-
~lifecycle:[(Published, "1.329.0", "")]
1252+
~lifecycle:
1253+
[
1254+
(Published, "1.329.0", "")
1255+
; ( Changed
1256+
, "25.7.0"
1257+
, "Added --username --password options to allow syncing updates from a \
1258+
remote_pool type repository"
1259+
)
1260+
]
12531261
~doc:"Sync with the enabled repository"
12541262
~versioned_params:
12551263
[
@@ -1286,14 +1294,14 @@ let sync_updates =
12861294
param_type= String
12871295
; param_name= "username"
12881296
; param_doc= "The username of the remote pool"
1289-
; param_release= numbered_release "25.6.0-next"
1297+
; param_release= numbered_release "25.7.0"
12901298
; param_default= Some (VString "")
12911299
}
12921300
; {
12931301
param_type= String
12941302
; param_name= "password"
12951303
; param_doc= "The password of the remote pool"
1296-
; param_release= numbered_release "25.6.0-next"
1304+
; param_release= numbered_release "25.7.0"
12971305
; param_default= Some (VString "")
12981306
}
12991307
]

0 commit comments

Comments
 (0)