Skip to content

Commit 83d4c4b

Browse files
author
Yannick Croissant
committed
Update CHANGELOG and bump version
1 parent ee144d6 commit 83d4c4b

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

CHANGELOG.md

+44-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,47 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44
This 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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react",
3-
"version": "6.9.0",
3+
"version": "6.10.0",
44
"author": "Yannick Croissant <[email protected]>",
55
"description": "React specific linting rules for ESLint",
66
"main": "index.js",

0 commit comments

Comments
 (0)