ChangeLog 6.8 KB

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