-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Metadata parser parsing YAML as version 1.1, leading to "yes"/"no" values parsed as booleans #7090
Comments
anderseknert
added a commit
to anderseknert/opa
that referenced
this issue
Oct 2, 2024
Replace use of yaml.v2 library with yaml.v3 Some quirks encountered in the upgrade: - Errors reported by the parser are now zero-indexed - A few errors seemingly reported on the line after the error rather than where it happened - Also a few tests where the line number reported *previously* seemed wrong but now is right - Something different in how the parser unmarshalled to the "raw" schema annotation type we used. Changed to use a a map instead of that type alias.. but I'm not really sure why that had to be done Perhaps worth looking into this further. But pushing this now to start that discussion. Fixes open-policy-agent#7090 Signed-off-by: Anders Eknert <[email protected]>
anderseknert
added a commit
to anderseknert/opa
that referenced
this issue
Oct 2, 2024
Replace use of yaml.v2 library with yaml.v3 Some quirks encountered in the upgrade: - Errors reported by the parser are now zero-indexed - A few errors seemingly reported on the line after the error rather than where it happened - Also a few tests where the line number reported *previously* seemed wrong but now is right - Something different in how the parser unmarshalled to the "raw" schema annotation type we used. Changed to use a a map instead of that type alias.. but I'm not really sure why that had to be done Perhaps worth looking into this further. But pushing this now to start that discussion. Fixes open-policy-agent#7090 Signed-off-by: Anders Eknert <[email protected]>
anderseknert
added a commit
to anderseknert/opa
that referenced
this issue
Oct 2, 2024
Some quirks encountered in the upgrade: - Errors reported by the parser are now zero-indexed - A few errors seemingly reported on the line after the error rather than where it happened - Also a few tests where the line number reported *previously* seemed wrong but now is right - Something different in how the parser unmarshalled to the "raw" schema annotation type we used. Changed to use a a map instead of that type alias.. but I'm not really sure why that had to be done Perhaps worth looking into this further. But pushing this now to start that discussion. Fixes open-policy-agent#7090 Signed-off-by: Anders Eknert <[email protected]>
anderseknert
added a commit
to anderseknert/opa
that referenced
this issue
Oct 2, 2024
Some quirks encountered in the upgrade: - Errors reported by the parser are now zero-indexed - A few errors seemingly reported on the line after the error rather than where it happened - Also a few tests where the line number reported *previously* seemed wrong but now is right - Something different in how the parser unmarshalled to the "raw" schema annotation type we used. Changed to use a a map instead of that type alias.. but I'm not really sure why that had to be done Perhaps worth looking into this further. But pushing this now to start that discussion. Fixes open-policy-agent#7090 Signed-off-by: Anders Eknert <[email protected]>
anderseknert
added a commit
to anderseknert/opa
that referenced
this issue
Oct 4, 2024
Some quirks encountered in the upgrade: - Errors reported by the parser are now zero-indexed - A few errors seemingly reported on the line after the error rather than where it happened - Also a few tests where the line number reported *previously* seemed wrong but now is right - Something different in how the parser unmarshalled to the "raw" schema annotation type we used. Changed to use a a map instead of that type alias.. but I'm not really sure why that had to be done Perhaps worth looking into this further. But pushing this now to start that discussion. Fixes open-policy-agent#7090 Signed-off-by: Anders Eknert <[email protected]>
anderseknert
added a commit
that referenced
this issue
Oct 6, 2024
Some quirks encountered in the upgrade: - Errors reported by the parser are now zero-indexed - A few errors seemingly reported on the line after the error rather than where it happened - Also a few tests where the line number reported *previously* seemed wrong but now is right - Something different in how the parser unmarshalled to the "raw" schema annotation type we used. Changed to use a a map instead of that type alias.. but I'm not really sure why that had to be done Perhaps worth looking into this further. But pushing this now to start that discussion. Fixes #7090 Signed-off-by: Anders Eknert <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will have the value of
rule
assigned astrue
rather than"yes"
.I think this is just an oversight as we don't seem to be using
gopkg.in/yaml.v2
elsewhere, and should be able to replace it with the v3 library here too.The text was updated successfully, but these errors were encountered: