- Fixed parsing of literal scalars. (issue #108)
- Prevented adding unnecessary spaces in object dumps. (issue #68)
- Fixed dumping of objects with very long (> 1024 in length) keys.
- Refactored code. Changed API for custom types.
- Removed output colors in CLI, dump json by default.
- Removed big dependencies from browser version (esprima, buffer)
- load
esprima
manually, if !!js/function needed - !!bin now returns Array in browser
- load
- AMD support.
- Don't quote dumped strings because of
-
&?
(if not first char). - Deprecated loading yaml files via
require()
, as not recommended behaviour for node.
- Fix wrong loading of empty block scalars.
- Fix unwanted line breaks in folded scalars.
- Dumper now respects deprecated booleans syntax from YAML 1.0/1.1
- Fixed reader bug in JSON-like sequences/mappings.
- Add standard YAML schemas: Failsafe (
FAILSAFE_SCHEMA
), JSON (JSON_SCHEMA
) and Core (CORE_SCHEMA
). - Rename
DEFAULT_SCHEMA
toDEFAULT_FULL_SCHEMA
andSAFE_SCHEMA
toDEFAULT_SAFE_SCHEMA
. - Bug fix: export
NIL
constant from the public interface. - Add
skipInvalid
dumper option. - Use
safeLoad
forrequire
extension.
- Close security issue in !!js/function constructor. Big thanks to @nealpoole for security audit.
- Updated .npmignore to reduce package size
- Fixed dumping of empty arrays ans objects. ([] and {} instead of null)
- Fixed input validation: tabs are printable characters.
- Fixed error, when options not passed to function cass
- Full rewrite. New architecture. Fast one-stage parsing.
- Changed custom types API.
- Added YAML dumper.
- Fixed utf-8 files loading.
- Pull out hand-written shims. Use ES5-Shims for old browsers support. See #44.
- Fix timstamps incorectly parsed in local time when no time part specified.
- Fixes
TypeError: 'undefined' is not an object
under Safari. Thanks Phuong. - Fix timestamps incorrectly parsed in local time. Thanks @caolan. Closes #46.
y
,yes
,n
,no
,on
,off
are not converted to Booleans anymore. Fixes #42.require(filename)
now returns a single document and throws an Error if file contains more than one document.- CLI was merged back from js-yaml.bin
- Fix export of
addConstructor()
. Closes #39.
- Removed AMD parts - too buggy to use. Need help to rewrite from scratch
- Removed YUI compressor warning (renamed
double
variable). Closes #40.
- Workagound for .npmignore fuckup under windows. Thanks to airportyh.
- Fixes str[] for oldIEs support.
- Adds better has change support for browserified demo.
- improves compact output of Error. Closes #33.
- jsyaml executable moved to separate module.
- adds
compact
stringification of Errors.
- Fixes ug with block style scalars. Closes #26.
- All sources are passing JSLint now.
- Fixes bug in Safari. Closes #28.
- Fixes bug in Opers. Closes #29.
- Improves browser support. Closes #20.
- Added jsyaml executable.
- Added !!js/function support. Closes #12.
- Added AMD support for browserified version.
- Wrapped browserified js-yaml into closure.
- Fixed the resolvement of non-specific tags. Closes #17.
- Added permalinks for online demo YAML snippets. Now we have YPaste service, lol.
- Added !!js/regexp and !!js/undefined types. Partially solves #12.
- Fixed !!set mapping.
- Fixed month parse in dates. Closes #19.
- Removed JS.Class dependency. Closes #3.
- Added browserified version. Closes #13.
- Added live demo of browserified version.
- Ported some of the PyYAML tests. See #14.
- Fixed timestamp bug when fraction was given.
- Fixed crash on docs without ---. Closes #8.
- Fixed miltiline string parse
- Fixed tests/comments for using array as key
- Fixed short file read (<4k). Closes #9.
- First public release