Initial commit
[yaffs-website] / node_modules / js-yaml / CHANGELOG.md
1 3.8.2 / 2017-03-02
2 ------------------
3
4 - Fix `!!float 123` (integers) parse, #333.
5 - Don't allow leading zeros in floats (except 0, 0.xxx).
6 - Allow positive exponent without sign in floats.
7
8
9 3.8.1 / 2017-02-07
10 ------------------
11
12 - Maintenance: update browserified build.
13
14
15 3.8.0 / 2017-02-07
16 ------------------
17
18 - Fix reported position for `duplicated mapping key` errors.
19   Now points to block start instead of block end.
20   (#243, thanks to @shockey).
21
22
23 3.7.0 / 2016-11-12
24 ------------------
25
26 - Fix parsing of quotes followed by newlines (#304, thanks to @dplepage).
27 - Support polymorphism for tags (#300, thanks to @monken).
28
29
30 3.6.1 / 2016-05-11
31 ------------------
32
33 - Fix output cut on a pipe, #286.
34
35
36 3.6.0 / 2016-04-16
37 ------------------
38
39 - Dumper rewrite, fix multiple bugs with trailing `\n`.
40   Big thanks to @aepsilon!
41 - Loader: fix leading/trailing newlines in block scalars, @aepsilon.
42
43
44 3.5.5 / 2016-03-17
45 ------------------
46
47 - Date parse fix: don't allow dates with on digit in month and day, #268.
48
49
50 3.5.4 / 2016-03-09
51 ------------------
52
53 - `noCompatMode` for dumper, to disable quoting YAML 1.1 values.
54
55
56 3.5.3 / 2016-02-11
57 ------------------
58
59 - Maintenance release.
60
61
62 3.5.2 / 2016-01-11
63 ------------------
64
65 - Maintenance: missed comma in bower config.
66
67
68 3.5.1 / 2016-01-11
69 ------------------
70
71 - Removed `inherit` dependency, #239.
72 - Better browserify workaround for esprima load.
73 - Demo rewrite.
74
75
76 3.5.0 / 2016-01-10
77 ------------------
78
79 - Dumper. Fold strings only, #217.
80 - Dumper. `norefs` option, to clone linked objects, #229.
81 - Loader. Throw a warning for duplicate keys, #166.
82 - Improved browserify support (mark `esprima` & `Buffer` excluded).
83
84
85 3.4.6 / 2015-11-26
86 ------------------
87
88 - Use standalone `inherit` to keep browserified files clear.
89
90
91 3.4.5 / 2015-11-23
92 ------------------
93
94 - Added `lineWidth` option to dumper.
95
96
97 3.4.4 / 2015-11-21
98 ------------------
99
100 - Fixed floats dump (missed dot for scientific format), #220.
101 - Allow non-printable characters inside quoted scalars, #192.
102
103
104 3.4.3 / 2015-10-10
105 ------------------
106
107 - Maintenance release - deps bump (esprima, argparse).
108
109
110 3.4.2 / 2015-09-09
111 ------------------
112
113 - Fixed serialization of duplicated entries in sequences, #205.
114   Thanks to @vogelsgesang.
115
116
117 3.4.1 / 2015-09-05
118 ------------------
119
120 - Fixed stacktrace handling in generated errors, for browsers (FF/IE).
121
122
123 3.4.0 / 2015-08-23
124 ------------------
125
126 - Fixed multiline keys dump, #197. Thanks to @tcr.
127 - Don't throw on warnongs anymore. Use `onWarning` option to catch.
128 - Throw error on unknown tags (was warning before).
129 - Fixed heading line breaks in some scalars (regression).
130 - Reworked internals of error class.
131
132
133 3.3.1 / 2015-05-13
134 ------------------
135
136 - Added `.sortKeys` dumper option, thanks to @rjmunro.
137 - Fixed astral characters support, #191.
138
139
140 3.3.0 / 2015-04-26
141 ------------------
142
143 - Significantly improved long strings formatting in dumper, thanks to @isaacs.
144 - Strip BOM if exists.
145
146
147 3.2.7 / 2015-02-19
148 ------------------
149
150 - Maintenance release.
151 - Updated dependencies.
152 - HISTORY.md -> CHANGELOG.md
153
154
155 3.2.6 / 2015-02-07
156 ------------------
157
158 - Fixed encoding of UTF-16 surrogate pairs. (e.g. "\U0001F431" CAT FACE).
159 - Fixed demo dates dump (#113, thanks to @Hypercubed).
160
161
162 3.2.5 / 2014-12-28
163 ------------------
164
165 - Fixed resolving of all built-in types on empty nodes.
166 - Fixed invalid warning on empty lines within quoted scalars and flow collections.
167 - Fixed bug: Tag on an empty node didn't resolve in some cases.
168
169
170 3.2.4 / 2014-12-19
171 ------------------
172
173 - Fixed resolving of !!null tag on an empty node.
174
175
176 3.2.3 / 2014-11-08
177 ------------------
178
179 - Implemented dumping of objects with circular and cross references.
180 - Partially fixed aliasing of constructed objects. (see issue #141 for details)
181
182
183 3.2.2 / 2014-09-07
184 ------------------
185
186 - Fixed infinite loop on unindented block scalars.
187 - Rewritten base64 encode/decode in binary type, to keep code licence clear.
188
189
190 3.2.1 / 2014-08-24
191 ------------------
192
193 - Nothig new. Just fix npm publish error.
194
195
196 3.2.0 / 2014-08-24
197 ------------------
198
199 - Added input piping support to CLI.
200 - Fixed typo, that could cause hand on initial indent (#139).
201
202
203 3.1.0 / 2014-07-07
204 ------------------
205
206 - 1.5x-2x speed boost.
207 - Removed deprecated `require('xxx.yml')` support.
208 - Significant code cleanup and refactoring.
209 - Internal API changed. If you used custom types - see updated examples.
210   Others are not affected.
211 - Even if the input string has no trailing line break character,
212   it will be parsed as if it has one.
213 - Added benchmark scripts.
214 - Moved bower files to /dist folder
215 - Bugfixes.
216
217
218 3.0.2 / 2014-02-27
219 ------------------
220
221 - Fixed bug: "constructor" string parsed as `null`.
222
223
224 3.0.1 / 2013-12-22
225 ------------------
226
227 - Fixed parsing of literal scalars. (issue #108)
228 - Prevented adding unnecessary spaces in object dumps. (issue #68)
229 - Fixed dumping of objects with very long (> 1024 in length) keys.
230
231
232 3.0.0 / 2013-12-16
233 ------------------
234
235 - Refactored code. Changed API for custom types.
236 - Removed output colors in CLI, dump json by default.
237 - Removed big dependencies from browser version (esprima, buffer)
238   - load `esprima` manually, if !!js/function needed
239   - !!bin now returns Array in browser
240 - AMD support.
241 - Don't quote dumped strings because of `-` & `?` (if not first char).
242 - __Deprecated__ loading yaml files via `require()`, as not recommended
243   behaviour for node.
244
245
246 2.1.3 / 2013-10-16
247 ------------------
248
249 - Fix wrong loading of empty block scalars.
250
251
252 2.1.2 / 2013-10-07
253 ------------------
254
255 - Fix unwanted line breaks in folded scalars.
256
257
258 2.1.1 / 2013-10-02
259 ------------------
260
261 - Dumper now respects deprecated booleans syntax from YAML 1.0/1.1
262 - Fixed reader bug in JSON-like sequences/mappings.
263
264
265 2.1.0 / 2013-06-05
266 ------------------
267
268 - Add standard YAML schemas: Failsafe (`FAILSAFE_SCHEMA`),
269   JSON (`JSON_SCHEMA`) and Core (`CORE_SCHEMA`).
270 - Rename `DEFAULT_SCHEMA` to `DEFAULT_FULL_SCHEMA`
271   and `SAFE_SCHEMA` to `DEFAULT_SAFE_SCHEMA`.
272 - Bug fix: export `NIL` constant from the public interface.
273 - Add `skipInvalid` dumper option.
274 - Use `safeLoad` for `require` extension.
275
276
277 2.0.5 / 2013-04-26
278 ------------------
279
280 - Close security issue in !!js/function constructor.
281   Big thanks to @nealpoole for security audit.
282
283
284 2.0.4 / 2013-04-08
285 ------------------
286
287 - Updated .npmignore to reduce package size
288
289
290 2.0.3 / 2013-02-26
291 ------------------
292
293 - Fixed dumping of empty arrays ans objects. ([] and {} instead of null)
294
295
296 2.0.2 / 2013-02-15
297 ------------------
298
299 - Fixed input validation: tabs are printable characters.
300
301
302 2.0.1 / 2013-02-09
303 ------------------
304
305 - Fixed error, when options not passed to function cass
306
307
308 2.0.0 / 2013-02-09
309 ------------------
310
311 - Full rewrite. New architecture. Fast one-stage parsing.
312 - Changed custom types API.
313 - Added YAML dumper.
314
315
316 1.0.3 / 2012-11-05
317 ------------------
318
319 - Fixed utf-8 files loading.
320
321
322 1.0.2 / 2012-08-02
323 ------------------
324
325 - Pull out hand-written shims. Use ES5-Shims for old browsers support. See #44.
326 - Fix timstamps incorectly parsed in local time when no time part specified.
327
328
329 1.0.1 / 2012-07-07
330 ------------------
331
332 - Fixes `TypeError: 'undefined' is not an object` under Safari. Thanks Phuong.
333 - Fix timestamps incorrectly parsed in local time. Thanks @caolan. Closes #46.
334
335
336 1.0.0 / 2012-07-01
337 ------------------
338
339 - `y`, `yes`, `n`, `no`, `on`, `off` are not converted to Booleans anymore.
340   Fixes #42.
341 - `require(filename)` now returns a single document and throws an Error if
342   file contains more than one document.
343 - CLI was merged back from js-yaml.bin
344
345
346 0.3.7 / 2012-02-28
347 ------------------
348
349 - Fix export of `addConstructor()`. Closes #39.
350
351
352 0.3.6 / 2012-02-22
353 ------------------
354
355 - Removed AMD parts - too buggy to use. Need help to rewrite from scratch
356 - Removed YUI compressor warning (renamed `double` variable). Closes #40.
357
358
359 0.3.5 / 2012-01-10
360 ------------------
361
362 - Workagound for .npmignore fuckup under windows. Thanks to airportyh.
363
364
365 0.3.4 / 2011-12-24
366 ------------------
367
368 - Fixes str[] for oldIEs support.
369 - Adds better has change support for browserified demo.
370 - improves compact output of Error. Closes #33.
371
372
373 0.3.3 / 2011-12-20
374 ------------------
375
376 - jsyaml executable moved to separate module.
377 - adds `compact` stringification of Errors.
378
379
380 0.3.2 / 2011-12-16
381 ------------------
382
383 - Fixes ug with block style scalars. Closes #26.
384 - All sources are passing JSLint now.
385 - Fixes bug in Safari. Closes #28.
386 - Fixes bug in Opers. Closes #29.
387 - Improves browser support. Closes #20.
388 - Added jsyaml executable.
389 - Added !!js/function support. Closes #12.
390
391
392 0.3.1 / 2011-11-18
393 ------------------
394
395 - Added AMD support for browserified version.
396 - Wrapped browserified js-yaml into closure.
397 - Fixed the resolvement of non-specific tags. Closes #17.
398 - Added permalinks for online demo YAML snippets. Now we have YPaste service, lol.
399 - Added !!js/regexp and !!js/undefined types. Partially solves #12.
400 - Fixed !!set mapping.
401 - Fixed month parse in dates. Closes #19.
402
403
404 0.3.0 / 2011-11-09
405 ------------------
406
407 - Removed JS.Class dependency. Closes #3.
408 - Added browserified version. Closes #13.
409 - Added live demo of browserified version.
410 - Ported some of the PyYAML tests. See #14.
411 - Fixed timestamp bug when fraction was given.
412
413
414 0.2.2 / 2011-11-06
415 ------------------
416
417 - Fixed crash on docs without ---. Closes #8.
418 - Fixed miltiline string parse
419 - Fixed tests/comments for using array as key
420
421
422 0.2.1 / 2011-11-02
423 ------------------
424
425 - Fixed short file read (<4k). Closes #9.
426
427
428 0.2.0 / 2011-11-02
429 ------------------
430
431 - First public release