ChangeLog 7.2 KB

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