Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency eslint-plugin-react to v7.7.0 - autoclosed #45

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 25, 2018

This Pull Request updates dependency eslint-plugin-react from v7.5.1 to v7.7.0

Release Notes

v7.6.0

Added
  • Add [forbid-dom-props][] rule (#​1562 @​davazp)
  • Add [jsx-child-element-spacing][] rule (#​1515 @​pfhayes)
  • Add [no-this-in-sfc][] rule (#​1435 @​jomasti)
  • Add [jsx-sort-default-props][] rule (#​281 @​b0gok)
  • Add message option to [boolean-prop-naming][] (#​1588 @​louisscruz)
  • Add beforeClosing option to [jsx-tag-spacing][] (#​1396 @​cjskillingstad)
  • Add instance-methods and instance-variables to [sort-comp][] (#​599 @​RDGthree)
  • Add propWrapperFunctions support for [boolean-prop-naming][] (#​1478 @​jomasti)
  • Add warning for React.addons.TestUtils in [no-deprecated][] (#​1644 @​nirnaor)
  • Add URL to rule documentation to the rules metadata (#​1635 @​Arcanemagus)
Fixed
  • Fix crashes in [no-access-state-in-setstate][] (#​1559 @​jomasti, #​1611 @​pfhayes)
  • Fix crash in [require-optimization][] when encountering arrays with empty items as values in object (#​1621 @​kamataryo)
  • Fix crash in [no-unused-prop-types][] when passing an empty function as a PropType (#​1542 #​1581 @​kevinzwhuang)
  • Fix crash in [no-typos][] when using PropType.shape without arguments (#​1471 @​mrichmond)
  • Fix crash when using Unions in flow propTypes (#​1468 @​justinanastos)
  • Fix missing meta in [jsx-tag-spacing][] (#​1650 @​flyerhzm)
  • Fix [no-unused-state][] to detect usage of this.state as an object (#​1572)
  • Fix [no-access-state-in-setstate][] to detect when the state variable is destructured from this.state (#​1597 @​jaaberg)
  • Fix [jsx-no-literals][] to correctly find string literals part of BinaryExpressions (#​1511 @​jaaberg)
  • Fix [no-typos][] false positive on custom propTypes with isRequired (#​1607 @​lfades)
  • Fix [prop-types][] to check for nextProps in componentWillReceiveProps (#​1636 @​xjmdoo)
  • Fix [no-unknown-property][] to not pascal-casing crossorigin attribute and only allow it on script/img/video (#​1642 @​ljharb)
Changed
  • Improve [jsx-wrap-multilines][] auto fix (#​1576 @​sharmilajesupaul)
  • Export defaultConfig from [sort-comp][] rule for programmatic use (#​1578 @​Andarist)
  • Documentation improvements (#​1552 @​TSMMark, #​1566 @​lukeapage, #​1624 @​alexilyaev, @​ljharb)
  • Update dependencies (@​ljharb)

v7.6.1

Fixed
  • Flow: fix crash in [prop-types][] with recursive type annotations (#​1653 @​jetpacmonkey)
  • Fix [no-unknown-property][] to properly recognize crossOrigin instead of crossorigin, and allow it on link tags. (#​1659 @​jzDev)
  • Fix [no-access-state-in-setstate][] to handle object spread (#​1657 @​ljharb)

v7.7.0

Added
  • [forbid-foreign-prop-types][]: add allowInPropTypes option (#​1655 @​iansu)
  • Add [jsx-max-depth][] rule (#​1260 @​chriswong)
Fixed
  • [no-access-state-in-setstate][]: Exclude references to this.state in setState callback (#​1610 @​pfhayes)
  • [no-danger-with-children][]: prevent infinite loop (#​1571 @​ljharb)
  • [sort-prop-types][]: Fix sortShapeProp when shape is not an object literal (#​1669 @​justinanastos)
  • [jsx-child-element-spacing][]: fix error location (#​1666 @​pfhayes)
  • [no-unused-prop-types][]: fix for createClass (#​1675 @​yuri-sakharov)
  • [prop-types][]: include nextProps checking in shouldComponentUpdate (#​1690 @​amerryma)
  • [jsx-curly-spacing][]: refactor to fix start and end-braces in a single pass (#​1414 @​s-h-a-d-o-w)
Changed
  • [jsx-child-element-spacing][]: add missing docs ([#​1665][] @​pfhayes); fix docs (#​1670 @​SammyM)

Commits

v7.6.0

  • 58159c0 [Deps] update jsx-ast-utils, doctrine
  • f6e4c89 Merge pull request #​1478 from jomasti/issue-1452
  • 9a7423e Add custom message
  • 73f135a Add more test cases for no-access-state-in-setstate
  • 4950623 Make no-access-state-in-setstate find cases where state is destructured from this
  • 37902d4 Use ESLint string templating
  • d331af6 Add empty params check for unused prop types rule to fix empty proptype functions from causing crashes
  • 292ebed Merge pull request #​1588 from louisscruz/bool-props-message
  • a908eb3 Merge pull request #​1598 from jaaberg/master
  • 6015af2 Add test cases for other forms of empty functions in no-unused-prop-types and remove parser option
  • 3194de2 Exclude references to this.state in setState callback
  • af6cb31 Fix typo in comment
  • eb7e152 Handle nodes without init
  • 4cf6752 Add failing tests for jsx-no-literals with literal as BinaryExpression
  • 2ae8d5e Find usages of literals as a part of BinaryExpressions in jsx-no-literals
  • f27ebc2 jsx-no-literals Add tests combining literals and strings
  • 28581df jsx-no-literals Find all usages of literals combined with strings
  • 9b8ea5e Merge pull request #​1600 from kevinzwhuang/fix-unused-prop-types
  • bb34372 Add test
  • f40b7b8 Merge pull request #​1611 from pfhayes/node.init
  • 22c9237 Add null avoidance
  • 5f1ec80 Merge pull request #​1621 from kamataryo/master
  • 686fa76 Docs: Document forbid for no-unescaped-entities rule (#​1263)
  • a7bc91b Merge pull request #​1624 from alexilyaev/patch-2
  • d9c36bf [Tests] no-typos: add regression test
  • c23d395 Merge pull request #​1504 from mrichmond/bugfix/no-typos-TypeError
  • bf544dc Add URL to rule documentation to the metadata
  • 07345b4 Merge pull request #​1635 from Arcanemagus/rules-docs-url
  • 73c86c9 Add beforeClosing option to jsx-tag-spacing
  • 9cc118c Add unit tests
  • 6fdefcf Add jsx-sort-default-props rule
  • 5770c72 Surround sort-default-props keywords with backticks and fix typo
  • 4f00455 Add SFC examples in the documentation and tests
  • ba394d2 Fix wording in docs
  • f5cff2a Fix typo
  • f103712 Make default value allow
  • 2043520 Add multiline test cases
  • 0e983de Merge pull request #​1641 from cjskillingstad/feat/jsx-tag-spacing_before_closing
  • 2e3a6a4 [Fix] crossOrigin is wrong; and crossorigin is only valid on script/img/video
  • 92add21 Adding a warning for React.addons.TestUtils.
  • 8237551 Merge pull request #​1645 from nirnaor/master
  • 558576c Add more tests with spread, add examples
  • e24b53f Add tests and examples with multiple spreads
  • c2c7a2a Merge pull request #​1616 from jaaberg/jsx-no-literals-binary
  • 36beb6d Merge pull request #​1483 from b0gok/jsx-sort-default-props
  • d3840a5 add missing meta to jsx-tag-spacing
  • f9cc10d prop-types doesn't check nextProps of componentWillReceiveProps
  • 8360ffa support isRequired for custom props and call expressions
  • 1d12044 Merge pull request #​1650 from xinminlabs/add-missing-meta-to-jsx-tag-spacing
  • 942a92c merged one of the previous tests and added 2 new tests for the default parser
  • 20dff22 Adds more checks to MethodDefinition case and adds new test case for default parser
  • f4cab9a Merge pull request #​1652 from lfades/fix/no-typos
  • c558451 Merge pull request #​1651 from xjmdoo/master
  • 692cdc8 Merge pull request #​1643 from ljharb/fix_crossorigin
  • 614d3bd Support recursive type annotations, fixes #​913
  • e4f7e30 Mark all recursive proptypes as acceptable with {}, not true
  • 7b742d0 Update CHANGELOG and bump version
  • 7443a37 [New] forbid-foreign-prop-types: Add allowInPropTypes option
  • a2764d9 [Tests] number comments to more easily locate failures

v7.6.1

  • 509f2cb Use typeof === 'undefined' instead of void 0
  • f947536 Fixed crossorigin naming convention to match React's supported HTML attributes.
  • a19b2ad Removed unnecessary mapping and tests handled by React's existing warnings.
  • d64a16b Added the missing tagName, link, to support the crossOrigin property.
  • 843d71a Merge pull request #​1653 from jetpacmonkey/master
  • 1d13218 Restore tests and crossorigin attribute map
  • d060041 Merge pull request #​1659 from jzDev/jzDev/flip-crossorigin-rule
  • e56376e [Fix] no-access-state-in-setstate: handle object spread
  • f7441bb Update CHANGELOG and bump version

v7.7.0

  • cfd3959 [Docs] add jsx-child-element-spacing
  • 70e8a02 Merge pull request #​1610 from pfhayes/setstate
  • 5e1a64c [Fix] no-danger-with-children: prevent infinite loop
  • d8dff26 test(sort-prop-types) Add failing test for when sortShapeProp is true and shape not object literal
  • 17ac433 fix(sort-prop-types): Fix sortShapeProp when shape is not an object literal
  • d818f2b Merge pull request #​1669 from justinanastos/fix/sort-prop-types-shape-no-properties-1668
  • 05c49d4 [Fix] jsx-child-element-spacing: fix error location
  • 2839b5d Fix an issue with the documentation for 'jsx-child-element-spacing'
  • dda03e9 Created test
  • 78e2951 Fixed bug
  • b1444be Added more tests
  • 24658b5 Added more valid tests
  • 3d83d13 Added more tests
  • fb2fefd Merge pull request #​1675 from yuri-sakharov/fix/react-no-unused-prop-types
  • e77c97f Test
  • 0fa0761 Added test & working
  • 3ac7943 [docs] add missing rule to readme
  • 8ca344a Rearranged tests to be at the bottom of componentWillReceiveProps tests. Added a default parser test.
  • e26b7e2 [Tests] clean up some formatting
  • c996740 Merge pull request #​1690 from mindspacepdx/am-should-component-update
  • e4de360 [Fix] jsx-curly-spacing problem in new tests, fixes #​1414
  • 0e2e046 [Dev Deps] update babel-eslint, eslint, istanbul, mocha
  • abe8381 Update CHANGELOG and bump version

This PR has been generated by Renovate Bot.

@codecov
Copy link

codecov bot commented Jan 25, 2018

Codecov Report

Merging #45 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #45   +/-   ##
=======================================
  Coverage   19.25%   19.25%           
=======================================
  Files          16       16           
  Lines         187      187           
  Branches       31       31           
=======================================
  Hits           36       36           
  Misses        121      121           
  Partials       30       30

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b89bb6b...f7f8169. Read the comment docs.

@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-react to v7.6.0 chore(deps): update dependency eslint-plugin-react to v7.6.1 Jan 29, 2018
@renovate renovate bot force-pushed the renovate/eslint-plugin-react-7.x branch from efe3913 to 3444e4a Compare January 29, 2018 08:11
@renovate renovate bot force-pushed the renovate/eslint-plugin-react-7.x branch from 3444e4a to f7f8169 Compare February 20, 2018 08:25
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-react to v7.6.1 chore(deps): update dependency eslint-plugin-react to v7.7.0 Feb 20, 2018
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-react to v7.7.0 chore(deps): update dependency eslint-plugin-react to v7.7.0 - autoclosed Mar 5, 2018
@renovate renovate bot closed this Mar 5, 2018
@renovate renovate bot deleted the renovate/eslint-plugin-react-7.x branch March 5, 2018 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant