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 =
1297
1297
; param_doc=
1298
1298
" The SHA256 checksum of updateinfo of the most recently applied update \
1299
1299
on the host"
1300
- ; param_release= numbered_release " 24.39.0-next "
1300
+ ; param_release= numbered_release " 24.40.0 "
1301
1301
; param_default= Some (VString " " )
1302
1302
}
1303
1303
]
1304
1304
1305
1305
let create =
1306
1306
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
+ ]
1308
1316
~versioned_params: create_params ~doc: " Create a new host record"
1309
1317
~result: (Ref _host, " Reference to the newly created host object." )
1310
1318
~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 =
1249
1249
1250
1250
let sync_updates =
1251
1251
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
+ ]
1253
1261
~doc: " Sync with the enabled repository"
1254
1262
~versioned_params:
1255
1263
[
@@ -1286,14 +1294,14 @@ let sync_updates =
1286
1294
param_type= String
1287
1295
; param_name= " username"
1288
1296
; 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 "
1290
1298
; param_default= Some (VString " " )
1291
1299
}
1292
1300
; {
1293
1301
param_type= String
1294
1302
; param_name= " password"
1295
1303
; 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 "
1297
1305
; param_default= Some (VString " " )
1298
1306
}
1299
1307
]
You can’t perform that action at this time.
0 commit comments