-
Notifications
You must be signed in to change notification settings - Fork 15
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
Wrong serialization of strings containing commas in flow style list #68
Comments
Workaround: Setting [ 'foo', 'bar, baz' ] |
It probably has to be fixed in the |
HatoYuze
added a commit
to HatoYuze/yamlkt
that referenced
this issue
Jan 26, 2025
Him188
pushed a commit
that referenced
this issue
Feb 10, 2025
* fix: Wrong serialization of strings containing commas (#68) * feat: The configuring of char serialization feat: Add char serialization using Unicode code points fix: Correct serialization for chars with special characters * fix: switch JS backend from BOTH to IR * feat: Upgrade Kotlin to 2.0.0 Also: Updated kotlinx.serialization to 1.7.0 for compatibility * refactor: use `contextualDecodingException` when failing to decode a char * refactor: renamed elements of CharSerialization * test: add test for char serialization
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Code
Expected
[ foo, 'bar, baz' ]
Actual
[ foo, bar, baz ]
YamlKt version 0.13.0.
The text was updated successfully, but these errors were encountered: