@@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file.
33This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
44This change log adheres to standards from [ Keep a CHANGELOG] ( http://keepachangelog.com ) .
55
6+ ## [ 6.8.0] - 2016-12-05
7+ ### Added
8+ * Add [ ` no-array-index-key ` ] [ ] rule ([ #978 ] [ ] @lencioni )
9+ * Add [ ` require-default-props ` ] [ ] rule ([ #528 ] [ ] @vitorbal )
10+ * Add support for flow variance syntax to [ ` prop-types ` ] [ ] ([ #961 ] [ ] @ajhyndman )
11+
12+ ### Fixed
13+ * Fix [ ` jsx-indent ` ] [ ] with multiline jsx in ternaries ([ #966 ] [ ] )
14+ * Fix component detection to ignore async functions ([ #989 ] [ ] @taion )
15+ * Fix [ ` jsx-curly-spacing ` ] [ ] autofix to not delete comments ([ #648 ] [ ] )
16+ * FIx auto-enabling of ` eslint-plugin-react ` in exported configurations ([ #984 ] [ ] @jamischarles )
17+
18+ ### Changed
19+ * Update dependencies
20+ * Documentation improvements ([ #960 ] [ ] @evilebottnawi , [ #973 ] [ ] @JamesWatling , [ #982 ] [ ] @captbaritone )
21+
22+ [ 6.8.0 ] : https://github.com/yannickcr/eslint-plugin-react/compare/v6.7.1...v6.8.0
23+ [ #978 ] : https://github.com/yannickcr/eslint-plugin-react/pull/978
24+ [ #528 ] : https://github.com/yannickcr/eslint-plugin-react/issues/528
25+ [ #961 ] : https://github.com/yannickcr/eslint-plugin-react/issues/961
26+ [ #966 ] : https://github.com/yannickcr/eslint-plugin-react/issues/966
27+ [ #989 ] : https://github.com/yannickcr/eslint-plugin-react/pull/989
28+ [ #648 ] : https://github.com/yannickcr/eslint-plugin-react/issues/648
29+ [ #984 ] : https://github.com/yannickcr/eslint-plugin-react/pull/984
30+ [ #960 ] : https://github.com/yannickcr/eslint-plugin-react/pull/960
31+ [ #973 ] : https://github.com/yannickcr/eslint-plugin-react/pull/973
32+ [ #982 ] : https://github.com/yannickcr/eslint-plugin-react/pull/982
33+
634## [ 6.7.1] - 2016-11-15
735### Fixed
836* Fix [ ` jsx-tag-spacing ` ] [ ] crash when options object isn't passed ([ #955 ] [ ] @daltones )
@@ -1495,6 +1523,7 @@ If you're still not using React 15 you can keep the old behavior by setting the
14951523[ `display-name` ] : docs/rules/display-name.md
14961524[ `forbid-component-props` ] : docs/rules/forbid-component-props.md
14971525[ `forbid-prop-types` ] : docs/rules/forbid-prop-types.md
1526+ [ `no-array-index-key` ] : docs/rules/no-array-index-key.md
14981527[ `no-children-prop` ] : docs/rules/no-children-prop.md
14991528[ `no-danger` ] : docs/rules/no-danger.md
15001529[ `no-danger-with-children` ] : docs/rules/no-danger-with-children.md
@@ -1539,6 +1568,7 @@ If you're still not using React 15 you can keep the old behavior by setting the
15391568[ `jsx-no-target-blank` ] : docs/rules/jsx-no-target-blank.md
15401569[ `jsx-no-undef` ] : docs/rules/jsx-no-undef.md
15411570[ `jsx-pascal-case` ] : docs/rules/jsx-pascal-case.md
1571+ [ `require-default-props` ] : docs/rules/require-default-props.md
15421572[ `jsx-sort-props` ] : docs/rules/jsx-sort-props.md
15431573[ `jsx-space-before-closing` ] : docs/rules/jsx-space-before-closing.md
15441574[ `jsx-tag-spacing` ] : docs/rules/jsx-tag-spacing.md
0 commit comments