Releases: taufik-nurrohman/y-a-m-l
Releases · taufik-nurrohman/y-a-m-l
v1.2.0
v1.1.0
Now comply with most of the latest YAML 1.2.2 specifications! ✨
Comments are now required to have a white-space after the hash mark, so that authors can write URL containing a fragment identifier without having to quote it:
Before
Input
- #asdf
- asdf://asdf#asdf
Output
[
null,
"asdf://asdf"
]
After
Input
- #asdf
- asdf://asdf#asdf
Output
[
null,
"asdf://asdf#asdf"
]
The parser is now smart enough to detect broken YAML syntax. This update changes the previous behavior that allowed you to have a colon followed by a white-space in a plain mapping value:
Before
Input
asdf: asdf: asdf
Output
{
"asdf": "asdf: asdf"
}
Input
asdf: 'asdf: asdf'
Output
{
"asdf": "asdf: asdf"
}
After
Input
asdf: asdf: asdf
Output
{
"asdf": null
}
Input
asdf: 'asdf: asdf'
Output
{
"asdf": "asdf: asdf"
}
The parser is now smart enough to continue quoting the values even if there is no extra indentation on the next line:
Before
Input
- "asdf
- asdf
- asdf"
- "asdf
- asdf
- asdf"
Output
[
"\"asdf",
"asdf",
"asdf\"",
"\"asdf",
"asdf",
"asdf\""
]
After
Input
- "asdf
- asdf
- asdf"
- "asdf
- asdf
- asdf"
Output
[
"asdf - asdf - asdf",
"asdf - asdf - asdf"
]
v1.0.10
Update
v1.0.9
Fix #3
v1.0.8
Remove Constant
v1.0.7
Update
v1.0.6
Wrong Chomping Indicator Order
v1.0.5
Update
v1.0.4
Bug Fix
v1.0.3
Update