mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
* 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
690 B
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 }, orobj = [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.