Skip to content

Commit abe8381

Browse files
committed
Update CHANGELOG and bump version
1 parent 0e2e046 commit abe8381

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,35 @@ 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.7.0] - 2018-02-19
7+
### Added
8+
* [`forbid-foreign-prop-types`][]: add `allowInPropTypes` option ([#1655][] @iansu)
9+
* Add [`jsx-max-depth`][] rule ([#1260][] @chriswong)
10+
11+
### Fixed
12+
* [`no-access-state-in-setstate`][]: Exclude references to this.state in setState callback ([#1610][] @pfhayes)
13+
* [`no-danger-with-children`][]: prevent infinite loop ([#1571][] @ljharb)
14+
* [`sort-prop-types`][]: Fix sortShapeProp when shape is not an object literal ([#1669][] @justinanastos)
15+
* [`jsx-child-element-spacing`][]: fix error location ([#1666][] @pfhayes)
16+
* [`no-unused-prop-types`][]: fix for createClass ([#1675][] @yuri-sakharov)
17+
* [`prop-types`][]: include nextProps checking in shouldComponentUpdate ([#1690][] @amerryma)
18+
* [`jsx-curly-spacing`][]: refactor to fix start and end-braces in a single pass ([#1414][] @s-h-a-d-o-w)
19+
20+
### Changed
21+
* [`jsx-child-element-spacing`][]: add missing docs ([#1665][] @pfhayes); fix docs ([#1670][] @SammyM)
22+
23+
[7.7.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.6.1...v7.7.0
24+
[#1690]: https://github.com/yannickcr/eslint-plugin-react/pull/1690
25+
[#1675]: https://github.com/yannickcr/eslint-plugin-react/pull/1675
26+
[#1670]: https://github.com/yannickcr/eslint-plugin-react/pull/1670
27+
[#1669]: https://github.com/yannickcr/eslint-plugin-react/pull/1669
28+
[#1666]: https://github.com/yannickcr/eslint-plugin-react/pull/1666
29+
[#1655]: https://github.com/yannickcr/eslint-plugin-react/pull/1655
30+
[#1610]: https://github.com/yannickcr/eslint-plugin-react/pull/1610
31+
[#1414]: https://github.com/yannickcr/eslint-plugin-react/pull/1414
32+
[#1260]: https://github.com/yannickcr/eslint-plugin-react/pull/1260
33+
[#1571]: https://github.com/yannickcr/eslint-plugin-react/issue/1571
34+
635
## [7.6.1] - 2018-01-28
736
### Fixed
837
* Flow: fix crash in [`prop-types`][] with recursive type annotations ([#1653][] @jetpacmonkey)
@@ -2124,3 +2153,4 @@ If you're still not using React 15 you can keep the old behavior by setting the
21242153
[`jsx-child-element-spacing`]: docs/rules/jsx-child-element-spacing.md
21252154
[`no-this-in-sfc`]: docs/rules/no-this-in-sfc.md
21262155
[`jsx-sort-default-props`]: docs/rules/jsx-sort-default-props.md
2156+
[`jsx-max-depth`]: docs/rules/jsx-max-depth.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": "7.6.1",
3+
"version": "7.7.0",
44
"author": "Yannick Croissant <[email protected]>",
55
"description": "React specific linting rules for ESLint",
66
"main": "index.js",

0 commit comments

Comments
 (0)