Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

476 lines
10 KiB

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