Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update datamodel lifecycle #5718

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ocaml/idl/datamodel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2802,7 +2802,7 @@ module Sr_stat = struct
(Prototyped, rel_kolkata, "")
; (Published, rel_lima, "")
; ( Extended
, "24.16.0"
, "24.17.0"
, "Enum extended with 'unreachable' and 'unavailable' values"
)
]
Expand Down
6 changes: 3 additions & 3 deletions ocaml/idl/datamodel_lifecycle.ml
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ let prototyped_of_message = function
| "host", "set_numa_affinity_policy" ->
Some "24.0.0"
| "VM", "get_secureboot_readiness" ->
Some "24.15.0-next"
Some "24.17.0"
| "VM", "set_uefi_mode" ->
Some "24.15.0-next"
Some "24.17.0"
| "VM", "restart_device_models" ->
Some "23.30.0"
| "pool", "get_guest_secureboot_readiness" ->
Some "24.15.0-next"
Some "24.17.0"
| "pool", "set_ext_auth_max_threads" ->
Some "23.27.0"
| "pool", "set_local_auth_max_threads" ->
Expand Down
2 changes: 1 addition & 1 deletion ocaml/idl/schematest.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ let hash x = Digest.string x |> Digest.to_hex
(* BEWARE: if this changes, check that schema has been bumped accordingly in
ocaml/idl/datamodel_common.ml, usually schema_minor_vsn *)

let last_known_schema_hash = "b24c445c4f9c3e7f63caf45705865fc8"
let last_known_schema_hash = "6566a4091ecb3200649185730e4f185d"

let current_schema_hash : string =
let open Datamodel_types in
Expand Down
Loading