Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Update eslint-plugin-react to the latest version 🚀 #233

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Feb 15, 2017

Version 6.10.0 of eslint-plugin-react just got published.

Dependency eslint-plugin-react
Current Version 6.8.0
Type devDependency

The version 6.10.0 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of eslint-plugin-react.
Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Release Notes v6.10.0

Added

Fixed

  • Fix require-default-props crash (#1029)
  • Fix require-default-props rule when using Flow type from assignment (#1043 @wyze @CarlRosell)
  • Fix style-prop-object to not warn with explicit null or undefined (#812 @ljharb)
  • Fix no-unused-prop-types props detection in stateless components (#885 @BarryThePenguin)
  • Fix display-name false positive with document.createElement (#996 @jomasti)
  • Fix ESLint 2 compatibility (@ljharb)

Changed

Commits

The new version differs by 58 commits .

  • 83d4c4b Update CHANGELOG and bump version
  • ee144d6 Merge pull request #890 from kentor/forbid-elements
  • 3e2421e Merge pull request #946 from BarryThePenguin/no-unused-prop-types-in-jsx
  • 3b25a3b Merge pull request #882 from kentor/jsx-max-props-per-line-updates
  • 54abb8b Merge pull request #1055 from iancmyers/icm-forbid-foreign-prop-type
  • 0b25b66 Add forbid-foreign-prop-types rule
  • c586273 Merge pull request #1062 from dguo/patch-2
  • 8e207b8 Fix no-array-index-key typo
  • d884a98 Add new rule: forbid-elements
  • c97dd0f Merge pull request #1051 from yannickcr/void-dom-elements-no-children
  • a84d5f5 jsx-max-props-per-line: Use json format in docs
  • 9af8d25 fix comments
  • d5c3e91 detect used props in jsx
  • b52f3b8 jsx-max-props-per-line: Add additional test cases
  • b485e28 jsx-max-props-per-line: Add when option

There are 58 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

@codecov-io
Copy link

Codecov Report

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

@@           Coverage Diff           @@
##           master     #233   +/-   ##
=======================================
  Coverage   76.23%   76.23%           
=======================================
  Files          10       10           
  Lines         223      223           
=======================================
  Hits          170      170           
  Misses         53       53

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 796205c...49be4fe. Read the comment docs.

@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 19, 2017

Version 6.10.1 just got published.

Update to this version instead 🚀

Release Notes v6.10.1

Fixed

Commits

The new version differs by 11 commits .

  • ab03af8 Update CHANGELOG and bump version
  • b646485 Merge pull request #1089 from benstepp/bs-multicomp-false-positives
  • c038899 Bug fix for false positives with no-multi-comp
  • 8148833 [Fix] Update void-dom-elements-no-children createElement checks
  • c45ab86 Merge pull request #1081 from webOS101/jsx-indent-fix
  • 7863a5c Fix jsx-indent single line jsx
  • 416deff Update void-dom-elements-no-children
  • 22f3638 Merge pull request #1077 from iancmyers/fix-jsx-indent-template-conditional
  • c6f4a5e Fix error caused by templates in ConditionalExpressions (jsx-indent)
  • a4b6a85 Merge pull request #1058 from kentcdodds/pr/jsx-indent-tabs-fix
  • 6e5f688 [Fix] jsx-indent with tabs (fixes #1057)

See the full diff.

@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 19, 2017

Version 6.10.2 just got published.

Update to this version instead 🚀

Release Notes v6.10.2

Fixed

  • Fix jsx-indent indentation calculation with nested JSX (#1117)
Commits

The new version differs by 2 commits .

  • 5b75162 Update CHANGELOG and bump version
  • 41bdb58 Fix jsx-indent indentation calculation with nested JSX (fixes #1117)

See the full diff.

@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 20, 2017

Version 6.10.3 just got published.

Update to this version instead 🚀

Release Notes v6.10.3

Fixed

  • Revert #1057 due to issues with jsx-indent (#1117)
Commits

The new version differs by 2 commits .

  • b9cfdd6 Update CHANGELOG and bump version
  • e9fb52d Revert "[Fix] jsx-indent with tabs (fixes #1057)"

See the full diff.

greenkeeper bot added a commit that referenced this pull request May 6, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 6, 2017

Version 7.0.0 just got published.

Update to this version instead 🚀

Release Notes v7.0.0

Added

Breaking

  • Update rules for React 15.5.0:
    • Add warnings for React.PropTypes and React.createClass in no-deprecated (#1148 @Calyhre)
    • Update createClass component factory to createReactClass. This is used for React component detection, if you still using React.createClass use the shared settings to specify createClass as component factory
  • Drop Node.js < 4 support (#1038 @ljharb)
  • Add no-danger-with-children rule to recommended rules (#748 @ljharb)
  • Add no-string-refs rule to recommended rules (#749 @ljharb)
  • Add jsx-key rule to recommended rules (#750 @ljharb)
  • Add jsx-no-comment-textnodes rule to recommended rules (#751 @ljharb)
  • Add jsx-no-target-blank rule to recommended rules (#752 @ljharb)
  • Add no-unescaped-entities rule to recommended rules (#841 @ljharb)
  • Add no-children-prop rule to recommended rules (#842 @ljharb)
  • Remove deprecated wrap-multilines rule, use jsx-wrap-multilines instead
  • Remove deprecated no-comment-textnodes rule, use jsx-no-comment-textnodes instead
  • Remove deprecated require-extension rule, use the eslint-plugin-import extensions rule instead
  • Deprecate jsx-space-before-closing rule, use the jsx-tag-spacing rule instead. jsx-space-before-closing still works but will trigger a warning (#1070 @afairb)
  • jsx-first-prop-new-line default is now multiline-multiprop (#802 @kokarn)
  • jsx-wrap-multilines now checks arrow functions without block body. It can be deactivated in rule options (#790 @ColCh)
  • jsx-no-undef will not check the global scope by default. You can force it with the allowGlobals option (#1013 @jomasti)

Fixed

  • Fix no-unused-prop-types false positive with nextProps (#1079 @Kerumen)
  • Fix prefer-stateless-function to not warn on classes with decorators (#1034 @benstepp)

Changed

Commits

The new version differs by 58 commits0.

  • d335b1f Update CHANGELOG and bump version
  • d97e5f0 Merge pull request #1167 from Slumber86/master
  • 79415f1 Wrong import
  • 48a397e Fix syntax error
  • 2cd9e5e Update docs for deprecated prop-types
  • 4d5faee Update CHANGELOG and bump version
  • dfe190b Merge pull request #1134 from MatthewHerbst/jsx-sort-props/new-rule-option--reservedFirst
  • 14dbf99 Merge pull request #802 from kokarn/master
  • 7d08955 Add default for jsx-first-prop-new-line
  • 21ed801 Fix lint errors
  • b5856ca Merge pull request #791 from Lingvokot/790-stateless-multiline-wrap
  • 77048c8 Remove deprecated wrap-multilines rule
  • 6d6d24a Remove deprecated no-comment-textnodes rule
  • 229cc21 Remove deprecated require-extension rule
  • ed928c2 Merge pull request #1013 from jomasti/jsx-no-undef-imported-only

There are 58 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request May 13, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 13, 2017

Version 7.0.1 just got published.

Update to this version instead 🚀

Release Notes v7.0.1

Fixed

  • Fix jsx-curly-spacing allowMultiline option being undefined in some cases (#1179 @fatfisz)
  • Fix jsx-curly-spacing newline with object literals bug (#1180 @fatfisz)
  • Fix prop-types to not mark class static function as valid propTypes definition (#1174)
  • Fix prop-types crash with Flow spread operator (#1178)
  • Fix void-dom-elements-no-children crash on faulty createElement detection (#1101)
  • Fix require-default-props error message for quoted props (#1161)

Changed

Commits

The new version differs by 22 commits0.

  • 7ca9841 Update CHANGELOG and bump version
  • 9ce4d85 Merge pull request #1192 from markus-willems/pr/prop-types-docs
  • 660790b fix for wrong rule syntax. no-unused-prop-types instead of react/no-unused-prop-types in docs
  • 227fcf3 fix for wrong rule syntax. prop-types instead of react/prop-types in docs
  • af68f88 Fix require-default-props error message for quoted props (fixes #1161)
  • f7fb96b Fix void-dom-elements-no-children crash on faulty createElement detection (fixes #1101)
  • f111e45 Merge pull request #1180 from fatfisz/fix-newline-with-object-literals
  • 3743e6d Add additional test with flow annotations to prop-types
  • 1ced710 Fix no-unused-prop-types crash with Flow spread operator (fixes #1178
  • 1534bdb Fix the newline with object literals bug
  • 159d0e5 Update rules to match changes in comments attachement in ESLint 4.0.0
  • 1b5743f Update tests to pass parserOptions globally
  • 0a2c510 Fix indent errors
  • 1bcaee0 Update .eslintrc config for ESLint 4.0.0
  • dd10133 Fix prop-types crash with Flow spread operator (fixes #1178)

There are 22 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 14, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 14, 2017

Version 7.1.0 just got published.

Update to this version instead 🚀

Release Notes v7.1.0

Added

Fixed

  • Fix prefer-stateless-function ignorePureComponents option when using class expressions (#1122 @dreid)
  • Fix void-dom-elements-no-children crash (#1195 @oliviertassinari)
  • Fix require-default-props quoted defaultProps detection (#1201)
  • Fix jsx-sort-props bug with ignoreCase and callbacksLast options set to true (#1175 @jseminck)
  • Fix no-unused-proptype false positive (#1183 #1135 @jseminck)
  • Fix jsx-no-target-blank to not issue errors for non-external URLs (#1216 @gfx)
  • Fix prop-types quoted Flow types detection (#1132 @ethanjgoldberg)
  • Fix no-array-index-key crash with key without value (#1242 @jseminck)

Changed

Commits

The new version differs by 105 commits.

  • cdfa56f Update CHANGELOG and bump version
  • 8bdb6a4 Update dependencies
  • 5be0be3 Remove re-added require-extension rule documentation
  • e7836b5 Add ESLint 4.0.0 to peerDependencies
  • 7cc380a Fix indent errors
  • 32bcb48 Merge pull request #1177 from fatfisz/curly-spacing-for-children
  • d57c115 Update the docs
  • 6903f18 Add back the support for the previous config
  • 5515130 Add more mixed tests
  • 408e1b1 Add the "children" property of the config
  • 65135b8 Fix the behavior of the boolean "attributes"
  • 7b9d9ad Change "spaces" to "when"
  • c9e9ded Allow attributes to have their own config
  • 9a8f800 Add a test case for a fixed bug
  • 0f0ab21 Move the first option into the config object

There are 105 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 9, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 9, 2017

Version 7.2.0 just got published.

Update to this version instead 🚀

Release Notes v7.2.0

Added

Fixed

Changed

Commits

The new version differs by 153 commits.

  • 73abadb Update CHANGELOG and bump version
  • 1a622ea Merge pull request #1343 from DianaSuvorova/unusedPropsFlow
  • f9c22ef Merge pull request #1273 from Overload119/master
  • d66808b Modernize to use let and const
  • e305279 Merge pull request #1344 from DianaSuvorova/docs
  • 15d0f74 [no-unused-prop-types] test from #933
  • f446335 [no-unused-prop-types] known false positives doc
  • 95acd93 Merge pull request #1341 from DianaSuvorova/flowShape
  • 942e594 flow should respect skipShapeProps
  • f0487f2 Merge pull request #1338 from DianaSuvorova/graphql
  • b6bd2da [no-unused-prop-types] graphql issue #1097
  • df84876 Update dependencies
  • a19eec6 Merge pull request #1294 from haridusenadeera/master
  • ed72341 Merge pull request #1329 from DianaSuvorova/docs
  • 3195805 Merge pull request #1302 from davidyorr/master

There are 153 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 14, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 14, 2017

Version 7.2.1 just got published.

Update to this version instead 🚀

Release Notes v7.2.1

Fixed

Changed

Commits

The new version differs by 11 commits.

  • 8511835 Update CHANGELOG and bump version
  • 0f6688b Merge pull request #1124 from penx/patch-1
  • ecc5d89 Fix wrapped propTypes detection (fixes #1366)
  • 4724d48 Merge pull request #1365 from DianaSuvorova/i1288
  • 6272a1d [prop types] fix an assignment to prop
  • b9bb564 Merge pull request #1358 from dustinsoftware/issue1354
  • 99fd813 Fix propTypes wrapper crash in boolean-prop-naming
  • dae6574 [Tests] use pretest to run the linter
  • 2dcb73b [Tests] fixup previous linter error
  • 5ad93b4 [Fix] forbid-prop-types: propWrapperFunctions breaks on identifiers.
  • 08f451f Update no-array-index-key.md to address issue 1123

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 21, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 21, 2017

Version 7.3.0 just got published.

Update to this version instead 🚀

Release Notes v7.3.0

Added

  • Add checks for propTypes, contextTypes and childContextTypes to no-typos (#213 @DianaSuvorova)

Fixed

  • Fix boolean-prop-naming crash (#1369 @EvHaus)
  • Fix no-typos crash (#1353 @jseminck)
  • Fix require-default-props stopping when it finds a component without props (#1380 @brgibson)
  • Fix no-direct-mutation-state detection with nested components (#1382)

Changed

Commits

The new version differs by 25 commits.

  • 162b92b Update CHANGELOG and bump version
  • 686ab89 Merge pull request #1375 from jseminck/more-robust-no-typos-fix
  • 9805f70 Fix no-direct-mutation-state detection with nested components (fixes #1382)
  • 6af4bca Merge pull request #1383 from mjomble/patch-1
  • a05bc0a Fixed links in changelog
  • 48e8dc1 Merge pull request #1380 from brgibson/master
  • f371368 require-default-props - fixing an edge case where linting stops when it finds a component without props - should move on to the next component in the file
  • 5e25a5e Re-add FIXME and disable the warning through eslint-disable-next-line
  • d00e9e6 Remove FIXME as it fails linting
  • 0cf2415 Add comment to the eslint parent definition issue
  • 02ed7d0 Merge pull request #1371 from DianaSuvorova/i213
  • 1292807 Add comment explaining try/catch
  • fa890cb Tests and explaining the case that is currently not supported.
  • 1301fe9 More robust no-typos fix
  • 59a3f6a [no-typo] rule enhancement checking for a correct prop type spelling

There are 25 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 24, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 24, 2017

Version 7.4.0 just got published.

Update to this version instead 🚀

Release Notes v7.4.0

Added

  • Add Flow 0.53 support (#1376 @jseminck)
  • Add jsx-curly-brace-presence rule (#1310 @jackyho112)
  • Add support for Flow IntersectionTypeAnnotation to prop-types and no-unused-prop-types (#1364 #1323 @jseminck)
  • Add support for Flow TypedArgument to no-unused-prop-types (#1412 @jseminck)
  • Add support for Flow ClassExpressions to prop-types (#1400 @jseminck)
  • Add support for Flow read-only props to no-unused-prop-types (#1388 @jseminck)
  • Add more tests for prop-types and no-unused-prop-types (#1381 @DianaSuvorova)
  • Add support for increment and decrement operations to no-direct-mutation-state (#1386 @zpao)

Fixed

Changed

Commits

The new version differs by 112 commits.

  • dc9f85e Update CHANGELOG and bump version
  • 99b12a2 Merge pull request #1432 from jneuendorf/master
  • d2005b1 fixed typos in no-multi-comp
  • ddd05b1 Update CHANGELOG and bump version
  • 7e336aa Merge pull request #1415 from jseminck/intersection-imported-type
  • ad26580 Merge pull request #1387 from zpao/update-expression
  • 09c4ed7 Add tests for {...} & Props in addition to Props & {...}
  • 357dcda buildReactDeclarationTypes to always return an object
  • 0ee5e93 Rewrite reduce to ignorePropsValidation as some()
  • 3e9aefe Make buildTypeAnnotationDeclarationTypes always return an object instead of boolean or an object
  • 3e4d184 Aadd support also for no-unused-prop-types
  • 19a2911 Clean up the code a bit
  • 20f75ee Add support for TypeA & { ... }
  • a771125 Add similar supprt for no-used-prop-types
  • 87aca04 Add support for multiple Flow IntersectionTypeAnnotations and skip propTypes when one of the intersected props is not found, e.g. when imported

There are 112 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 18, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 18, 2017

Version 7.5.0 just got published.

Update to this version instead 🚀

Release Notes v7.5.0

Added

Fixed

Changed

Commits

The new version differs by 176 commits.

  • c148893 Update CHANGELOG and bump version
  • f746d68 Update dependencies
  • 771f534 Merge pull request #1539 from jseminck/jsx-indent-bug
  • acc4f24 Use the new function also in jsx-indent-props
  • c51087c Extract isNodeFirstInLine to astUtil function
  • 6d50fb6 Fix test by using the same isNodeFirstInLine function found in jsx-closing-tag-location rule
  • 8f3dc55 Add failing test
  • 27b8279 Merge pull request #1532 from jomasti/issue-1524
  • 24190c6 Merge pull request #1398 from jseminck/components-as-class
  • cf2d6f6 Keep existing API of exporting Components
  • 04a42a9 Move private functions out of the class
  • a0d47cf Export an object with a single detect() function, removing the static class property
  • e3638ab Remove @class jsdoc
  • c379156 Move detect to a static class property
  • 8d66521 Re-write Components as a class

There are 176 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 19, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 19, 2017

Version 7.5.1 just got published.

Update to this version instead 🚀

Release Notes v7.5.1

Fixed

Changed

Commits

The new version differs by 7 commits.

  • 3a94a95 Update CHANGELOG and bump version
  • 32a050a Merge pull request #1549 from jseminck/documentation-fix-2
  • 31bfdf7 Add button-has-type to readme
  • 56c0a0b Merge pull request #1545 from jomasti/issue-1542
  • 3c6d571 Fix crash in no-unused-prop-types
  • e0bae03 Merge pull request #1544 from jomasti/issue-1543
  • 51ffcd0 Prevent jsx-no-bind crash

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 25, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 25, 2018

Version 7.6.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 106 commits.

  • 7b742d0 Update CHANGELOG and bump version
  • 692cdc8 Merge pull request #1643 from ljharb/fix_crossorigin
  • c558451 Merge pull request #1651 from xjmdoo/master
  • f4cab9a Merge pull request #1652 from lfades/fix/no-typos
  • 20dff22 Adds more checks to MethodDefinition case and adds new test case for default parser
  • 942a92c merged one of the previous tests and added 2 new tests for the default parser
  • 1d12044 Merge pull request #1650 from xinminlabs/add-missing-meta-to-jsx-tag-spacing
  • 8360ffa support isRequired for custom props and call expressions
  • f9cc10d prop-types doesn't check nextProps of componentWillReceiveProps
  • d3840a5 add missing meta to jsx-tag-spacing
  • 36beb6d Merge pull request #1483 from b0gok/jsx-sort-default-props
  • c2c7a2a Merge pull request #1616 from jaaberg/jsx-no-literals-binary
  • e24b53f Add tests and examples with multiple spreads
  • 558576c Add more tests with spread, add examples
  • 8237551 Merge pull request #1645 from nirnaor/master

There are 106 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 29, 2018
greenkeeper bot added a commit that referenced this pull request Jan 17, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 17, 2019

Update to this version instead 🚀

Release Notes for v7.12.4

Fixed

Changed

Commits

The new version differs by 10 commits.

  • 433cc3f Update CHANGELOG and bump version
  • 536bc35 [Tests] prop-types: add case from #2134
  • df7ffc1 [Tests] no-typos: test case from #2136
  • c7e5f38 [Tests] improve version detection tests.
  • 2dd2277 [Tests] prop-types: add now-passing test case
  • 84652b6 [Fix] no-unused-prop-types: avoid a crash
  • 58ed9e9 [Fix] prop-types: avoid further crashes from nonexistent nodes in unusedPropTypes
  • 7f7b96d [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

greenkeeper bot added a commit that referenced this pull request May 3, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented May 3, 2019

Update to this version instead 🚀

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 param
  • 9fbd037 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

greenkeeper bot added a commit that referenced this pull request Jun 23, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 23, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jun 24, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 24, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jun 24, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 24, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jul 22, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 22, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 1, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 1, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 1, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 1, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 4, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 4, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Nov 29, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 29, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Feb 1, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 1, 2020

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Feb 2, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 2, 2020

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Feb 3, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 3, 2020

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Mar 6, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 6, 2020

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request May 13, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented May 13, 2020


🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! 💜 🚚💨 💚

Find out how to migrate to Snyk at greenkeeper.io


Update to this version instead 🚀

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant