Add 6.3.15 changelog

This commit is contained in:
Henry Zhu 2015-12-06 11:36:16 -05:00
parent 3f7019f964
commit 2e11839257

View File

@ -13,6 +13,21 @@ _Note: Gaps between patch versions are faulty, broken or test releases._
See [CHANGELOG - 6to5](CHANGELOG-6to5.md) for the pre-4.0.0 version changelog.
## 6.3.15
* **Bug Fix**
* `babel-generator`:
* [#3111](https://github.com/babel/babel/pull/3111) Compact Mode: remove unnecessary `()` from a `NewExpressions` when possible (`new x()` -> `new x`).
* `babel-helper-function-name`:
* [#3138](https://github.com/babel/babel/pull/3138) Skip name inference on certain uses of classes until we can handle them.
* `babel-traverse`:
* [#3141](https://github.com/babel/babel/pull/3141) Fix bug with evaluating an expression on it's own binding.
* `babel-plugin-transform-es2015-destructuring`:
* [#3136](https://github.com/babel/babel/pull/3136) Seperate the destructuring statement from the export statement before converting.
* `babel-plugin-transform-es2015-classes`:
* [#3134](https://github.com/babel/babel/pull/3134) Ensure default exports have a name before splitting them.
* [#3135](https://github.com/babel/babel/pull/3135) Pass `async` and `generator` properties when converting a `ClassMethod`.
## 6.3.14
* **Bug Fix**