From 2e118392577b79f5cea67009837386bfec440b49 Mon Sep 17 00:00:00 2001 From: Henry Zhu Date: Sun, 6 Dec 2015 11:36:16 -0500 Subject: [PATCH] Add 6.3.15 changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40682bda88..d73782c5d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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**