1 | # Changelog
|
---|
2 |
|
---|
3 | All notable changes to this project will be documented in this file.
|
---|
4 |
|
---|
5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
---|
6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
---|
7 |
|
---|
8 |
|
---|
9 | ## [4.1.0] - 2021-04-15
|
---|
10 | ### Added
|
---|
11 | - Types are now exported as `yaml.types.XXX`.
|
---|
12 | - Every type now has `options` property with original arguments kept as they were
|
---|
13 | (see `yaml.types.int.options` as an example).
|
---|
14 |
|
---|
15 | ### Changed
|
---|
16 | - `Schema.extend()` now keeps old type order in case of conflicts
|
---|
17 | (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as `abcd` instead of `cbad`).
|
---|
18 |
|
---|
19 |
|
---|
20 | ## [4.0.0] - 2021-01-03
|
---|
21 | ### Changed
|
---|
22 | - Check [migration guide](migrate_v3_to_v4.md) to see details for all breaking changes.
|
---|
23 | - Breaking: "unsafe" tags `!!js/function`, `!!js/regexp`, `!!js/undefined` are
|
---|
24 | moved to [js-yaml-js-types](https://github.com/nodeca/js-yaml-js-types) package.
|
---|
25 | - Breaking: removed `safe*` functions. Use `load`, `loadAll`, `dump`
|
---|
26 | instead which are all now safe by default.
|
---|
27 | - `yaml.DEFAULT_SAFE_SCHEMA` and `yaml.DEFAULT_FULL_SCHEMA` are removed, use
|
---|
28 | `yaml.DEFAULT_SCHEMA` instead.
|
---|
29 | - `yaml.Schema.create(schema, tags)` is removed, use `schema.extend(tags)` instead.
|
---|
30 | - `!!binary` now always mapped to `Uint8Array` on load.
|
---|
31 | - Reduced nesting of `/lib` folder.
|
---|
32 | - Parse numbers according to YAML 1.2 instead of YAML 1.1 (`01234` is now decimal,
|
---|
33 | `0o1234` is octal, `1:23` is parsed as string instead of base60).
|
---|
34 | - `dump()` no longer quotes `:`, `[`, `]`, `(`, `)` except when necessary, #470, #557.
|
---|
35 | - Line and column in exceptions are now formatted as `(X:Y)` instead of
|
---|
36 | `at line X, column Y` (also present in compact format), #332.
|
---|
37 | - Code snippet created in exceptions now contains multiple lines with line numbers.
|
---|
38 | - `dump()` now serializes `undefined` as `null` in collections and removes keys with
|
---|
39 | `undefined` in mappings, #571.
|
---|
40 | - `dump()` with `skipInvalid=true` now serializes invalid items in collections as null.
|
---|
41 | - Custom tags starting with `!` are now dumped as `!tag` instead of `!<!tag>`, #576.
|
---|
42 | - Custom tags starting with `tag:yaml.org,2002:` are now shorthanded using `!!`, #258.
|
---|
43 |
|
---|
44 | ### Added
|
---|
45 | - Added `.mjs` (es modules) support.
|
---|
46 | - Added `quotingType` and `forceQuotes` options for dumper to configure
|
---|
47 | string literal style, #290, #529.
|
---|
48 | - Added `styles: { '!!null': 'empty' }` option for dumper
|
---|
49 | (serializes `{ foo: null }` as "`foo: `"), #570.
|
---|
50 | - Added `replacer` option (similar to option in JSON.stringify), #339.
|
---|
51 | - Custom `Tag` can now handle all tags or multiple tags with the same prefix, #385.
|
---|
52 |
|
---|
53 | ### Fixed
|
---|
54 | - Astral characters are no longer encoded by `dump()`, #587.
|
---|
55 | - "duplicate mapping key" exception now points at the correct column, #452.
|
---|
56 | - Extra commas in flow collections (e.g. `[foo,,bar]`) now throw an exception
|
---|
57 | instead of producing null, #321.
|
---|
58 | - `__proto__` key no longer overrides object prototype, #164.
|
---|
59 | - Removed `bower.json`.
|
---|
60 | - Tags are now url-decoded in `load()` and url-encoded in `dump()`
|
---|
61 | (previously usage of custom non-ascii tags may have led to invalid YAML that can't be parsed).
|
---|
62 | - Anchors now work correctly with empty nodes, #301.
|
---|
63 | - Fix incorrect parsing of invalid block mapping syntax, #418.
|
---|
64 | - Throw an error if block sequence/mapping indent contains a tab, #80.
|
---|
65 |
|
---|
66 |
|
---|
67 | ## [3.14.1] - 2020-12-07
|
---|
68 | ### Security
|
---|
69 | - Fix possible code execution in (already unsafe) `.load()` (in &anchor).
|
---|
70 |
|
---|
71 |
|
---|
72 | ## [3.14.0] - 2020-05-22
|
---|
73 | ### Changed
|
---|
74 | - Support `safe/loadAll(input, options)` variant of call.
|
---|
75 | - CI: drop outdated nodejs versions.
|
---|
76 | - Dev deps bump.
|
---|
77 |
|
---|
78 | ### Fixed
|
---|
79 | - Quote `=` in plain scalars #519.
|
---|
80 | - Check the node type for `!<?>` tag in case user manually specifies it.
|
---|
81 | - Verify that there are no null-bytes in input.
|
---|
82 | - Fix wrong quote position when writing condensed flow, #526.
|
---|
83 |
|
---|
84 |
|
---|
85 | ## [3.13.1] - 2019-04-05
|
---|
86 | ### Security
|
---|
87 | - Fix possible code execution in (already unsafe) `.load()`, #480.
|
---|
88 |
|
---|
89 |
|
---|
90 | ## [3.13.0] - 2019-03-20
|
---|
91 | ### Security
|
---|
92 | - Security fix: `safeLoad()` can hang when arrays with nested refs
|
---|
93 | used as key. Now throws exception for nested arrays. #475.
|
---|
94 |
|
---|
95 |
|
---|
96 | ## [3.12.2] - 2019-02-26
|
---|
97 | ### Fixed
|
---|
98 | - Fix `noArrayIndent` option for root level, #468.
|
---|
99 |
|
---|
100 |
|
---|
101 | ## [3.12.1] - 2019-01-05
|
---|
102 | ### Added
|
---|
103 | - Added `noArrayIndent` option, #432.
|
---|
104 |
|
---|
105 |
|
---|
106 | ## [3.12.0] - 2018-06-02
|
---|
107 | ### Changed
|
---|
108 | - Support arrow functions without a block statement, #421.
|
---|
109 |
|
---|
110 |
|
---|
111 | ## [3.11.0] - 2018-03-05
|
---|
112 | ### Added
|
---|
113 | - Add arrow functions suport for `!!js/function`.
|
---|
114 |
|
---|
115 | ### Fixed
|
---|
116 | - Fix dump in bin/octal/hex formats for negative integers, #399.
|
---|
117 |
|
---|
118 |
|
---|
119 | ## [3.10.0] - 2017-09-10
|
---|
120 | ### Fixed
|
---|
121 | - Fix `condenseFlow` output (quote keys for sure, instead of spaces), #371, #370.
|
---|
122 | - Dump astrals as codepoints instead of surrogate pair, #368.
|
---|
123 |
|
---|
124 |
|
---|
125 | ## [3.9.1] - 2017-07-08
|
---|
126 | ### Fixed
|
---|
127 | - Ensure stack is present for custom errors in node 7.+, #351.
|
---|
128 |
|
---|
129 |
|
---|
130 | ## [3.9.0] - 2017-07-08
|
---|
131 | ### Added
|
---|
132 | - Add `condenseFlow` option (to create pretty URL query params), #346.
|
---|
133 |
|
---|
134 | ### Fixed
|
---|
135 | - Support array return from safeLoadAll/loadAll, #350.
|
---|
136 |
|
---|
137 |
|
---|
138 | ## [3.8.4] - 2017-05-08
|
---|
139 | ### Fixed
|
---|
140 | - Dumper: prevent space after dash for arrays that wrap, #343.
|
---|
141 |
|
---|
142 |
|
---|
143 | ## [3.8.3] - 2017-04-05
|
---|
144 | ### Fixed
|
---|
145 | - Should not allow numbers to begin and end with underscore, #335.
|
---|
146 |
|
---|
147 |
|
---|
148 | ## [3.8.2] - 2017-03-02
|
---|
149 | ### Fixed
|
---|
150 | - Fix `!!float 123` (integers) parse, #333.
|
---|
151 | - Don't allow leading zeros in floats (except 0, 0.xxx).
|
---|
152 | - Allow positive exponent without sign in floats.
|
---|
153 |
|
---|
154 |
|
---|
155 | ## [3.8.1] - 2017-02-07
|
---|
156 | ### Changed
|
---|
157 | - Maintenance: update browserified build.
|
---|
158 |
|
---|
159 |
|
---|
160 | ## [3.8.0] - 2017-02-07
|
---|
161 | ### Fixed
|
---|
162 | - Fix reported position for `duplicated mapping key` errors.
|
---|
163 | Now points to block start instead of block end.
|
---|
164 | (#243, thanks to @shockey).
|
---|
165 |
|
---|
166 |
|
---|
167 | ## [3.7.0] - 2016-11-12
|
---|
168 | ### Added
|
---|
169 | - Support polymorphism for tags (#300, thanks to @monken).
|
---|
170 |
|
---|
171 | ### Fixed
|
---|
172 | - Fix parsing of quotes followed by newlines (#304, thanks to @dplepage).
|
---|
173 |
|
---|
174 |
|
---|
175 | ## [3.6.1] - 2016-05-11
|
---|
176 | ### Fixed
|
---|
177 | - Fix output cut on a pipe, #286.
|
---|
178 |
|
---|
179 |
|
---|
180 | ## [3.6.0] - 2016-04-16
|
---|
181 | ### Fixed
|
---|
182 | - Dumper rewrite, fix multiple bugs with trailing `\n`.
|
---|
183 | Big thanks to @aepsilon!
|
---|
184 | - Loader: fix leading/trailing newlines in block scalars, @aepsilon.
|
---|
185 |
|
---|
186 |
|
---|
187 | ## [3.5.5] - 2016-03-17
|
---|
188 | ### Fixed
|
---|
189 | - Date parse fix: don't allow dates with on digit in month and day, #268.
|
---|
190 |
|
---|
191 |
|
---|
192 | ## [3.5.4] - 2016-03-09
|
---|
193 | ### Added
|
---|
194 | - `noCompatMode` for dumper, to disable quoting YAML 1.1 values.
|
---|
195 |
|
---|
196 |
|
---|
197 | ## [3.5.3] - 2016-02-11
|
---|
198 | ### Changed
|
---|
199 | - Maintenance release.
|
---|
200 |
|
---|
201 |
|
---|
202 | ## [3.5.2] - 2016-01-11
|
---|
203 | ### Changed
|
---|
204 | - Maintenance: missed comma in bower config.
|
---|
205 |
|
---|
206 |
|
---|
207 | ## [3.5.1] - 2016-01-11
|
---|
208 | ### Changed
|
---|
209 | - Removed `inherit` dependency, #239.
|
---|
210 | - Better browserify workaround for esprima load.
|
---|
211 | - Demo rewrite.
|
---|
212 |
|
---|
213 |
|
---|
214 | ## [3.5.0] - 2016-01-10
|
---|
215 | ### Fixed
|
---|
216 | - Dumper. Fold strings only, #217.
|
---|
217 | - Dumper. `norefs` option, to clone linked objects, #229.
|
---|
218 | - Loader. Throw a warning for duplicate keys, #166.
|
---|
219 | - Improved browserify support (mark `esprima` & `Buffer` excluded).
|
---|
220 |
|
---|
221 |
|
---|
222 | ## [3.4.6] - 2015-11-26
|
---|
223 | ### Changed
|
---|
224 | - Use standalone `inherit` to keep browserified files clear.
|
---|
225 |
|
---|
226 |
|
---|
227 | ## [3.4.5] - 2015-11-23
|
---|
228 | ### Added
|
---|
229 | - Added `lineWidth` option to dumper.
|
---|
230 |
|
---|
231 |
|
---|
232 | ## [3.4.4] - 2015-11-21
|
---|
233 | ### Fixed
|
---|
234 | - Fixed floats dump (missed dot for scientific format), #220.
|
---|
235 | - Allow non-printable characters inside quoted scalars, #192.
|
---|
236 |
|
---|
237 |
|
---|
238 | ## [3.4.3] - 2015-10-10
|
---|
239 | ### Changed
|
---|
240 | - Maintenance release - deps bump (esprima, argparse).
|
---|
241 |
|
---|
242 |
|
---|
243 | ## [3.4.2] - 2015-09-09
|
---|
244 | ### Fixed
|
---|
245 | - Fixed serialization of duplicated entries in sequences, #205.
|
---|
246 | Thanks to @vogelsgesang.
|
---|
247 |
|
---|
248 |
|
---|
249 | ## [3.4.1] - 2015-09-05
|
---|
250 | ### Fixed
|
---|
251 | - Fixed stacktrace handling in generated errors, for browsers (FF/IE).
|
---|
252 |
|
---|
253 |
|
---|
254 | ## [3.4.0] - 2015-08-23
|
---|
255 | ### Changed
|
---|
256 | - Don't throw on warnings anymore. Use `onWarning` option to catch.
|
---|
257 | - Throw error on unknown tags (was warning before).
|
---|
258 | - Reworked internals of error class.
|
---|
259 |
|
---|
260 | ### Fixed
|
---|
261 | - Fixed multiline keys dump, #197. Thanks to @tcr.
|
---|
262 | - Fixed heading line breaks in some scalars (regression).
|
---|
263 |
|
---|
264 |
|
---|
265 | ## [3.3.1] - 2015-05-13
|
---|
266 | ### Added
|
---|
267 | - Added `.sortKeys` dumper option, thanks to @rjmunro.
|
---|
268 |
|
---|
269 | ### Fixed
|
---|
270 | - Fixed astral characters support, #191.
|
---|
271 |
|
---|
272 |
|
---|
273 | ## [3.3.0] - 2015-04-26
|
---|
274 | ### Changed
|
---|
275 | - Significantly improved long strings formatting in dumper, thanks to @isaacs.
|
---|
276 | - Strip BOM if exists.
|
---|
277 |
|
---|
278 |
|
---|
279 | ## [3.2.7] - 2015-02-19
|
---|
280 | ### Changed
|
---|
281 | - Maintenance release.
|
---|
282 | - Updated dependencies.
|
---|
283 | - HISTORY.md -> CHANGELOG.md
|
---|
284 |
|
---|
285 |
|
---|
286 | ## [3.2.6] - 2015-02-07
|
---|
287 | ### Fixed
|
---|
288 | - Fixed encoding of UTF-16 surrogate pairs. (e.g. "\U0001F431" CAT FACE).
|
---|
289 | - Fixed demo dates dump (#113, thanks to @Hypercubed).
|
---|
290 |
|
---|
291 |
|
---|
292 | ## [3.2.5] - 2014-12-28
|
---|
293 | ### Fixed
|
---|
294 | - Fixed resolving of all built-in types on empty nodes.
|
---|
295 | - Fixed invalid warning on empty lines within quoted scalars and flow collections.
|
---|
296 | - Fixed bug: Tag on an empty node didn't resolve in some cases.
|
---|
297 |
|
---|
298 |
|
---|
299 | ## [3.2.4] - 2014-12-19
|
---|
300 | ### Fixed
|
---|
301 | - Fixed resolving of !!null tag on an empty node.
|
---|
302 |
|
---|
303 |
|
---|
304 | ## [3.2.3] - 2014-11-08
|
---|
305 | ### Fixed
|
---|
306 | - Implemented dumping of objects with circular and cross references.
|
---|
307 | - Partially fixed aliasing of constructed objects. (see issue #141 for details)
|
---|
308 |
|
---|
309 |
|
---|
310 | ## [3.2.2] - 2014-09-07
|
---|
311 | ### Fixed
|
---|
312 | - Fixed infinite loop on unindented block scalars.
|
---|
313 | - Rewritten base64 encode/decode in binary type, to keep code licence clear.
|
---|
314 |
|
---|
315 |
|
---|
316 | ## [3.2.1] - 2014-08-24
|
---|
317 | ### Fixed
|
---|
318 | - Nothig new. Just fix npm publish error.
|
---|
319 |
|
---|
320 |
|
---|
321 | ## [3.2.0] - 2014-08-24
|
---|
322 | ### Added
|
---|
323 | - Added input piping support to CLI.
|
---|
324 |
|
---|
325 | ### Fixed
|
---|
326 | - Fixed typo, that could cause hand on initial indent (#139).
|
---|
327 |
|
---|
328 |
|
---|
329 | ## [3.1.0] - 2014-07-07
|
---|
330 | ### Changed
|
---|
331 | - 1.5x-2x speed boost.
|
---|
332 | - Removed deprecated `require('xxx.yml')` support.
|
---|
333 | - Significant code cleanup and refactoring.
|
---|
334 | - Internal API changed. If you used custom types - see updated examples.
|
---|
335 | Others are not affected.
|
---|
336 | - Even if the input string has no trailing line break character,
|
---|
337 | it will be parsed as if it has one.
|
---|
338 | - Added benchmark scripts.
|
---|
339 | - Moved bower files to /dist folder
|
---|
340 | - Bugfixes.
|
---|
341 |
|
---|
342 |
|
---|
343 | ## [3.0.2] - 2014-02-27
|
---|
344 | ### Fixed
|
---|
345 | - Fixed bug: "constructor" string parsed as `null`.
|
---|
346 |
|
---|
347 |
|
---|
348 | ## [3.0.1] - 2013-12-22
|
---|
349 | ### Fixed
|
---|
350 | - Fixed parsing of literal scalars. (issue #108)
|
---|
351 | - Prevented adding unnecessary spaces in object dumps. (issue #68)
|
---|
352 | - Fixed dumping of objects with very long (> 1024 in length) keys.
|
---|
353 |
|
---|
354 |
|
---|
355 | ## [3.0.0] - 2013-12-16
|
---|
356 | ### Changed
|
---|
357 | - Refactored code. Changed API for custom types.
|
---|
358 | - Removed output colors in CLI, dump json by default.
|
---|
359 | - Removed big dependencies from browser version (esprima, buffer). Load `esprima` manually, if `!!js/function` needed. `!!bin` now returns Array in browser
|
---|
360 | - AMD support.
|
---|
361 | - Don't quote dumped strings because of `-` & `?` (if not first char).
|
---|
362 | - __Deprecated__ loading yaml files via `require()`, as not recommended
|
---|
363 | behaviour for node.
|
---|
364 |
|
---|
365 |
|
---|
366 | ## [2.1.3] - 2013-10-16
|
---|
367 | ### Fixed
|
---|
368 | - Fix wrong loading of empty block scalars.
|
---|
369 |
|
---|
370 |
|
---|
371 | ## [2.1.2] - 2013-10-07
|
---|
372 | ### Fixed
|
---|
373 | - Fix unwanted line breaks in folded scalars.
|
---|
374 |
|
---|
375 |
|
---|
376 | ## [2.1.1] - 2013-10-02
|
---|
377 | ### Fixed
|
---|
378 | - Dumper now respects deprecated booleans syntax from YAML 1.0/1.1
|
---|
379 | - Fixed reader bug in JSON-like sequences/mappings.
|
---|
380 |
|
---|
381 |
|
---|
382 | ## [2.1.0] - 2013-06-05
|
---|
383 | ### Added
|
---|
384 | - Add standard YAML schemas: Failsafe (`FAILSAFE_SCHEMA`),
|
---|
385 | JSON (`JSON_SCHEMA`) and Core (`CORE_SCHEMA`).
|
---|
386 | - Add `skipInvalid` dumper option.
|
---|
387 |
|
---|
388 | ### Changed
|
---|
389 | - Rename `DEFAULT_SCHEMA` to `DEFAULT_FULL_SCHEMA`
|
---|
390 | and `SAFE_SCHEMA` to `DEFAULT_SAFE_SCHEMA`.
|
---|
391 | - Use `safeLoad` for `require` extension.
|
---|
392 |
|
---|
393 | ### Fixed
|
---|
394 | - Bug fix: export `NIL` constant from the public interface.
|
---|
395 |
|
---|
396 |
|
---|
397 | ## [2.0.5] - 2013-04-26
|
---|
398 | ### Security
|
---|
399 | - Close security issue in !!js/function constructor.
|
---|
400 | Big thanks to @nealpoole for security audit.
|
---|
401 |
|
---|
402 |
|
---|
403 | ## [2.0.4] - 2013-04-08
|
---|
404 | ### Changed
|
---|
405 | - Updated .npmignore to reduce package size
|
---|
406 |
|
---|
407 |
|
---|
408 | ## [2.0.3] - 2013-02-26
|
---|
409 | ### Fixed
|
---|
410 | - Fixed dumping of empty arrays ans objects. ([] and {} instead of null)
|
---|
411 |
|
---|
412 |
|
---|
413 | ## [2.0.2] - 2013-02-15
|
---|
414 | ### Fixed
|
---|
415 | - Fixed input validation: tabs are printable characters.
|
---|
416 |
|
---|
417 |
|
---|
418 | ## [2.0.1] - 2013-02-09
|
---|
419 | ### Fixed
|
---|
420 | - Fixed error, when options not passed to function cass
|
---|
421 |
|
---|
422 |
|
---|
423 | ## [2.0.0] - 2013-02-09
|
---|
424 | ### Changed
|
---|
425 | - Full rewrite. New architecture. Fast one-stage parsing.
|
---|
426 | - Changed custom types API.
|
---|
427 | - Added YAML dumper.
|
---|
428 |
|
---|
429 |
|
---|
430 | ## [1.0.3] - 2012-11-05
|
---|
431 | ### Fixed
|
---|
432 | - Fixed utf-8 files loading.
|
---|
433 |
|
---|
434 |
|
---|
435 | ## [1.0.2] - 2012-08-02
|
---|
436 | ### Fixed
|
---|
437 | - Pull out hand-written shims. Use ES5-Shims for old browsers support. See #44.
|
---|
438 | - Fix timstamps incorectly parsed in local time when no time part specified.
|
---|
439 |
|
---|
440 |
|
---|
441 | ## [1.0.1] - 2012-07-07
|
---|
442 | ### Fixed
|
---|
443 | - Fixes `TypeError: 'undefined' is not an object` under Safari. Thanks Phuong.
|
---|
444 | - Fix timestamps incorrectly parsed in local time. Thanks @caolan. Closes #46.
|
---|
445 |
|
---|
446 |
|
---|
447 | ## [1.0.0] - 2012-07-01
|
---|
448 | ### Changed
|
---|
449 | - `y`, `yes`, `n`, `no`, `on`, `off` are not converted to Booleans anymore.
|
---|
450 | Fixes #42.
|
---|
451 | - `require(filename)` now returns a single document and throws an Error if
|
---|
452 | file contains more than one document.
|
---|
453 | - CLI was merged back from js-yaml.bin
|
---|
454 |
|
---|
455 |
|
---|
456 | ## [0.3.7] - 2012-02-28
|
---|
457 | ### Fixed
|
---|
458 | - Fix export of `addConstructor()`. Closes #39.
|
---|
459 |
|
---|
460 |
|
---|
461 | ## [0.3.6] - 2012-02-22
|
---|
462 | ### Changed
|
---|
463 | - Removed AMD parts - too buggy to use. Need help to rewrite from scratch
|
---|
464 |
|
---|
465 | ### Fixed
|
---|
466 | - Removed YUI compressor warning (renamed `double` variable). Closes #40.
|
---|
467 |
|
---|
468 |
|
---|
469 | ## [0.3.5] - 2012-01-10
|
---|
470 | ### Fixed
|
---|
471 | - Workagound for .npmignore fuckup under windows. Thanks to airportyh.
|
---|
472 |
|
---|
473 |
|
---|
474 | ## [0.3.4] - 2011-12-24
|
---|
475 | ### Fixed
|
---|
476 | - Fixes str[] for oldIEs support.
|
---|
477 | - Adds better has change support for browserified demo.
|
---|
478 | - improves compact output of Error. Closes #33.
|
---|
479 |
|
---|
480 |
|
---|
481 | ## [0.3.3] - 2011-12-20
|
---|
482 | ### Added
|
---|
483 | - adds `compact` stringification of Errors.
|
---|
484 |
|
---|
485 | ### Changed
|
---|
486 | - jsyaml executable moved to separate module.
|
---|
487 |
|
---|
488 |
|
---|
489 | ## [0.3.2] - 2011-12-16
|
---|
490 | ### Added
|
---|
491 | - Added jsyaml executable.
|
---|
492 | - Added !!js/function support. Closes #12.
|
---|
493 |
|
---|
494 | ### Fixed
|
---|
495 | - Fixes ug with block style scalars. Closes #26.
|
---|
496 | - All sources are passing JSLint now.
|
---|
497 | - Fixes bug in Safari. Closes #28.
|
---|
498 | - Fixes bug in Opers. Closes #29.
|
---|
499 | - Improves browser support. Closes #20.
|
---|
500 |
|
---|
501 |
|
---|
502 | ## [0.3.1] - 2011-11-18
|
---|
503 | ### Added
|
---|
504 | - Added AMD support for browserified version.
|
---|
505 | - Added permalinks for online demo YAML snippets. Now we have YPaste service, lol.
|
---|
506 | - Added !!js/regexp and !!js/undefined types. Partially solves #12.
|
---|
507 |
|
---|
508 | ### Changed
|
---|
509 | - Wrapped browserified js-yaml into closure.
|
---|
510 |
|
---|
511 | ### Fixed
|
---|
512 | - Fixed the resolvement of non-specific tags. Closes #17.
|
---|
513 | - Fixed !!set mapping.
|
---|
514 | - Fixed month parse in dates. Closes #19.
|
---|
515 |
|
---|
516 |
|
---|
517 | ## [0.3.0] - 2011-11-09
|
---|
518 | ### Added
|
---|
519 | - Added browserified version. Closes #13.
|
---|
520 | - Added live demo of browserified version.
|
---|
521 | - Ported some of the PyYAML tests. See #14.
|
---|
522 |
|
---|
523 | ### Fixed
|
---|
524 | - Removed JS.Class dependency. Closes #3.
|
---|
525 | - Fixed timestamp bug when fraction was given.
|
---|
526 |
|
---|
527 |
|
---|
528 | ## [0.2.2] - 2011-11-06
|
---|
529 | ### Fixed
|
---|
530 | - Fixed crash on docs without ---. Closes #8.
|
---|
531 | - Fixed multiline string parse
|
---|
532 | - Fixed tests/comments for using array as key
|
---|
533 |
|
---|
534 |
|
---|
535 | ## [0.2.1] - 2011-11-02
|
---|
536 | ### Fixed
|
---|
537 | - Fixed short file read (<4k). Closes #9.
|
---|
538 |
|
---|
539 |
|
---|
540 | ## [0.2.0] - 2011-11-02
|
---|
541 | ### Changed
|
---|
542 | - First public release
|
---|
543 |
|
---|
544 |
|
---|
545 | [4.1.0]: https://github.com/nodeca/js-yaml/compare/4.0.0...4.1.0
|
---|
546 | [4.0.0]: https://github.com/nodeca/js-yaml/compare/3.14.0...4.0.0
|
---|
547 | [3.14.0]: https://github.com/nodeca/js-yaml/compare/3.13.1...3.14.0
|
---|
548 | [3.13.1]: https://github.com/nodeca/js-yaml/compare/3.13.0...3.13.1
|
---|
549 | [3.13.0]: https://github.com/nodeca/js-yaml/compare/3.12.2...3.13.0
|
---|
550 | [3.12.2]: https://github.com/nodeca/js-yaml/compare/3.12.1...3.12.2
|
---|
551 | [3.12.1]: https://github.com/nodeca/js-yaml/compare/3.12.0...3.12.1
|
---|
552 | [3.12.0]: https://github.com/nodeca/js-yaml/compare/3.11.0...3.12.0
|
---|
553 | [3.11.0]: https://github.com/nodeca/js-yaml/compare/3.10.0...3.11.0
|
---|
554 | [3.10.0]: https://github.com/nodeca/js-yaml/compare/3.9.1...3.10.0
|
---|
555 | [3.9.1]: https://github.com/nodeca/js-yaml/compare/3.9.0...3.9.1
|
---|
556 | [3.9.0]: https://github.com/nodeca/js-yaml/compare/3.8.4...3.9.0
|
---|
557 | [3.8.4]: https://github.com/nodeca/js-yaml/compare/3.8.3...3.8.4
|
---|
558 | [3.8.3]: https://github.com/nodeca/js-yaml/compare/3.8.2...3.8.3
|
---|
559 | [3.8.2]: https://github.com/nodeca/js-yaml/compare/3.8.1...3.8.2
|
---|
560 | [3.8.1]: https://github.com/nodeca/js-yaml/compare/3.8.0...3.8.1
|
---|
561 | [3.8.0]: https://github.com/nodeca/js-yaml/compare/3.7.0...3.8.0
|
---|
562 | [3.7.0]: https://github.com/nodeca/js-yaml/compare/3.6.1...3.7.0
|
---|
563 | [3.6.1]: https://github.com/nodeca/js-yaml/compare/3.6.0...3.6.1
|
---|
564 | [3.6.0]: https://github.com/nodeca/js-yaml/compare/3.5.5...3.6.0
|
---|
565 | [3.5.5]: https://github.com/nodeca/js-yaml/compare/3.5.4...3.5.5
|
---|
566 | [3.5.4]: https://github.com/nodeca/js-yaml/compare/3.5.3...3.5.4
|
---|
567 | [3.5.3]: https://github.com/nodeca/js-yaml/compare/3.5.2...3.5.3
|
---|
568 | [3.5.2]: https://github.com/nodeca/js-yaml/compare/3.5.1...3.5.2
|
---|
569 | [3.5.1]: https://github.com/nodeca/js-yaml/compare/3.5.0...3.5.1
|
---|
570 | [3.5.0]: https://github.com/nodeca/js-yaml/compare/3.4.6...3.5.0
|
---|
571 | [3.4.6]: https://github.com/nodeca/js-yaml/compare/3.4.5...3.4.6
|
---|
572 | [3.4.5]: https://github.com/nodeca/js-yaml/compare/3.4.4...3.4.5
|
---|
573 | [3.4.4]: https://github.com/nodeca/js-yaml/compare/3.4.3...3.4.4
|
---|
574 | [3.4.3]: https://github.com/nodeca/js-yaml/compare/3.4.2...3.4.3
|
---|
575 | [3.4.2]: https://github.com/nodeca/js-yaml/compare/3.4.1...3.4.2
|
---|
576 | [3.4.1]: https://github.com/nodeca/js-yaml/compare/3.4.0...3.4.1
|
---|
577 | [3.4.0]: https://github.com/nodeca/js-yaml/compare/3.3.1...3.4.0
|
---|
578 | [3.3.1]: https://github.com/nodeca/js-yaml/compare/3.3.0...3.3.1
|
---|
579 | [3.3.0]: https://github.com/nodeca/js-yaml/compare/3.2.7...3.3.0
|
---|
580 | [3.2.7]: https://github.com/nodeca/js-yaml/compare/3.2.6...3.2.7
|
---|
581 | [3.2.6]: https://github.com/nodeca/js-yaml/compare/3.2.5...3.2.6
|
---|
582 | [3.2.5]: https://github.com/nodeca/js-yaml/compare/3.2.4...3.2.5
|
---|
583 | [3.2.4]: https://github.com/nodeca/js-yaml/compare/3.2.3...3.2.4
|
---|
584 | [3.2.3]: https://github.com/nodeca/js-yaml/compare/3.2.2...3.2.3
|
---|
585 | [3.2.2]: https://github.com/nodeca/js-yaml/compare/3.2.1...3.2.2
|
---|
586 | [3.2.1]: https://github.com/nodeca/js-yaml/compare/3.2.0...3.2.1
|
---|
587 | [3.2.0]: https://github.com/nodeca/js-yaml/compare/3.1.0...3.2.0
|
---|
588 | [3.1.0]: https://github.com/nodeca/js-yaml/compare/3.0.2...3.1.0
|
---|
589 | [3.0.2]: https://github.com/nodeca/js-yaml/compare/3.0.1...3.0.2
|
---|
590 | [3.0.1]: https://github.com/nodeca/js-yaml/compare/3.0.0...3.0.1
|
---|
591 | [3.0.0]: https://github.com/nodeca/js-yaml/compare/2.1.3...3.0.0
|
---|
592 | [2.1.3]: https://github.com/nodeca/js-yaml/compare/2.1.2...2.1.3
|
---|
593 | [2.1.2]: https://github.com/nodeca/js-yaml/compare/2.1.1...2.1.2
|
---|
594 | [2.1.1]: https://github.com/nodeca/js-yaml/compare/2.1.0...2.1.1
|
---|
595 | [2.1.0]: https://github.com/nodeca/js-yaml/compare/2.0.5...2.1.0
|
---|
596 | [2.0.5]: https://github.com/nodeca/js-yaml/compare/2.0.4...2.0.5
|
---|
597 | [2.0.4]: https://github.com/nodeca/js-yaml/compare/2.0.3...2.0.4
|
---|
598 | [2.0.3]: https://github.com/nodeca/js-yaml/compare/2.0.2...2.0.3
|
---|
599 | [2.0.2]: https://github.com/nodeca/js-yaml/compare/2.0.1...2.0.2
|
---|
600 | [2.0.1]: https://github.com/nodeca/js-yaml/compare/2.0.0...2.0.1
|
---|
601 | [2.0.0]: https://github.com/nodeca/js-yaml/compare/1.0.3...2.0.0
|
---|
602 | [1.0.3]: https://github.com/nodeca/js-yaml/compare/1.0.2...1.0.3
|
---|
603 | [1.0.2]: https://github.com/nodeca/js-yaml/compare/1.0.1...1.0.2
|
---|
604 | [1.0.1]: https://github.com/nodeca/js-yaml/compare/1.0.0...1.0.1
|
---|
605 | [1.0.0]: https://github.com/nodeca/js-yaml/compare/0.3.7...1.0.0
|
---|
606 | [0.3.7]: https://github.com/nodeca/js-yaml/compare/0.3.6...0.3.7
|
---|
607 | [0.3.6]: https://github.com/nodeca/js-yaml/compare/0.3.5...0.3.6
|
---|
608 | [0.3.5]: https://github.com/nodeca/js-yaml/compare/0.3.4...0.3.5
|
---|
609 | [0.3.4]: https://github.com/nodeca/js-yaml/compare/0.3.3...0.3.4
|
---|
610 | [0.3.3]: https://github.com/nodeca/js-yaml/compare/0.3.2...0.3.3
|
---|
611 | [0.3.2]: https://github.com/nodeca/js-yaml/compare/0.3.1...0.3.2
|
---|
612 | [0.3.1]: https://github.com/nodeca/js-yaml/compare/0.3.0...0.3.1
|
---|
613 | [0.3.0]: https://github.com/nodeca/js-yaml/compare/0.2.2...0.3.0
|
---|
614 | [0.2.2]: https://github.com/nodeca/js-yaml/compare/0.2.1...0.2.2
|
---|
615 | [0.2.1]: https://github.com/nodeca/js-yaml/compare/0.2.0...0.2.1
|
---|
616 | [0.2.0]: https://github.com/nodeca/js-yaml/releases/tag/0.2.0
|
---|