-
Notifications
You must be signed in to change notification settings - Fork 112
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
feat: improved --stable-compatible
migration check
#4991
Conversation
--stable-compatible
migration check
src/pipeline/pipeline.ml
Outdated
@@ -288,7 +288,7 @@ let validate_stab_sig s : unit Diag.result = | |||
| Single s1, Single s2 -> | |||
Stability.match_stab_sig (Single s1) (Single s2) | |||
| PrePost (pre1, post1), PrePost (pre2, post2) -> | |||
let* () = Stability.match_stab_sig (Single pre1) (Single pre2) in | |||
(* let* () = Stability.match_stab_sig (Single pre1) (Single pre2) in *) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
danger?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just a sanity check on the produced signature, to ensure they parse and match reflexively. I 'll adjust the code a bit (maybe just dropping the required fields before checking the pre sigs (or something better).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am confused by the pipeline.ml
change.
@ggreif PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool!
Co-authored-by: Gabor Greif <[email protected]>
Co-authored-by: Gabor Greif <[email protected]>
9f3e7d6
to
f9c8e35
Compare
@Mergifyio refresh |
✅ Pull request refreshed |
Refine the
*.most
stable signature file format to distinguish stable variables that are strictly required by the migration function rather than propagated from the actor body (#4991).This enables the stable compatibility check to verify that a migration function will not fail due to missing required fields.
Required fields are declared
in
, notstable
, in the actor's pre-signature.Backwards compatible.