Files
Geoffrey Booth 68302e6da7 Docs headings and changelog refactor (#5067)
* Changelog sub-sections should use h3, not h2; no need for hack anchor tag anymore

* Internationalize dates to user’s locale

* Consistent names

* Split up the changelog into separate files per version; make HTML markup consistent with the other sections in the docs

* Fix sidebar links for introduction and overview
2018-05-20 09:39:53 -07:00

690 B

releaseHeader('2017-12-10', '2.1.0', '2.0.3')
  • Computed property keys in object literals are now supported: obj = { ['key' + i]: 42 }, or obj = [Symbol.iterator]: -> yield i++.
  • Skipping of array elements, a.k.a. elision, is now supported: arr = [a, , b], or [, protocol] = url.match /^(.*):\/\//.
  • JSX fragments syntax is now supported.
  • Bugfix where /// within a # line comment inside a /// block regex was erroneously closing the regex, rather than being treated as part of the comment.
  • Bugfix for incorrect output for object rest destructuring inside array destructuring.