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