File tree Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Original file line number Diff line number Diff 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
13051305let 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 ()
Original file line number Diff line number Diff line change @@ -1249,7 +1249,15 @@ let remove_repository =
12491249
12501250let 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 ]
You can’t perform that action at this time.
0 commit comments