@@ -3,7 +3,47 @@ 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.9.0] - 2016-01-08
6+ ## [ 6.10.0] - 2017-02-16
7+ ### Added
8+ * Add [ ` forbid-foreign-prop-types ` ] [ ] rule ([ #696 ] [ ] @iancmyers )
9+ * Add [ ` void-dom-elements-no-children ` ] [ ] rule ([ #709 ] [ ] @lencioni )
10+ * Add [ ` forbid-elements ` ] [ ] rule ([ #887 ] [ ] @kentor )
11+ * Add ` noSortAlphabetically ` option to [ ` jsx-sort-props ` ] [ ] ([ #541 ] [ ] [ #786 ] [ ] @markus101 )
12+ * Add ` when ` option to [ ` jsx-max-props-per-line ` ] [ ] ([ #878 ] [ ] @kentor )
13+ * Add support for ` nextProps ` to [ ` prop-types ` ] [ ] ([ #814 ] [ ] )
14+
15+ ### Fixed
16+ * Fix [ ` require-default-props ` ] [ ] crash ([ #1029 ] [ ] )
17+ * Fix [ ` require-default-props ` ] [ ] rule when using Flow type from assignment ([ #1043 ] [ ] @wyze @CarlRosell )
18+ * Fix [ ` style-prop-object ` ] [ ] to not warn with explicit ` null ` or ` undefined ` ([ #812 ] [ ] @ljharb )
19+ * Fix [ ` no-unused-prop-types ` ] [ ] props detection in stateless components ([ #885 ] [ ] @BarryThePenguin )
20+ * Fix [ ` display-name ` ] false positive with ` document.createElement ` ([ #996 ] [ ] @jomasti )
21+ * Fix ESLint 2 compatibility (@ljharb )
22+
23+ ### Changed
24+ * Tests improvements (@ljharb )
25+ * Documentation improvements ([ #958 ] [ ] @Jorundur , [ #1010 ] [ ] @amilajack , [ #1041 ] [ ] @EvNaverniouk , [ #1050 ] [ ] @lencioni , [ #1062 ] [ ] @dguo )
26+
27+ [ 6.10.0 ] : https://github.com/yannickcr/eslint-plugin-react/compare/v6.9.0...v6.10.0
28+ [ #696 ] : https://github.com/yannickcr/eslint-plugin-react/issues/696
29+ [ #709 ] : https://github.com/yannickcr/eslint-plugin-react/issues/709
30+ [ #887 ] : https://github.com/yannickcr/eslint-plugin-react/issues/887
31+ [ #541 ] : https://github.com/yannickcr/eslint-plugin-react/issues/541
32+ [ #786 ] : https://github.com/yannickcr/eslint-plugin-react/issues/786
33+ [ #878 ] : https://github.com/yannickcr/eslint-plugin-react/issues/878
34+ [ #814 ] : https://github.com/yannickcr/eslint-plugin-react/issues/814
35+ [ #1029 ] : https://github.com/yannickcr/eslint-plugin-react/issues/1029
36+ [ #1043 ] : https://github.com/yannickcr/eslint-plugin-react/issues/1043
37+ [ #812 ] : https://github.com/yannickcr/eslint-plugin-react/issues/812
38+ [ #885 ] : https://github.com/yannickcr/eslint-plugin-react/issues/885
39+ [ #996 ] : https://github.com/yannickcr/eslint-plugin-react/issues/996
40+ [ #958 ] : https://github.com/yannickcr/eslint-plugin-react/pull/958
41+ [ #1010 ] : https://github.com/yannickcr/eslint-plugin-react/pull/1010
42+ [ #1041 ] : https://github.com/yannickcr/eslint-plugin-react/pull/1041
43+ [ #1050 ] : https://github.com/yannickcr/eslint-plugin-react/pull/1050
44+ [ #1062 ] : https://github.com/yannickcr/eslint-plugin-react/pull/1062
45+
46+ ## [ 6.9.0] - 2017-01-08
747### Added
848* Add support for variable reference to [ ` sort-prop-types ` ] [ ] ([ #622 ] [ ] )
949
@@ -1539,6 +1579,8 @@ If you're still not using React 15 you can keep the old behavior by setting the
15391579
15401580[ `display-name` ] : docs/rules/display-name.md
15411581[ `forbid-component-props` ] : docs/rules/forbid-component-props.md
1582+ [ `forbid-elements` ] : docs/rules/forbid-elements.md
1583+ [ `forbid-foreign-prop-types` ] : docs/rules/forbid-foreign-prop-types.md
15421584[ `forbid-prop-types` ] : docs/rules/forbid-prop-types.md
15431585[ `no-array-index-key` ] : docs/rules/no-array-index-key.md
15441586[ `no-children-prop` ] : docs/rules/no-children-prop.md
@@ -1592,6 +1634,7 @@ If you're still not using React 15 you can keep the old behavior by setting the
15921634[ `jsx-uses-react` ] : docs/rules/jsx-uses-react.md
15931635[ `jsx-uses-vars` ] : docs/rules/jsx-uses-vars.md
15941636[ `jsx-wrap-multilines` ] : docs/rules/jsx-wrap-multilines.md
1637+ [ `void-dom-elements-no-children` ] : docs/rules/void-dom-elements-no-children.md
15951638
15961639[ `jsx-sort-prop-types` ] : docs/rules/sort-prop-types.md
15971640[ `require-extension` ] : docs/rules/require-extension.md
0 commit comments