<p>Bumps <a href="https://github.com/rubocop-hq/rubocop-performance">rubocop-performance</a> from 1.7.1 to 1.8.0.</p>
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/rubocop-hq/rubocop-performance/releases">rubocop-performance's releases</a>.</em></p>
<blockquote>
<h2>RuboCop Performance 1.8.0</h2>
<h3>New features</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/140" rel="nofollow">#140</a>: Add new <code>Performance/CollectionLiteralInLoop</code> cop. (<a href="https://github.com/fatkodima">@fatkodima</a>)</li>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/137" rel="nofollow">#137</a>: Add new <code>Performance/Sum</code> cop. (<a href="https://github.com/fatkodima">@fatkodima</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/159" rel="nofollow">#159</a>: Fix a false positive for <code>Performance/AncestorsInclude</code> when receiver is a variable. (<a href="https://github.com/koic">@koic</a>)</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/157" rel="nofollow">#157</a>: Extend <code>Performance/Detect</code> cop with check for <code>filter</code> method and <code>Performance/Count</code> cop with checks for <code>find_all</code> and <code>filter</code> methods. (<a href="https://github.com/fatkodima">@fatkodima</a>)</li>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/154" rel="nofollow">#154</a>: Require RuboCop 0.87 or higher. (<a href="https://github.com/koic">@koic</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rubocop-hq/rubocop-performance/blob/master/CHANGELOG.md">rubocop-performance's changelog</a>.</em></p>
<blockquote>
<h2>1.8.0 (2020-09-04)</h2>
<h3>New features</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/140" rel="nofollow">#140</a>: Add new <code>Performance/CollectionLiteralInLoop</code> cop. ([<a href="https://github.com/fatkodima">@fatkodima</a>][])</li>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/137" rel="nofollow">#137</a>: Add new <code>Performance/Sum</code> cop. ([<a href="https://github.com/fatkodima">@fatkodima</a>][])</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/159" rel="nofollow">#159</a>: Fix a false positive for <code>Performance/AncestorsInclude</code> when receiver is a variable. ([<a href="https://github.com/koic">@koic</a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/157" rel="nofollow">#157</a>: Extend <code>Performance/Detect</code> cop with check for <code>filter</code> method and <code>Performance/Count</code> cop with checks for <code>find_all</code> and <code>filter</code> methods. ([<a href="https://github.com/fatkodima">@fatkodima</a>][])</li>
<li><a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/pull/154" rel="nofollow">#154</a>: Require RuboCop 0.87 or higher. ([<a href="https://github.com/koic">@koic</a>][])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/caef1c158089d41b5ae13f9462bc12b1e7433cd5"><code>caef1c1</code></a> Cut 1.8.0</li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/8bf09deca7413098b2476c922797578cb734f8bb"><code>8bf09de</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/issues/157" rel="nofollow">#157</a> from fatkodima/add-filter-to-detect-and-count-cops</li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/5792ef05cf333253d87432855e33af7d687d74ca"><code>5792ef0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/issues/160" rel="nofollow">#160</a> from koic/fix_false_positive_for_performance_ancestor...</li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/e973c7ceb7323039dc3217516d5418426db1ee30"><code>e973c7c</code></a> Use <code>Registry.global</code> instead of <code>Cop.registry</code></li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/e69d5867af278d317c5e1515b33cd046da2419f3"><code>e69d586</code></a> [Fix <a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/issues/159" rel="nofollow">#159</a>] Fix a false positive for <code>Performance/AncestorsInclude</code></li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/bab73a6a62f3dcec7b04a97c7ba13c63e7b2619f"><code>bab73a6</code></a> Extend <code>Performance/Detect</code> cop with check for <code>filter</code> method and `Performan...</li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/9fbed458c5e72740aa070a98a884392c3af6411e"><code>9fbed45</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/issues/156" rel="nofollow">#156</a> from koic/add_documentation_checks_on_ci</li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/8fb7cf0b523f575ea54561087f383fa4f9673b89"><code>8fb7cf0</code></a> Add documentation checks on CI</li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/30f827fc2bae58ee3ba38b064d21a8b811a77495"><code>30f827f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rubocop-hq/rubocop-performance/issues/155" rel="nofollow">#155</a> from koic/use_cop_base_api_for_performance_department</li>
<li><a href="https://github.com/rubocop-hq/rubocop-performance/commit/bb8017f9efd9906f26c389cf9e6ccaa9dbcfd4a2"><code>bb8017f</code></a> Use <code>Cop::Base</code> API for <code>Performance</code> department</li>
<li>Additional commits viewable in <a href="https://github.com/rubocop-hq/rubocop-performance/compare/v1.7.1...v1.8.0">compare view</a></li>
</ul>
</details>
<br>
<p><a href="https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates"><img src="https://camo.githubusercontent.com/92b7419645e82c0609c4fb280c31cce245820638/68747470733a2f2f646570656e6461626f742d6261646765732e6769746875626170702e636f6d2f6261646765732f636f6d7061746962696c6974795f73636f72653f646570656e64656e63792d6e616d653d7275626f636f702d706572666f726d616e6365267061636b6167652d6d616e616765723d62756e646c65722670726576696f75732d76657273696f6e3d312e372e31266e65772d76657273696f6e3d312e382e30" alt="Dependabot compatibility score" data-canonical-src="https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rubocop-performance&package-manager=bundler&previous-version=1.7.1&new-version=1.8.0" style="max-width:100%;"></a></p>
<p>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 <code>@dependabot rebase</code>.</p>
<hr>
<details>
<summary>Dependabot commands and options</summary>
<br>
<p>You can trigger Dependabot actions by commenting on this PR:</p>
<ul>
<li><code>@dependabot rebase</code> will rebase this PR</li>
<li><code>@dependabot recreate</code> will recreate this PR, overwriting any edits that have been made to it</li>
<li><code>@dependabot merge</code> will merge this PR after your CI passes on it</li>
<li><code>@dependabot squash and merge</code> will squash and merge this PR after your CI passes on it</li>
<li><code>@dependabot cancel merge</code> will cancel a previously requested merge and block automerging</li>
<li><code>@dependabot reopen</code> will reopen this PR if it is closed</li>
<li><code>@dependabot close</code> will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually</li>
<li><code>@dependabot ignore this major version</code> will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)</li>
<li><code>@dependabot ignore this minor version</code> will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)</li>
<li><code>@dependabot ignore this dependency</code> will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)</li>
</ul>
</details>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>  <a href='https://github.com/openstreetmap/openstreetmap-website/pull/2818'>https://github.com/openstreetmap/openstreetmap-website/pull/2818</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Bump rubocop-performance from 1.7.1 to 1.8.0</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/openstreetmap/openstreetmap-website/pull/2818/files#diff-e79a60dc6b85309ae70a6ea8261eaf95">Gemfile.lock</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/openstreetmap/openstreetmap-website/pull/2818.patch'>https://github.com/openstreetmap/openstreetmap-website/pull/2818.patch</a></li>
  <li><a href='https://github.com/openstreetmap/openstreetmap-website/pull/2818.diff'>https://github.com/openstreetmap/openstreetmap-website/pull/2818.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/openstreetmap/openstreetmap-website/pull/2818">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AAK2OLJOZM534DDI2KU7IWTSERSOHANCNFSM4Q5OP65A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AAK2OLKWPUKVQNP7KRVKSV3SERSOHA5CNFSM4Q5OP65KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4KLIMUVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/openstreetmap/openstreetmap-website/pull/2818",
"url": "https://github.com/openstreetmap/openstreetmap-website/pull/2818",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>