From 608e6f9274a4599c49879f1028705d6c8a269e9d Mon Sep 17 00:00:00 2001 From: Henry Zhu Date: Fri, 4 Dec 2015 00:53:15 -0500 Subject: [PATCH 1/3] add 6.3.2 changelog --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9795e92f63..95552ac477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,24 @@ _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.2 + + * **Bug Fix** + * `babel-core`: + * [#3108](https://github.com/babel/babel/pull/3108) Omit sourcemaps that cannot be used and fix source path. + * `babel-register`: + * [#3116](https://github.com/babel/babel/pull/3116) Disable processing `.babelrc` a second time. + * `babel-traverse`: + * [#3127](https://github.com/babel/babel/pull/3127) Ensure we always push into a `BlockStatement` (fixes a `babel-plugin-transform-class-properties` issue). + * `babel-plugin-transform-class-properties`: + * [#3113](https://github.com/babel/babel/pull/3113) Fix issue with using static class properties. + * `babel-plugin-transform-es2015-classes`: + * [#3112](https://github.com/babel/babel/pull/3112) Fix issue with `return super()` in class constructor causing a `super() hasn't been called` error. + * `babel-plugin-transform-inline-environment-variables`: + * Fix typo with `replaceWith`. + * `babel-plugin-transform-regenerator`: + * [#3119](https://github.com/babel/babel/pull/3119) Ensure that generator functions always have an `Identifier` (fixes an issue with exporting a generator as a default). + ## 6.3.1 * **Bug Fix** From 61e2568c08fd002caad17d2170a2cfeb68438aa8 Mon Sep 17 00:00:00 2001 From: Henry Zhu Date: Fri, 4 Dec 2015 00:54:44 -0500 Subject: [PATCH 2/3] add 6.3.1 changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95552ac477..353f31da0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,8 @@ See [CHANGELOG - 6to5](CHANGELOG-6to5.md) for the pre-4.0.0 version changelog. ## 6.3.1 * **Bug Fix** - * Fix spacing in binary expression when right is a binary expression and has a unary on the left in compact mode. Ex: `(a+(+b*2))` should be -> `a+ +b*2` + * `babel-generator`: + * [#3121](https://github.com/babel/babel/pull/3121) Fix spacing in binary expression when right is a binary expression and has a unary on the left in compact mode. Ex: `(a+(+b*2))` should be -> `a+ +b*2` ## 6.3.0 From 72eec06bb9d46c190667c99dab690e9ce6e78a6d Mon Sep 17 00:00:00 2001 From: Henry Zhu Date: Fri, 4 Dec 2015 14:04:32 -0500 Subject: [PATCH 3/3] add changelog for 6.3.8-6.3.14 --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 353f31da0b..40682bda88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,20 @@ _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.14 + + * **Bug Fix** + * `babel-traverse`: + * [#3133](https://github.com/babel/babel/pull/3133) Fix regression with scope in switch statement (fixes an issue with `transform-es2015-spread`). Related to [#3127](https://github.com/babel/babel/pull/3127). + +## 6.3.8-6.3.13 + + Testing [lerna](https://github.com/sebmck/lerna) - A tool for managing JavaScript projects with multiple packages. + + * **Bug Fix** + * `babylon`, `babel-types`, `babel-generator`: + * [#3130](https://github.com/babel/babel/pull/3130) Add support for `NullLiteralTypeAnnotation` (`null` literal type) in flow. + ## 6.3.2 * **Bug Fix**