-
-
Notifications
You must be signed in to change notification settings - Fork 149
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
Add quotes for all values listed in https://yaml.org/type/bool.html #137
Add quotes for all values listed in https://yaml.org/type/bool.html #137
Conversation
Fix FasterXML#129 - Backport of FasterXML#137 for 2.9
Fix FasterXML#129 - Backport of FasterXML#137 for 2.9
Fix FasterXML#129 - Backport of FasterXML#137 for 2.9
quotes around string value and fix compatibility with parser using yaml 1.1. Fix OpenAPITools#3196 In spec 1.1, some words without quotes can be implicitly converted to a boolean like "yes" or "on" (See https://yaml.org/type/bool.html) In v3.core.util.Yaml with MINIMIZE_QUOTES enabled, the formatter created a YAML but forget to protect some words. PRs are created to fix this in the formatter: - FasterXML/jackson-dataformats-text#137 - FasterXML/jackson-dataformats-text#138 Until the PRs will be merged and released, this patch fix it by re-adding quotes.
Quick question: have I already asked for a CLA? If not (this is your first contribution), I would need it (but just once, not for further contributions). Document is here: https://github.com/FasterXML/jackson/blob/master/contributor-agreement.pdf and the usual way is to print, fill & sign, scan, email to Thank you in advance! |
@cowtowncoder I filled the CLA and sent it by email. |
Fix #129