@@ -3,7 +3,47 @@ All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
This change log adheres to standards from [ Keep a CHANGELOG] ( http://keepachangelog.com ) .
5
5
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
7
47
### Added
8
48
* Add support for variable reference to [ ` sort-prop-types ` ] [ ] ([ #622 ] [ ] )
9
49
@@ -1539,6 +1579,8 @@ If you're still not using React 15 you can keep the old behavior by setting the
1539
1579
1540
1580
[ `display-name` ] : docs/rules/display-name.md
1541
1581
[ `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
1542
1584
[ `forbid-prop-types` ] : docs/rules/forbid-prop-types.md
1543
1585
[ `no-array-index-key` ] : docs/rules/no-array-index-key.md
1544
1586
[ `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
1592
1634
[ `jsx-uses-react` ] : docs/rules/jsx-uses-react.md
1593
1635
[ `jsx-uses-vars` ] : docs/rules/jsx-uses-vars.md
1594
1636
[ `jsx-wrap-multilines` ] : docs/rules/jsx-wrap-multilines.md
1637
+ [ `void-dom-elements-no-children` ] : docs/rules/void-dom-elements-no-children.md
1595
1638
1596
1639
[ `jsx-sort-prop-types` ] : docs/rules/sort-prop-types.md
1597
1640
[ `require-extension` ] : docs/rules/require-extension.md
0 commit comments