All Versions
73
Latest Version
Avg Release Cycle
82 days
Latest Release
1883 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.1.0 Changes
April 15, 2021โ Added
- Types are now exported as
yaml.types.XXX. - Every type now has
optionsproperty with original arguments kept as they were (seeyaml.types.int.optionsas an example).
๐ Changed
Schema.extend()now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered asabcdinstead ofcbad).
- Types are now exported as
-
v4.0.0 Changes
January 03, 2021๐ Changed
- Check [migration guide](migrate_v3_to_v4.md) to see details for all breaking changes.
- ๐ฅ Breaking: "unsafe" tags
!!js/function,!!js/regexp,!!js/undefinedare moved to js-yaml-js-types package. - ๐ฅ Breaking: removed
safe*functions. Useload,loadAll,dumpinstead which are all now safe by default. yaml.DEFAULT_SAFE_SCHEMAandyaml.DEFAULT_FULL_SCHEMAare removed, useyaml.DEFAULT_SCHEMAinstead.- ๐
yaml.Schema.create(schema, tags)is removed, useschema.extend(tags)instead. !!binarynow always mapped toUint8Arrayon load.- โฌ๏ธ Reduced nesting of
/libfolder. - ๐ Parse numbers according to YAML 1.2 instead of YAML 1.1 (
01234is now decimal,0o1234is octal,1:23is parsed as string instead of base60). dump()no longer quotes:,[,],(,)except when necessary, #470, #557.- Line and column in exceptions are now formatted as
(X:Y)instead ofat line X, column Y(also present in compact format), #332. - Code snippet created in exceptions now contains multiple lines with line numbers.
- ๐
dump()now serializesundefinedasnullin collections and removes keys withundefinedin mappings, #571. dump()withskipInvalid=truenow serializes invalid items in collections as null.- Custom tags starting with
!are now dumped as!taginstead of!<!tag>, #576. - Custom tags starting with
tag:yaml.org,2002:are now shorthanded using!!, #258.
โ Added
- โ Added
.mjs(es modules) support. - โ Added
quotingTypeandforceQuotesoptions for dumper to configure string literal style, #290, #529. - โ Added
styles: { '!!null': 'empty' }option for dumper (serializes{ foo: null }as "foo:"), #570. - โ Added
replaceroption (similar to option in JSON.stringify), #339. - Custom
Tagcan now handle all tags or multiple tags with the same prefix, #385.
๐ Fixed
- Astral characters are no longer encoded by
dump(), #587. - ๐ป "duplicate mapping key" exception now points at the correct column, #452.
- ๐ป Extra commas in flow collections (e.g.
[foo,,bar]) now throw an exception instead of producing null, #321. __proto__key no longer overrides object prototype, #164.- โ Removed
bower.json. - ๐ท Tags are now url-decoded in
load()and url-encoded indump()(previously usage of custom non-ascii tags may have led to invalid YAML that can't be parsed). - Anchors now work correctly with empty nodes, #301.
- ๐ Fix incorrect parsing of invalid block mapping syntax, #418.
- Throw an error if block sequence/mapping indent contains a tab, #80.
-
v3.14.1 Changes
December 07, 2020๐ Security
- ๐ Fix possible code execution in (already unsafe)
.load()(in &anchor).
- ๐ Fix possible code execution in (already unsafe)
-
v3.14.0 Changes
May 22, 2020๐ Changed
- ๐ Support
safe/loadAll(input, options)variant of call. - CI: drop outdated nodejs versions.
- Dev deps bump.
๐ Fixed
- Quote
=in plain scalars #519. - Check the node type for
!<?>tag in case user manually specifies it. - ๐ Verify that there are no null-bytes in input.
- ๐ Fix wrong quote position when writing condensed flow, #526.
- ๐ Support
-
v3.13.1 Changes
April 05, 2019๐ Security
- ๐ Fix possible code execution in (already unsafe)
.load(), #480.
- ๐ Fix possible code execution in (already unsafe)
-
v3.13.0 Changes
March 20, 2019๐ Security
- ๐ Security fix:
safeLoad()can hang when arrays with nested refs used as key. Now throws exception for nested arrays. #475.
- ๐ Security fix:
-
v3.12.2 Changes
February 26, 2019๐ Fixed
- ๐ Fix
noArrayIndentoption for root level, #468.
- ๐ Fix
-
v3.12.1 Changes
January 05, 2019โ Added
- โ Added
noArrayIndentoption, #432.
- โ Added
-
v3.12.0 Changes
June 01, 2018๐ Changed
- ๐ Support arrow functions without a block statement, #421.
-
v3.11.0 Changes
March 05, 2018โ Added
- โ Add arrow functions suport for
!!js/function.
๐ Fixed
- ๐ Fix dump in bin/octal/hex formats for negative integers, #399.
- โ Add arrow functions suport for