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
675 B
675 B
releaseHeader('2015-09-03', '1.10.0', '1.9.3')
- CoffeeScript now supports ES2015-style destructuring defaults.
(offsetHeight: height) ->no longer compiles. That syntax was accidental and partly broken. Use({offsetHeight: height}) ->instead. Object destructuring always requires braces.- Several minor bug fixes, including:
- A bug where the REPL would sometimes report valid code as invalid, based on what you had typed earlier.
- A problem with multiple JS contexts in the jest test framework.
- An error in io.js where strict mode is set on internal modules.
- A variable name clash for the caught error in
catchblocks.