租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

616 lines
19 KiB

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