Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

ChangeLog 9.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. 2018-06-17: Version 4.0.1
  2. * Fix parsing async get/set in a class (issue 1861, 1875)
  3. * Account for different return statement argument (issue 1829, 1897, 1928)
  4. * Correct the handling of HTML comment when parsing a module (issue 1841)
  5. * Fix incorrect parse async with proto-identifier-shorthand (issue 1847)
  6. * Fix negative column in binary expression (issue 1844)
  7. * Fix incorrect YieldExpression in object methods (issue 1834)
  8. * Various documentation fixes
  9. 2017-06-10: Version 4.0.0
  10. * Support ES2017 async function and await expression (issue 1079)
  11. * Support ES2017 trailing commas in function parameters (issue 1550)
  12. * Explicitly distinguish parsing a module vs a script (issue 1576)
  13. * Fix JSX non-empty container (issue 1786)
  14. * Allow JSX element in a yield expression (issue 1765)
  15. * Allow `in` expression in a concise body with a function body (issue 1793)
  16. * Setter function argument must not be a rest parameter (issue 1693)
  17. * Limit strict mode directive to functions with a simple parameter list (issue 1677)
  18. * Prohibit any escape sequence in a reserved word (issue 1612)
  19. * Only permit hex digits in hex escape sequence (issue 1619)
  20. * Prohibit labelled class/generator/function declaration (issue 1484)
  21. * Limit function declaration as if statement clause only in non-strict mode (issue 1657)
  22. * Tolerate missing ) in a with and do-while statement (issue 1481)
  23. 2016-12-22: Version 3.1.3
  24. * Support binding patterns as rest element (issue 1681)
  25. * Account for different possible arguments of a yield expression (issue 1469)
  26. 2016-11-24: Version 3.1.2
  27. * Ensure that import specifier is more restrictive (issue 1615)
  28. * Fix duplicated JSX tokens (issue 1613)
  29. * Scan template literal in a JSX expression container (issue 1622)
  30. * Improve XHTML entity scanning in JSX (issue 1629)
  31. 2016-10-31: Version 3.1.1
  32. * Fix assignment expression problem in an export declaration (issue 1596)
  33. * Fix incorrect tokenization of hex digits (issue 1605)
  34. 2016-10-09: Version 3.1.0
  35. * Do not implicitly collect comments when comment attachment is specified (issue 1553)
  36. * Fix incorrect handling of duplicated proto shorthand fields (issue 1485)
  37. * Prohibit initialization in some variants of for statements (issue 1309, 1561)
  38. * Fix incorrect parsing of export specifier (issue 1578)
  39. * Fix ESTree compatibility for assignment pattern (issue 1575)
  40. 2016-09-03: Version 3.0.0
  41. * Support ES2016 exponentiation expression (issue 1490)
  42. * Support JSX syntax (issue 1467)
  43. * Use the latest Unicode 8.0 (issue 1475)
  44. * Add the support for syntax node delegate (issue 1435)
  45. * Fix ESTree compatibility on meta property (issue 1338)
  46. * Fix ESTree compatibility on default parameter value (issue 1081)
  47. * Fix ESTree compatibility on try handler (issue 1030)
  48. 2016-08-23: Version 2.7.3
  49. * Fix tokenizer confusion with a comment (issue 1493, 1516)
  50. 2016-02-02: Version 2.7.2
  51. * Fix out-of-bound error location in an invalid string literal (issue 1457)
  52. * Fix shorthand object destructuring defaults in variable declarations (issue 1459)
  53. 2015-12-10: Version 2.7.1
  54. * Do not allow trailing comma in a variable declaration (issue 1360)
  55. * Fix assignment to `let` in non-strict mode (issue 1376)
  56. * Fix missing delegate property in YieldExpression (issue 1407)
  57. 2015-10-22: Version 2.7.0
  58. * Fix the handling of semicolon in a break statement (issue 1044)
  59. * Run the test suite with major web browsers (issue 1259, 1317)
  60. * Allow `let` as an identifier in non-strict mode (issue 1289)
  61. * Attach orphaned comments as `innerComments` (issue 1328)
  62. * Add the support for token delegator (issue 1332)
  63. 2015-09-01: Version 2.6.0
  64. * Properly allow or prohibit `let` in a binding identifier/pattern (issue 1048, 1098)
  65. * Add sourceType field for Program node (issue 1159)
  66. * Ensure that strict mode reserved word binding throw an error (issue 1171)
  67. * Run the test suite with Node.js and IE 11 on Windows (issue 1294)
  68. * Allow binding pattern with no initializer in a for statement (issue 1301)
  69. 2015-07-31: Version 2.5.0
  70. * Run the test suite in a browser environment (issue 1004)
  71. * Ensure a comma between imported default binding and named imports (issue 1046)
  72. * Distinguish `yield` as a keyword vs an identifier (issue 1186)
  73. * Support ES6 meta property `new.target` (issue 1203)
  74. * Fix the syntax node for yield with expression (issue 1223)
  75. * Fix the check of duplicated proto in property names (issue 1225)
  76. * Fix ES6 Unicode escape in identifier name (issue 1229)
  77. * Support ES6 IdentifierStart and IdentifierPart (issue 1232)
  78. * Treat await as a reserved word when parsing as a module (issue 1234)
  79. * Recognize identifier characters from Unicode SMP (issue 1244)
  80. * Ensure that export and import can be followed by a comma (issue 1250)
  81. * Fix yield operator precedence (issue 1262)
  82. 2015-07-01: Version 2.4.1
  83. * Fix some cases of comment attachment (issue 1071, 1175)
  84. * Fix the handling of destructuring in function arguments (issue 1193)
  85. * Fix invalid ranges in assignment expression (issue 1201)
  86. 2015-06-26: Version 2.4.0
  87. * Support ES6 for-of iteration (issue 1047)
  88. * Support ES6 spread arguments (issue 1169)
  89. * Minimize npm payload (issue 1191)
  90. 2015-06-16: Version 2.3.0
  91. * Support ES6 generator (issue 1033)
  92. * Improve parsing of regular expressions with `u` flag (issue 1179)
  93. 2015-04-17: Version 2.2.0
  94. * Support ES6 import and export declarations (issue 1000)
  95. * Fix line terminator before arrow not recognized as error (issue 1009)
  96. * Support ES6 destructuring (issue 1045)
  97. * Support ES6 template literal (issue 1074)
  98. * Fix the handling of invalid/incomplete string escape sequences (issue 1106)
  99. * Fix ES3 static member access restriction (issue 1120)
  100. * Support for `super` in ES6 class (issue 1147)
  101. 2015-03-09: Version 2.1.0
  102. * Support ES6 class (issue 1001)
  103. * Support ES6 rest parameter (issue 1011)
  104. * Expand the location of property getter, setter, and methods (issue 1029)
  105. * Enable TryStatement transition to a single handler (issue 1031)
  106. * Support ES6 computed property name (issue 1037)
  107. * Tolerate unclosed block comment (issue 1041)
  108. * Support ES6 lexical declaration (issue 1065)
  109. 2015-02-06: Version 2.0.0
  110. * Support ES6 arrow function (issue 517)
  111. * Support ES6 Unicode code point escape (issue 521)
  112. * Improve the speed and accuracy of comment attachment (issue 522)
  113. * Support ES6 default parameter (issue 519)
  114. * Support ES6 regular expression flags (issue 557)
  115. * Fix scanning of implicit octal literals (issue 565)
  116. * Fix the handling of automatic semicolon insertion (issue 574)
  117. * Support ES6 method definition (issue 620)
  118. * Support ES6 octal integer literal (issue 621)
  119. * Support ES6 binary integer literal (issue 622)
  120. * Support ES6 object literal property value shorthand (issue 624)
  121. 2015-03-03: Version 1.2.5
  122. * Fix scanning of implicit octal literals (issue 565)
  123. 2015-02-05: Version 1.2.4
  124. * Fix parsing of LeftHandSideExpression in ForInStatement (issue 560)
  125. * Fix the handling of automatic semicolon insertion (issue 574)
  126. 2015-01-18: Version 1.2.3
  127. * Fix division by this (issue 616)
  128. 2014-05-18: Version 1.2.2
  129. * Fix duplicated tokens when collecting comments (issue 537)
  130. 2014-05-04: Version 1.2.1
  131. * Ensure that Program node may still have leading comments (issue 536)
  132. 2014-04-29: Version 1.2.0
  133. * Fix semicolon handling for expression statement (issue 462, 533)
  134. * Disallow escaped characters in regular expression flags (issue 503)
  135. * Performance improvement for location tracking (issue 520)
  136. * Improve the speed of comment attachment (issue 522)
  137. 2014-03-26: Version 1.1.1
  138. * Fix token handling of forward slash after an array literal (issue 512)
  139. 2014-03-23: Version 1.1.0
  140. * Optionally attach comments to the owning syntax nodes (issue 197)
  141. * Simplify binary parsing with stack-based shift reduce (issue 352)
  142. * Always include the raw source of literals (issue 376)
  143. * Add optional input source information (issue 386)
  144. * Tokenizer API for pure lexical scanning (issue 398)
  145. * Improve the web site and its online demos (issue 337, 400, 404)
  146. * Performance improvement for location tracking (issue 417, 424)
  147. * Support HTML comment syntax (issue 451)
  148. * Drop support for legacy browsers (issue 474)
  149. 2013-08-27: Version 1.0.4
  150. * Minimize the payload for packages (issue 362)
  151. * Fix missing cases on an empty switch statement (issue 436)
  152. * Support escaped ] in regexp literal character classes (issue 442)
  153. * Tolerate invalid left-hand side expression (issue 130)
  154. 2013-05-17: Version 1.0.3
  155. * Variable declaration needs at least one declarator (issue 391)
  156. * Fix benchmark's variance unit conversion (issue 397)
  157. * IE < 9: \v should be treated as vertical tab (issue 405)
  158. * Unary expressions should always have prefix: true (issue 418)
  159. * Catch clause should only accept an identifier (issue 423)
  160. * Tolerate setters without parameter (issue 426)
  161. 2012-11-02: Version 1.0.2
  162. Improvement:
  163. * Fix esvalidate JUnit output upon a syntax error (issue 374)
  164. 2012-10-28: Version 1.0.1
  165. Improvements:
  166. * esvalidate understands shebang in a Unix shell script (issue 361)
  167. * esvalidate treats fatal parsing failure as an error (issue 361)
  168. * Reduce Node.js package via .npmignore (issue 362)
  169. 2012-10-22: Version 1.0.0
  170. Initial release.