An in-range update of eslint-plugin-react is breaking the build 🚨
Opened this issue · 12 comments
The devDependency eslint-plugin-react was updated from 7.12.2
to 7.12.3
.
This version is covered by your current version range and after updating it in your project the build failed.
eslint-plugin-react is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.
Status Details
- ❌ continuous-integration/travis-ci/push: The Travis CI build failed (Details).
Release Notes for v7.12.3
Fixed
jsx-indent
: Prevent crash on valueless props (#2120, @jomasti)jsx-fragments
: avoid crashing on self-closing fragments (#2113, @alexzherdev)no-unused-prop-types
: Fix propType detection inside class bodies (#2115, @drx)no-unused-prop-types
: fix issue with propTypes misclassifying props (#2111, @drx)display-name
: fix false positive forReact.memo
(#2109, @jomasti)
Changed
- [Docs] add a missing comma in the JSON settings (#2117, @haideralsh)
- [Docs] update README to document React version detection (#2114, @mohsinulhaq)
Commits
The new version differs by 14 commits.
2f5cec9
Update CHANGELOG and bump version
096161a
Merge pull request #2120 from jomasti/issue-2119
9d3955a
Prevent crash of jsx-indent rule
230c7e0
Merge pull request #2117 from haideralsh/patch-1
b4b0e72
fix: add a missing in the JSON settings
d2aa260
Merge pull request #2115 from drx/class_body_prop_types
41974e5
Fix propType detection inside class bodies
40f2565
[Docs] update README to document React version detection
dd0757f
Merge pull request #2113 from alexzherdev/2112-fix-self-closing-fragments
e997f6c
[Fix] avoid crashing on self-closing fragments
b48b479
Merge pull request #2111 from drx/prop_types_class_properties
e15bafa
[Fix]
no-unused-prop-types
: fix issue with propTypes misclassifying propsa86b339
Merge pull request #2109 from jomasti/issue-2105
5f9863e
Fix display-name false positive for React.memo
See the full diff
FAQ and help
There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.
Your Greenkeeper Bot 🌴
After pinning to 7.12.2 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.
- The
devDependency
eslint-plugin-react was updated from7.12.3
to7.12.4
.
Your tests are still failing with this version. Compare changes
Release Notes for v7.12.4
Fixed
no-unused-prop-types
: avoid a crash (#2131, @ljharb)prop-types
: avoid further crashes from nonexistent nodes in unusedPropTypes (#2127, @ljharb)prop-types
: Read name of callee object (#2125, @CrOrc)prop-types
: Ignore reassignments when matching props declarations with components (#2051, #1957, @yannickcr)prop-types
,no-unused-prop-types
,require-default-props
: Detect components with return statement in switch/case (#2118, @yannickcr)
Changed
Commits
The new version differs by 10 commits.
433cc3f
Update CHANGELOG and bump version
536bc35
[Tests]
prop-types
: add case from #2134df7ffc1
[Tests]
no-typos
: test case from #2136c7e5f38
[Tests] improve version detection tests.
2dd2277
[Tests]
prop-types
: add now-passing test case84652b6
[Fix]
no-unused-prop-types
: avoid a crash58ed9e9
[Fix]
prop-types
: avoid further crashes from nonexistent nodes in unusedPropTypes7f7b96d
[Fix]
prop-types
: Read name of callee object.5fc50aa
[Fix] Ignore reassignments when matching props declarations with components
ba80a4c
[Fix] Detect components with return statement in switch/case
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.12.4
to7.13.0
.
Your tests are still failing with this version. Compare changes
Commits
The new version differs by 74 commits.
f39829f
Update CHANGELOG and bump version
9e81dde
[Deps] update
jsx-ast-utils
,resolve
e73a692
Merge pull request #2256 from mateuszsokola/master
b5fc9bf
[fix]
jsx-props-no-multi-spaces
: support generic components (ts)8bd3837
Fix Node 4 compatibility
005dad3
Revert "Replace mocha by jest"
6e4f43e
Replace mocha by jest
09f580c
Replace typescript-eslint-parser by @typescript-eslint/parser
861fdef
[fix]
prop-types
: fix case with destructuring and defualt param9fbd037
Fix ESLint 6 compat by providing parser as absolute path to RuleTester
8041075
Fix jsx-curly-brace-presence schema defaults
9cec705
Add next ESLint version to Travis
0d4725e
Add Node 12 and remove Node 4/6 from Travis
9192ec3
Update devDependencies
d5d2e82
Merge pull request #2250 from guliashvili/master
There are 74 commits in total.
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.13.0
to7.14.0
.
Your tests are still failing with this version. Compare changes
Release Notes for v7.14.0
Added
- Add
jsx-curly-newline
rule (#1493 @golopot) - Add support for nested destructuring to
prop-types
(#296 #1422 @golopot) - Add support for variables defined as props to
prop-types
andno-unused-prop-types
(#442 #833 #1002 #1116 #1257 #1764 @golopot) - Add
checkFragmentShorthand
option tojsx-key
(#2316 @kaykayehnn)
Fixed
- Fix
no-did-mount-set-state
andno-did-update-set-state
to handle cDU and cDM defined as class properties (#1595 @jaaberg) - Fix
sort-prop-types
cash when a shape PropType is defined in a variable (#1749 @alexzherdev) - Fix
no-unused-state
false positive when using state of non-lifecycle method (#2274 @golopot) - Fix
static-property-placement
false positive when accessing static property inside method (#2283 @dmason30) - Fix
prop-type
detection for annotated props with default value (#2298 @yannickcr)
Changed
- Add ESLint 6.0.0 as valid peerDependency (@yannickcr)
- Improve
no-render-return-value
performance (#2259 @golopot) - Change
jsx-sort-props
to report errors only on the identifier (#2312 @MrHen) - Change to warn only once if react version cannot be detected (#2276 @ljharb)
- Documentation improvements (#2263 @dimitropoulos, #2262 @ybiquitous, #2295 @battaglr, #2302 @Jason-Cooke, #2303 @golopot)
- Code refactoring (#2265 #2267 #2286 #2294 @golopot, @ljharb)
- Tests improvements (#2304 #1047 @golopot, @yannickcr)
Commits
The new version differs by 68 commits.
dfaa92f
Update CHANGELOG and bump version
c52b61b
Merge pull request #2316 from kaykayehnn/jsx-key-fragments
8db631b
[Fix] Fix detection of annotated props with default value
bbebefd
[Tests] Remove AppVeyor
0d49f5a
[New] Add ESLint ^6.0.0 as valid peerDependency
0364ed2
Fix formatting issues
7c1abed
Add checkFragmentShorthand option
ed04c2f
Fix tests in eslint < 5
0d1aaf8
Handle fragments in jsx-key
7d449a9
[New]
jsx-sort-props
: Change reported range to only the identifier1e102f0
Change reported range to only the identifier
e6b4c33
Merge pull request #2301 from golopot/fix-cached-props-2
9a63e19
Immediately destructure out propVariables rather than using it as a namespace
3a1a0d1
Apply suggestion: replace mutation with Object.assign
89b8143
Apply suggestion: replace concat([a]) with concat(a)
There are 68 commits in total.
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.14.0
to7.14.1
.
Your tests are still failing with this version. Compare changes
- The
devDependency
eslint-plugin-react was updated from7.14.2
to7.14.3
.
Your tests are still failing with this version. Compare changes
Release Notes for v7.14.3
Fixed
- Fix
prop-types
to ignore validation when Flow indexers are used (#2330 @yannickcr) - Fix error being thrown after the first warning when react version cannot be detected (#2336 @abhishekdev)
- Fix component detection when
memo
andforwardRef
are used together (#2349 @yannickcr)
Changed
Commits
The new version differs by 16 commits.
47c4c8b
Update CHANGELOG and bump version
98d4bf3
Fix component detection when memo and forwardRef are used together
fc70077
Merge pull request #2354 from golopot/patch-1
f2891d9
[docs] remove outdated docs for
no-unused-prop-types
49343d4
[meta] add github sponsorship
562e441
Add Tidelift badge to README
b684e87
Add SECURITY file
22a3740
Add FUNDING file
e835aaf
add note about global installs being deprecated
0215c38
Merge pull request #2336 from abhishekdev/handle-react-detect-errors
8fbf50c
version detection: Do not throw a raw error after the first warning
f59e927
version detection: Add tests
d6832d6
Fix new required import order
bc67d42
Fix prop-types to ignore validation when Flow indexers are used
8432e5e
Update CHANGELOG and bump version
There are 16 commits in total.
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.14.3
to7.15.0
.
Your tests are still failing with this version. Compare changes
Commits
The new version differs by 30 commits.
b45219a
Update CHANGELOG and bump version
a01198f
[Dev Deps] update
eslint-config-airbnb-base
,eslint-plugin-import
,sinon
,typescript
ab77870
[Deps] update
jsx-ast-utils
,resolve
32e27b7
[Fix]
jsx-indent
: Fix false positive when a jsx element is the last statement within a do expression (with tests)628a4a0
[fix]
jsx-curly-brace-presence
: fix jsx tags in braces3124ce0
[Docs]
no-access-state-in-setstate
: update grammar4a05fa2
[fix]
display-name
: Fix false positivesc6521ad
Change istanbul output directory to ./coverage (default)
5970651
[new]
jsx-handler-name
: allowfalse
to disableeventHandlerPrefix
/eventHandlerPropPrefix
489ced3
[refactor]
jsx-curly-braces-presence, jsx-one-expression-per-line, no-danger-with-children
: addisWhiteSpaces
tolib/util/jsx
9b2db61
[fix]
jsx-curly-brace-presence
: report unnecessary curly braces with children on next line781bfff
[new]
sort-comp
: addstatic-variables
grouping7ccff10
[New] add
jsx-no-useless-fragment
rule66725bc
[Fix]
no-unused-prop-types
: false positive with callback3c72a49
[eslint] disable some options and manually fix
valid-jsdoc
There are 30 commits in total.
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.15.0
to7.15.1
.
Your tests are still failing with this version. Compare changes
Commits
The new version differs by 4 commits.
e336aef
Update CHANGELOG and bump version
04fbe74
[Fix]
jsx-curly-brace-presence
: bail out checks when JSXElements are passed as props20cc016
[Docs]
prefer-es6-class
: Fix typosfeba507
[Fix]
jsx-curly-brace-presence
: bail out on JSX inside props, for now
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.15.1
to7.16.0
.
Your tests are still failing with this version. Compare changes
Commits
The new version differs by 6 commits.
fb3210b
Update CHANGELOG and bump version
6011505
[new]
jsx-sort-default-props
: make rule fixable6f14e16
[fix]
jsx-no-useless-fragment
: usearray-includes
over.includes
for back compata1dee7c
[fix]
jsx-curly-brace-presence
: allow necessary white-space literald7d2a01
[Fix]
jsx-curly-brace-presence
: warns incorrectly on trailing whitespacec153a86
[Fix]
no-unused-prop-types
: false positive when nested destructuring
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.18.0
to7.18.1
.
Your tests are still failing with this version. Compare changes
Commits
The new version differs by 58 commits.
000d6b8
Update CHANGELOG and bump version
ffdf69a
[Fix]
jsx-indent
: Does not check indents for JSXText182b045
[Docs] use
markdown-magic
to automatically sort all rules alphabetically45b9d32
[Docs]
jsx-props-no-spreading
: fix typo to use correct rulef9aee94
[Fix]
jsx-props-no-spreading
: add support for namespaced jsx componentse69b113
[Fix]
jsx-no-target-blank
: allow rel to be an expressionfc6e406
[meta] fix changelog date
50df78f
[Fix]
sort-comp
:|
isn’t a valid regex flag;u
ands
area7f6a8b
[Tests] on
node
v13
6a45142
Update CHANGELOG and bump version
d9e4941
[Deps] update
array-includes
,object.entries
,object.fromentries
,object.values
,resolve
d1dc277
[Fix]
no-unused-prop-types
,no-unused-state
: fix false positives when using TS type assertions99cea84
[New]
function-component-definition
: Enforce a specific function type for function componentsc234d0f
[Docs]
no-render-return-value
: Fix title5fac02c
[Fix]
jsx-pascal-case
: false negative with namespacing
There are 58 commits in total.
See the full diff
- The
devDependency
eslint-plugin-react was updated from7.18.1
to7.18.2
.
Your tests are still failing with this version. Compare changes
- The
devDependency
eslint-plugin-react was updated from7.18.2
to7.18.3
.
Your tests are still failing with this version. Compare changes