corgicode / api

Backend for the codecorgi platform
http://codecorgi.co
Other
3 stars 0 forks source link

Bump eslint-plugin-react from 6.10.3 to 7.7.0 #104

Closed dependabot-preview[bot] closed 6 years ago

dependabot-preview[bot] commented 6 years ago

Bumps eslint-plugin-react from 6.10.3 to 7.7.0.

Release notes *Sourced from eslint-plugin-react's [releases](https://github.com/yannickcr/eslint-plugin-react/releases).* > ## v7.7.0 > ### Added > * [`forbid-foreign-prop-types`][]: add `allowInPropTypes` option ([#1655](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1655) [**iansu**](https://github.com/iansu)) > * Add [`jsx-max-depth`][] rule ([#1260](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1260) [**chriswong**](https://github.com/chriswong)) > > ### Fixed > * [`no-access-state-in-setstate`][]: Exclude references to this.state in setState callback ([#1610](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1610) [**pfhayes**](https://github.com/pfhayes)) > * [`no-danger-with-children`][]: prevent infinite loop ([#1571](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1571) [**ljharb**](https://github.com/ljharb)) > * [`sort-prop-types`][]: Fix sortShapeProp when shape is not an object literal ([#1669](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1669) [**justinanastos**](https://github.com/justinanastos)) > * [`jsx-child-element-spacing`][]: fix error location ([#1666](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1666) [**pfhayes**](https://github.com/pfhayes)) > * [`no-unused-prop-types`][]: fix for createClass ([#1675](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1675) [**yuri-sakharov**](https://github.com/yuri-sakharov)) > * [`prop-types`][]: include nextProps checking in shouldComponentUpdate ([#1690](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1690) [**amerryma**](https://github.com/amerryma)) > * [`jsx-curly-spacing`][]: refactor to fix start and end-braces in a single pass ([#1414](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1414) [**s-h-a-d-o-w**](https://github.com/s-h-a-d-o-w)) > > ### Changed > * [`jsx-child-element-spacing`][]: add missing docs ([#1665](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1665) [**pfhayes**](https://github.com/pfhayes)); fix docs ([#1670](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1670) [**SammyM**](https://github.com/SammyM)) > > [`no-danger-with-children`]: docs/rules/no-danger-with-children.md > [`jsx-child-element-spacing`]: docs/rules/jsx-child-element-spacing.md > [`jsx-max-depth`]: docs/rules/jsx-max-depth.md > [`forbid-foreign-prop-types`]: docs/rules/forbid-foreign-prop-types.md > [`no-access-state-in-setstate`]: docs/rules/no-access-state-in-setstate.md > [`jsx-sort-props`]: docs/rules/jsx-sort-props.md > [`sort-prop-types`]: docs/rules/sort-prop-types.md > [`no-unused-prop-types`]: docs/rules/no-unused-prop-types.md > [`prop-types`]: docs/rules/prop-types.md > [`jsx-curly-spacing`]: docs/rules/jsx-curly-spacing.md > > ## v7.6.1 > ### Fixed > * Flow: fix crash in [`prop-types`][] with recursive type annotations ([#1653][] [**jetpacmonkey**](https://github.com/jetpacmonkey)) > * Fix [`no-unknown-property`][] to properly recognize `crossOrigin` instead of `crossorigin`, and allow it on `link` tags. ([#1659][] [**jzDev**](https://github.com/jzDev)) > * Fix [`no-access-state-in-setstate`][] to handle object spread ([#1657][] [**ljharb**](https://github.com/ljharb)) > > [7.6.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.6.0...v7.6.1 > [#1659]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1659 > [#1657]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issue/1657 > [#1653]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1653 > [`prop-types`]: docs/rules/prop-types.md > [`no-unknown-property`]: docs/rules/no-unknown-property.md > [`no-access-state-in-setstate`]: docs/rules/no-access-state-in-setstate.md > > ## v7.6.0 > ### Added > * Add `forbid-dom-props` rule ([#1562][] [**davazp**](https://github.com/davazp)) > * Add `jsx-child-element-spacing` rule ([#1515][] [**pfhayes**](https://github.com/pfhayes)) > * Add `no-this-in-sfc` rule ([#1435][] [**jomasti**](https://github.com/jomasti)) > * Add `jsx-sort-default-props` rule ([#281][] [**b0gok**](https://github.com/b0gok)) > * Add `message` option to `boolean-prop-naming` ([#1588][] [**louisscruz**](https://github.com/louisscruz)) > * Add `beforeClosing` option to `jsx-tag-spacing` ([#1396][] [**cjskillingstad**](https://github.com/cjskillingstad)) > ... (truncated)
Changelog *Sourced from eslint-plugin-react's [changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md).* > ## [7.7.0] - 2018-02-19 > ### Added > * [`forbid-foreign-prop-types`][]: add `allowInPropTypes` option ([#1655][] [**iansu**](https://github.com/iansu)) > * Add [`jsx-max-depth`][] rule ([#1260][] [**chriswong**](https://github.com/chriswong)) > > ### Fixed > * [`no-access-state-in-setstate`][]: Exclude references to this.state in setState callback ([#1610][] [**pfhayes**](https://github.com/pfhayes)) > * [`no-danger-with-children`][]: prevent infinite loop ([#1571][] [**ljharb**](https://github.com/ljharb)) > * [`sort-prop-types`][]: Fix sortShapeProp when shape is not an object literal ([#1669][] [**justinanastos**](https://github.com/justinanastos)) > * [`jsx-child-element-spacing`][]: fix error location ([#1666][] [**pfhayes**](https://github.com/pfhayes)) > * [`no-unused-prop-types`][]: fix for createClass ([#1675][] [**yuri-sakharov**](https://github.com/yuri-sakharov)) > * [`prop-types`][]: include nextProps checking in shouldComponentUpdate ([#1690][] [**amerryma**](https://github.com/amerryma)) > * [`jsx-curly-spacing`][]: refactor to fix start and end-braces in a single pass ([#1414][] [**s-h-a-d-o-w**](https://github.com/s-h-a-d-o-w)) > > ### Changed > * [`jsx-child-element-spacing`][]: add missing docs ([#1665][] [**pfhayes**](https://github.com/pfhayes)); fix docs ([#1670][] [**SammyM**](https://github.com/SammyM)) > > [7.7.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.6.1...v7.7.0 > [#1690]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1690 > [#1675]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1675 > [#1670]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1670 > [#1669]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1669 > [#1666]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1666 > [#1655]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1655 > [#1610]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1610 > [#1414]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1414 > [#1260]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1260 > [#1571]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issue/1571 > > ## [7.6.1] - 2018-01-28 > ### Fixed > * Flow: fix crash in [`prop-types`][] with recursive type annotations ([#1653][] [**jetpacmonkey**](https://github.com/jetpacmonkey)) > * Fix [`no-unknown-property`][] to properly recognize `crossOrigin` instead of `crossorigin`, and allow it on `link` tags. ([#1659][] [**jzDev**](https://github.com/jzDev)) > * Fix [`no-access-state-in-setstate`][] to handle object spread ([#1657][] [**ljharb**](https://github.com/ljharb)) > > [7.6.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.6.0...v7.6.1 > [#1659]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1659 > [#1657]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issue/1657 > [#1653]: https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/1653 > > ## [7.6.0] - 2018-01-25 > ### Added > * Add [`forbid-dom-props`][] rule ([#1562][] [**davazp**](https://github.com/davazp)) > * Add [`jsx-child-element-spacing`][] rule ([#1515][] [**pfhayes**](https://github.com/pfhayes)) > * Add [`no-this-in-sfc`][] rule ([#1435][] [**jomasti**](https://github.com/jomasti)) > * Add [`jsx-sort-default-props`][] rule ([#281][] [**b0gok**](https://github.com/b0gok)) > * Add `message` option to [`boolean-prop-naming`][] ([#1588][] [**louisscruz**](https://github.com/louisscruz)) > * Add `beforeClosing` option to [`jsx-tag-spacing`][] ([#1396][] [**cjskillingstad**](https://github.com/cjskillingstad)) > * Add `instance-methods` and `instance-variables` to [`sort-comp`][] ([#599][] [**RDGthree**](https://github.com/RDGthree)) > * Add `propWrapperFunctions` support for [`boolean-prop-naming`][] ([#1478][] [**jomasti**](https://github.com/jomasti)) > ... (truncated)
Commits - [`abe8381`](https://github.com/yannickcr/eslint-plugin-react/commit/abe8381c0d6748047224c430ce47f02e40160ed0) Update CHANGELOG and bump version - [`0e2e046`](https://github.com/yannickcr/eslint-plugin-react/commit/0e2e0463cb73663d7d2ead66b7418c574ffd9704) [Dev Deps] update `babel-eslint`, `eslint`, `istanbul`, `mocha` - [`34f83a5`](https://github.com/yannickcr/eslint-plugin-react/commit/34f83a540d0f088882e349f744c8a6360f6cd544) [New] Add `jsx-max-depth` - [`e4de360`](https://github.com/yannickcr/eslint-plugin-react/commit/e4de3600c281c87bcb18d62c10ce279374ddcde4) [Fix] jsx-curly-spacing problem in new tests, fixes [#1414](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1414) - [`a2764d9`](https://github.com/yannickcr/eslint-plugin-react/commit/a2764d9e235a4aab89116ba5899a29b78c45aff4) [Tests] number comments to more easily locate failures - [`b4141d8`](https://github.com/yannickcr/eslint-plugin-react/commit/b4141d801dd7b22268c687feaa9b7b2477e91180) [Tests] Added tests for jsx-curly-spacing that deal with comments in children. - [`c996740`](https://github.com/yannickcr/eslint-plugin-react/commit/c99674001db435b327e019ff1d9a7ab512da0ec9) Merge pull request [#1690](https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/1690) from mindspacepdx/am-should-component-update - [`e26b7e2`](https://github.com/yannickcr/eslint-plugin-react/commit/e26b7e2061e7fe9ba505527c28811e1199ce5945) [Tests] clean up some formatting - [`8ca344a`](https://github.com/yannickcr/eslint-plugin-react/commit/8ca344a6d1c98f97e65a44511f0e2d0a6bd5351c) Rearranged tests to be at the bottom of componentWillReceiveProps tests. Adde... - [`3ac7943`](https://github.com/yannickcr/eslint-plugin-react/commit/3ac79437a3461bc8c4fa17fd5fd7a8b4b029836c) [docs] add missing rule to readme - Additional commits viewable in [compare view](https://github.com/yannickcr/eslint-plugin-react/compare/v6.10.3...v7.7.0)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot ignore this [minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use [this|these] label[s]` will set the current labels as the default for future PRs for this repo and language Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) Finally, you can contact us by mentioning @dependabot.
dependabot-preview[bot] commented 6 years ago

Superseded by #120.