You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by GitBox <gi...@apache.org> on 2020/12/28 07:47:06 UTC

[GitHub] [avro] dependabot[bot] opened a new pull request #1045: Update rubocop requirement from <= 0.81 to <= 1.8 in /lang/ruby

dependabot[bot] opened a new pull request #1045:
URL: https://github.com/apache/avro/pull/1045


   Updates the requirements on [rubocop](https://github.com/rubocop-hq/rubocop) to permit the latest version.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/rubocop-hq/rubocop/releases">rubocop's releases</a>.</em></p>
   <blockquote>
   <h2>RuboCop 1.7</h2>
   <h3>New features</h3>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9260">#9260</a>: Support auto-correction for <code>Style/MultilineMethodSignature</code>. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9282">#9282</a>: Make <code>Style/RedundantFreeze</code> and <code>Style/MutableConstant</code> cops aware of frozen regexp and range literals when using Ruby 3.0. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9223">#9223</a>: Add new <code>Lint/AmbiguousAssignment</code> cop. (<a href="https://github.com/fatkodima">@fatkodima</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9243">#9243</a>: Support auto-correction for <code>Style/CommentedKeyword</code>. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9283">#9283</a>: Add new <code>Style/HashExcept</code> cop. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9231">#9231</a>: Add new <code>Layout/SpaceBeforeBrackets</code> cop. (<a href="https://github.com/koic">@koic</a>)</li>
   </ul>
   <h3>Bug fixes</h3>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9232">#9232</a>: Fix <code>Style/SymbolProc</code> registering wrong offense when using a symbol numbered block argument greater than 1, i.e. <code>[[1, 2]].map { _2.succ }</code>. (<a href="https://github.com/tdeo">@tdeo</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9274">#9274</a>: Fix error in <code>Metrics/ClassLength</code> when the class only contains comments. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9213">#9213</a>: Fix a false positive for <code>Style/RedanduntFreeze</code> when using <code>Array#*</code>. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9279">#9279</a>: Add support for endless methods to <code>Style/MethodCallWithArgsParentheses</code>. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9245">#9245</a>: Fix <code>Lint/AmbiguousRegexpLiteral</code> when given a <code>match_with_lvasgn</code> node. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9276">#9276</a>: Add support for endless methods to <code>Style/SingleLineMethods</code>. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9225">#9225</a>: Fix Style/LambdaCall ignoring further offenses after opposite style is detected. (<a href="https://github.com/sswander">@sswander</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9234">#9234</a>: Fix the error for <code>Style/KeywordParametersOrder</code> and make it aware of block keyword parameters. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/8938">#8938</a>: Fix some ConfigurableEnforcedStyle cops to output <code>Exclude</code> file lists in <code>--auto-gen-config</code> runs. (<a href="https://github.com/h-lame">@h-lame</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9257">#9257</a>: Fix false positive for <code>Style/SymbolProc</code> when the block uses a variable from outside the block. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9251">#9251</a>: Fix extracted cop warning when the extension is loaded using <code>--require</code>. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9244">#9244</a>: When a cop defined in an extension is explicitly enabled, ensure that it remains enabled. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/8046">#8046</a>: Fix an error for <code>Layout/HeredocArgumentClosingParenthesis</code> when there is an argument between a heredoc argument and the closing paretheses. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9261">#9261</a>: Fix an incorrect auto-correct for <code>Style/MultilineWhenThen</code> when one line for multiple condidate values of <code>when</code> statement. ([<a href="https://github.com/makicamel">@makicamel</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9258">#9258</a>: Fix calculation of cop department for nested departments. ([<a href="https://github.com/mvz">@mvz</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9277">#9277</a>: Fix <code>Layout/EmptyLineBetweenDefs</code> error with endless method definitions. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9278">#9278</a>: Update <code>Style/MethodDefParentheses</code> to ignore endless method definitions since parentheses are always required. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   </ul>
   <h3>Changes</h3>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9212">#9212</a>: Make <code>Style/RedundantArgument</code> aware of <code>String#chomp</code> and <code>String#chomp!</code>. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/8482">#8482</a>: Allow simple math for <code>Lint/BinaryOperatorWithIdenticalOperands</code> cop. (<a href="https://github.com/fatkodima">@fatkodima</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9237">#9237</a>: Add <code>IgnoredPatterns</code> configuration to <code>Lint/UnreachableLoop</code> to allow for block methods that share a name with an <code>Enumerable</code> method. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9206">#9206</a>: Allow extensions to disable cop obsoletions. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9262">#9262</a>: Update <code>Style/CollectionMethods</code> to be handle additional arguments and methods that accept a symbol instead of a block. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9235">#9235</a>: Allow <code>--only</code> and <code>--except</code> to be able to properly qualify cops added by require. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9205">#9205</a>: Update <code>Naming/MemoizedInstanceVariableName</code> to handle dynamically defined methods. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9285">#9285</a>: Add <code>AllowPercentLiteralArrayArgument</code> option for <code>Lint/RedundantSplatExpansion</code> to enable the option by default. (<a href="https://github.com/koic">@koic</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9208">#9208</a>: Use Array#bsearch instead of Array#include? to detect hidden files. ([<a href="https://github.com/dark-panda">@dark-panda</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9228">#9228</a>: Suppress any config warnings for <code>rubocop -V</code>. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9193">#9193</a>: Add <code>IgnoreLiteralBranches</code> and <code>IgnoreConstantBranches</code> options to <code>Lint/DuplicateBranch</code>. (<a href="https://github.com/dvandersluis">@dvandersluis</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md">rubocop's changelog</a>.</em></p>
   <blockquote>
   <h2>1.7.0 (2020-12-25)</h2>
   <h3>New features</h3>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9260">#9260</a>: Support auto-correction for <code>Style/MultilineMethodSignature</code>. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9282">#9282</a>: Make <code>Style/RedundantFreeze</code> and <code>Style/MutableConstant</code> cops aware of frozen regexp and range literals when using Ruby 3.0. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9223">#9223</a>: Add new <code>Lint/AmbiguousAssignment</code> cop. ([<a href="https://github.com/fatkodima">@fatkodima</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9243">#9243</a>: Support auto-correction for <code>Style/CommentedKeyword</code>. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9283">#9283</a>: Add new <code>Style/HashExcept</code> cop. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9231">#9231</a>: Add new <code>Layout/SpaceBeforeBrackets</code> cop. ([<a href="https://github.com/koic">@koic</a>][])</li>
   </ul>
   <h3>Bug fixes</h3>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9232">#9232</a>: Fix <code>Style/SymbolProc</code> registering wrong offense when using a symbol numbered block argument greater than 1, i.e. <code>[[1, 2]].map { _2.succ }</code>. ([<a href="https://github.com/tdeo">@tdeo</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9274">#9274</a>: Fix error in <code>Metrics/ClassLength</code> when the class only contains comments. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9213">#9213</a>: Fix a false positive for <code>Style/RedanduntFreeze</code> when using <code>Array#*</code>. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9279">#9279</a>: Add support for endless methods to <code>Style/MethodCallWithArgsParentheses</code>. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9245">#9245</a>: Fix <code>Lint/AmbiguousRegexpLiteral</code> when given a <code>match_with_lvasgn</code> node. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9276">#9276</a>: Add support for endless methods to <code>Style/SingleLineMethods</code>. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9225">#9225</a>: Fix Style/LambdaCall ignoring further offenses after opposite style is detected. ([<a href="https://github.com/sswander">@sswander</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9234">#9234</a>: Fix the error for <code>Style/KeywordParametersOrder</code> and make it aware of block keyword parameters. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/8938">#8938</a>: Fix some ConfigurableEnforcedStyle cops to output <code>Exclude</code> file lists in <code>--auto-gen-config</code> runs. ([<a href="https://github.com/h-lame">@h-lame</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9257">#9257</a>: Fix false positive for <code>Style/SymbolProc</code> when the block uses a variable from outside the block. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9251">#9251</a>: Fix extracted cop warning when the extension is loaded using <code>--require</code>. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9244">#9244</a>: When a cop defined in an extension is explicitly enabled, ensure that it remains enabled. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/8046">#8046</a>: Fix an error for <code>Layout/HeredocArgumentClosingParenthesis</code> when there is an argument between a heredoc argument and the closing paretheses. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9261">#9261</a>: Fix an incorrect auto-correct for <code>Style/MultilineWhenThen</code> when one line for multiple condidate values of <code>when</code> statement. ([<a href="https://github.com/makicamel">@makicamel</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9258">#9258</a>: Fix calculation of cop department for nested departments. ([<a href="https://github.com/mvz">@mvz</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9277">#9277</a>: Fix <code>Layout/EmptyLineBetweenDefs</code> error with endless method definitions. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9278">#9278</a>: Update <code>Style/MethodDefParentheses</code> to ignore endless method definitions since parentheses are always required. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   </ul>
   <h3>Changes</h3>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9212">#9212</a>: Make <code>Style/RedundantArgument</code> aware of <code>String#chomp</code> and <code>String#chomp!</code>. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/8482">#8482</a>: Allow simple math for <code>Lint/BinaryOperatorWithIdenticalOperands</code> cop. ([<a href="https://github.com/fatkodima">@fatkodima</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9237">#9237</a>: Add <code>IgnoredPatterns</code> configuration to <code>Lint/UnreachableLoop</code> to allow for block methods that share a name with an <code>Enumerable</code> method. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9206">#9206</a>: Allow extensions to disable cop obsoletions. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9262">#9262</a>: Update <code>Style/CollectionMethods</code> to be handle additional arguments and methods that accept a symbol instead of a block. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9235">#9235</a>: Allow <code>--only</code> and <code>--except</code> to be able to properly qualify cops added by require. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9205">#9205</a>: Update <code>Naming/MemoizedInstanceVariableName</code> to handle dynamically defined methods. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9285">#9285</a>: Add <code>AllowPercentLiteralArrayArgument</code> option for <code>Lint/RedundantSplatExpansion</code> to enable the option by default. ([<a href="https://github.com/koic">@koic</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9208">#9208</a>: Use Array#bsearch instead of Array#include? to detect hidden files. ([<a href="https://github.com/dark-panda">@dark-panda</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9228">#9228</a>: Suppress any config warnings for <code>rubocop -V</code>. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/pull/9193">#9193</a>: Add <code>IgnoreLiteralBranches</code> and <code>IgnoreConstantBranches</code> options to <code>Lint/DuplicateBranch</code>. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   </ul>
   <h2>1.6.1 (2020-12-10)</h2>
   <h3>Bug fixes</h3>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/9196">#9196</a>: Fix <code>ConfigObsoletion::ExtractedCop</code> raising errors for loaded features when bundler is not activated. ([<a href="https://github.com/dvandersluis">@dvandersluis</a>][])</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/44270f4d3d04940385d9d03e7adf5eef077df55e"><code>44270f4</code></a> Cut 1.7.0</li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/eca0c877cc35481b2936c4e70b765883da4be0d5"><code>eca0c87</code></a> Update Changelog</li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/7d1deced829b8d6ddede068d9a65993e728477a5"><code>7d1dece</code></a> Add <code>AllowPercentLiteralArrayArgument</code> option to <code>Lint/RedundantSplatExpansion</code></li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/bee3bb53f3ca88e67f9918bf379ba2e3a0841e74"><code>bee3bb5</code></a> Add new <code>Style/HashExcept</code> cop</li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/d160595aa90e73ac0c8997b506e31c66ed4364da"><code>d160595</code></a> Inline and remove inspect_source_file</li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/f57312a803fcfd919574619b70dee15558b5d8ca"><code>f57312a</code></a> Use new expect_offense and expect_correction</li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/8a85e4faa2d6efa26cdc9402b063cecaba4b3014"><code>8a85e4f</code></a> Add <code>InternalAffairs/StyleDetectedApiUse</code></li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/0ebbbe95d450914ad366347dcc862002f66de6ce"><code>0ebbbe9</code></a> Add changelog entry</li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/21a97b6b066f1d46acc70185ad6de572d1ca3625"><code>21a97b6</code></a> [Fix <a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/8938">#8938</a>] Fix <code>--auto-gen-config</code> for <code>Style/SpaceInsideBlockBraces</code></li>
   <li><a href="https://github.com/rubocop-hq/rubocop/commit/bd0131c45fc814d1c8f529c8661c51fa64c9986e"><code>bd0131c</code></a> [Fix <a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop/issues/8938">#8938</a>] Fix <code>--auto-gen-config</code> for <code>Style/SpaceInsideHashLiteralBraces</code></li>
   <li>Additional commits viewable in <a href="https://github.com/rubocop-hq/rubocop/compare/v0.0.0...v1.7.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   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`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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)
   
   
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [avro] dependabot[bot] commented on pull request #1045: Update rubocop requirement from <= 0.81 to <= 1.8 in /lang/ruby

Posted by GitBox <gi...@apache.org>.
dependabot[bot] commented on pull request #1045:
URL: https://github.com/apache/avro/pull/1045#issuecomment-756580855


   Superseded by #1047.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [avro] dependabot[bot] closed pull request #1045: Update rubocop requirement from <= 0.81 to <= 1.8 in /lang/ruby

Posted by GitBox <gi...@apache.org>.
dependabot[bot] closed pull request #1045:
URL: https://github.com/apache/avro/pull/1045


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org