From 47489dad065b9e5df04fc8b4d0a77f6fea97777f Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sat, 17 Feb 2018 16:03:36 -0800 Subject: [PATCH] update changelog --- CHANGELOG.md | 44 ++++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4257e3941..6b1a4439c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,44 +3,48 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## 11.0.0-beta.0 - 2017-12-14 +## 11.0.0 - 2018-02-17 -This release has no new rules, but it does update to the latest version of `eslint`, which has some significant changes to existing rules. Most updates are to make rules more strict. +This release has no new rules, but it does update to the latest version of `eslint`, +version 4, which has some significant changes to existing rules. Most updates make +the rules more strict. -Thankfully, most will just need to run `standard --fix` to update their code to be compliant. +Thankfully, most users will just need to run `standard --fix` to update code to be +compliant. -eslint 4: - - Bumped to 4.13.0. +### New features + +- Update `eslint` from ~3.19.0 to ~4.18.0. - The `indent` rule is more strict. - The `padded-blocks` rule is more strict. - The `space-before-function-paren` rule is more strict. - The `no-multi-spaces` rule is more strict. - - Minor improvements to + - Minor improvements to: - `no-extra-parens`, - `no-unexpected-multiline`, - `no-regex-spaces`, and - `space-unary-ops` -eslint-plugin-import: - - Bumped to 2.8.0. +- Update `eslint-plugin-import` from `~2.2.0` to `~2.8.0` - Updated for eslint 4.0 compatibility. - Various small bug fixes included related to `import/*` rules. -eslint-plugin-node: - - The `no-deprecated-api` rule updated to with node 8 support and better node 6 support. +- Update `eslint-plugin-node` from `~4.2.2` to `~6.0.0` + - The `no-deprecated-api` rule is updated with Node.js 8 support and improved + Node 6 support. - - eslint-plugin-promise: - - Bumped to 3.6.0. +- Upodate `eslint-plugin-promise` from `~3.5.0` to `~3.6.0`. -eslint-plugin-react: - - Bumped to 5.0.0 - - Fix jsx-indent crash - - Fix jsx-indent indentation calculation with nested JSX - - jsx-no-undef will not check the global scope by default. - - Fix jsx-curly-spacing newline with object literals bug - - Fix jsx-curly-spacing schema incompatibility with ESLint 4.2.0 - - Fix alignment bug in jsx-indent +- Update `eslint-plugin-react` from `~6.10.0` to `~7.6.1` + - Fix `jsx-indent` crash + - Fix `jsx-indent` indentation calculation with nested JSX. + - Fix `jsx-no-undef` will not check the global scope by default. + - Fix `jsx-curly-spacing` newline with object literals bug. + - Fix `jsx-curly-spacing` schema incompatibility with ESLint 4.2.0. + - Fix alignment bug in `jsx-indent`. +Huge thanks to [@Flet](https://github.com/Flet) for putting together most of this +release! ## 10.0.3 - 2017-08-06