Skip to content

Commit ab803e5

Browse files
committed
Update CHANGELOG and bump version
1 parent b26d1cc commit ab803e5

File tree

2 files changed

+40
-3
lines changed

2 files changed

+40
-3
lines changed

CHANGELOG.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,43 @@ 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+
## [7.8.0-rc.0] - 2018-05-10
7+
### Added
8+
* Add support for fragments to [`react-in-jsx-scope`][] ([#1758][])
9+
* Add support for Flow generic PropType to [`require-default-props`][] ([#1724][] @Miziak)
10+
* Add component whitelist option to [`forbid-component-props`][] ([#1732][] @ThiefMaster)
11+
* Add support for React 16.3 lifecycle methods to [`no-unused-prop-types`][] ([#1681][] @bvaughn)
12+
* Add support for React 16.3 lifecycle methods to [`sort-comp`][] ([#1767][] @joe-denea)
13+
* Add support for React 16.3 lifecycle methods to [`no-typos`][]
14+
* Add support for `prevState` and `nextState` to [`no-unused-state`][] ([#1759][])
15+
* Add warnings for `componentWillMount`, `componentWillReceiveProps` and `componentWillUpdate` lifecycle methods in [`no-deprecated`][] ([#1750][] @sergei-startsev)
16+
17+
### Fixed
18+
* Fix [`no-typos`][] false positive on custom `PropType` classes ([#1389][] @brettdh)
19+
* Fix [`boolean-prop-naming`][] to handle required props ([#1389][] @louisscruz)
20+
* Fix [`jsx-curly-brace-presence`][] to allow whitespace JSX container ([#1717][] @sharmilajesupaul)
21+
* Fix [`jsx-no-bind`][] to handle ternary conditions ([#1722][] @gwenaellarmet)
22+
23+
### Changed
24+
* Documentation improvements ([#1699][] @ronanmathew, [#1743][] @ybiquitous, [#1753][] @awthwathje, [#1783][] @chentsulin, [#1703][] @ferhatelmas)
25+
26+
[7.8.0-rc.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.7.0...v7.8.0-rc.0
27+
[#1758]: https://github.com/yannickcr/eslint-plugin-react/issues/1758
28+
[#1724]: https://github.com/yannickcr/eslint-plugin-react/issues/1724
29+
[#1732]: https://github.com/yannickcr/eslint-plugin-react/issues/1732
30+
[#1681]: https://github.com/yannickcr/eslint-plugin-react/pull/1681
31+
[#1767]: https://github.com/yannickcr/eslint-plugin-react/issues/1767
32+
[#1759]: https://github.com/yannickcr/eslint-plugin-react/issues/1759
33+
[#1750]: https://github.com/yannickcr/eslint-plugin-react/pull/1750
34+
[#1389]: https://github.com/yannickcr/eslint-plugin-react/issues/1389
35+
[#1717]: https://github.com/yannickcr/eslint-plugin-react/issues/1717
36+
[#1722]: https://github.com/yannickcr/eslint-plugin-react/issues/1722
37+
[#1699]: https://github.com/yannickcr/eslint-plugin-react/pull/1699
38+
[#1743]: https://github.com/yannickcr/eslint-plugin-react/pull/1743
39+
[#1753]: https://github.com/yannickcr/eslint-plugin-react/issues/1753
40+
[#1783]: https://github.com/yannickcr/eslint-plugin-react/pull/1783
41+
[#1703]: https://github.com/yannickcr/eslint-plugin-react/pull/1703
42+
643
## [7.7.0] - 2018-02-19
744
### Added
845
* [`forbid-foreign-prop-types`][]: add `allowInPropTypes` option ([#1655][] @iansu)
@@ -30,7 +67,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
3067
[#1610]: https://github.com/yannickcr/eslint-plugin-react/pull/1610
3168
[#1414]: https://github.com/yannickcr/eslint-plugin-react/pull/1414
3269
[#1260]: https://github.com/yannickcr/eslint-plugin-react/pull/1260
33-
[#1571]: https://github.com/yannickcr/eslint-plugin-react/issue/1571
70+
[#1571]: https://github.com/yannickcr/eslint-plugin-react/issues/1571
3471

3572
## [7.6.1] - 2018-01-28
3673
### Fixed
@@ -40,7 +77,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
4077

4178
[7.6.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.6.0...v7.6.1
4279
[#1659]: https://github.com/yannickcr/eslint-plugin-react/pull/1659
43-
[#1657]: https://github.com/yannickcr/eslint-plugin-react/issue/1657
80+
[#1657]: https://github.com/yannickcr/eslint-plugin-react/issues/1657
4481
[#1653]: https://github.com/yannickcr/eslint-plugin-react/pull/1653
4582

4683
## [7.6.0] - 2018-01-25

package.json

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

0 commit comments

Comments
 (0)