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

build(deps): Bump github.com/cosmos/cosmos-sdk from 0.45.4 to 0.45.5 #1014

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2022

Bumps github.com/cosmos/cosmos-sdk from 0.45.4 to 0.45.5.

Release notes

Sourced from github.com/cosmos/cosmos-sdk's releases.

v0.45.5

Cosmos SDK v0.45.5 Release Notes

This release introduces a few bug fixes and improvements. Notably, it removes the redacted error message, fixes a few bugs in the types package, and indexing of events for failed txs.

See the Cosmos SDK v0.45.5 Changelog for the exhaustive list of all changes.

Full Commit History: cosmos/cosmos-sdk@v0.45.4...v0.45.5

Changelog

Sourced from github.com/cosmos/cosmos-sdk's changelog.

v0.45.5 - 2022-06-09

Improvements

  • (x/feegrant) #11813 Fix pagination total count in AllowancesByGranter query.
  • (errors) #12002 Removed 'redacted' error message from defaultErrEncoder.
  • (ante) #12017 Index ante events for failed tx (backport #12013).
  • #12153 Add a new NewSimulationManagerFromAppModules constructor, to simplify simulation wiring.

Bug Fixes

  • #11796 Handle EOF error case in readLineFromBuf, which allows successful reading of passphrases from STDIN.
  • #11772 Limit types.Dec length to avoid overflow.
  • #10947 Add AllowancesByGranter query to the feegrant module
  • #9639 Check store keys length before accessing them by making sure that key is of length m+1 (for key[n:m])
  • #11983 (x/feegrant, x/authz) rename grants query commands to grants-by-grantee, grants-by-granter cmds.

Improvements

  • #11886 Improve error messages
Commits

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.


Dependabot commands and options

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)

Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.45.4 to 0.45.5.
- [Release notes](https://github.com/cosmos/cosmos-sdk/releases)
- [Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.45.5/CHANGELOG.md)
- [Commits](cosmos/cosmos-sdk@v0.45.4...v0.45.5)

---
updated-dependencies:
- dependency-name: github.com/cosmos/cosmos-sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@toteki
Copy link
Member

toteki commented Jun 15, 2022

--- FAIL: TestMsgAggregateExchangeRateVote (0.00s)
msgs_test.go:127:
Error Trace: msgs_test.go:127
Error: Error "failed to parse exchange rates string cause: decimal '100000000000000000000000000000000000000000000000000000000000000000000000000000.01' out of range; bitLen: got 316, max 315: invalid coins" does not contain "overflow: invalid exchange rate"
Test: TestMsgAggregateExchangeRateVote
Messages: test: 5
FAIL
coverage: 7.4% of statements
FAIL github.com/umee-network/umee/v2/x/oracle/types 0.080s

@adamewozniak Seems odd for a dep update. Thoughts?

@adamewozniak
Copy link
Collaborator

Looks like sdk.Dec allows higher values with this version, maybe we missed a testing backport?
Checking it out

@adamewozniak adamewozniak self-assigned this Jun 15, 2022
@robert-zaremba
Copy link
Member

It's a security fix. cosmos/cosmos-sdk#11772

I can handle this merge.

@codecov-commenter
Copy link

Codecov Report

Merging #1014 (bc27515) into main (bd2244f) will decrease coverage by 0.05%.
The diff coverage is 28.57%.

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1014      +/-   ##
==========================================
- Coverage   43.96%   43.90%   -0.06%     
==========================================
  Files          64       64              
  Lines        8332     8329       -3     
==========================================
- Hits         3663     3657       -6     
- Misses       4414     4416       +2     
- Partials      255      256       +1     
Impacted Files Coverage Δ
x/leverage/keeper/interest.go 76.05% <28.57%> (-2.57%) ⬇️
x/oracle/types/msgs.go 93.81% <0.00%> (-3.10%) ⬇️
x/oracle/types/vote.go 100.00% <0.00%> (+5.00%) ⬆️

@mergify mergify bot merged commit 3eb43ef into main Jun 15, 2022
@mergify mergify bot deleted the dependabot/go_modules/github.com/cosmos/cosmos-sdk-0.45.5 branch June 15, 2022 22:29
mergify bot pushed a commit that referenced this pull request Jun 15, 2022
…1014)

Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.45.4 to 0.45.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/cosmos/cosmos-sdk/releases">github.com/cosmos/cosmos-sdk's releases</a>.</em></p>
<blockquote>
<h2>v0.45.5</h2>
<h1>Cosmos SDK v0.45.5 Release Notes</h1>
<p>This release introduces a few bug fixes and improvements. Notably, it removes
the redacted error message, fixes a few bugs in the <code>types</code> package, and
indexing of events for failed txs.</p>
<p>See the <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.5/CHANGELOG.md">Cosmos SDK v0.45.5 Changelog</a>
for the exhaustive list of all changes.</p>
<p><strong>Full Commit History</strong>: <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.4...v0.45.5">https://github.com/cosmos/cosmos-sdk/compare/v0.45.4...v0.45.5</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.5/CHANGELOG.md">github.com/cosmos/cosmos-sdk's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/cosmos/cosmos-sdk/releases/tag/v0.45.5">v0.45.5</a> - 2022-06-09</h2>
<h3>Improvements</h3>
<ul>
<li>(x/feegrant) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11813">#11813</a> Fix pagination total count in <code>AllowancesByGranter</code> query.</li>
<li>(errors) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/12002">#12002</a> Removed 'redacted' error message from defaultErrEncoder.</li>
<li>(ante) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/12017">#12017</a> Index ante events for failed tx (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12013">#12013</a>).</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/12153">#12153</a> Add a new <code>NewSimulationManagerFromAppModules</code> constructor, to simplify simulation wiring.</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11796">#11796</a> Handle EOF error case in <code>readLineFromBuf</code>, which allows successful reading of passphrases from STDIN.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11772">#11772</a> Limit types.Dec length to avoid overflow.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10947">#10947</a> Add <code>AllowancesByGranter</code> query to the feegrant module</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/9639">#9639</a> Check store keys length before accessing them by making sure that <code>key</code> is of length <code>m+1</code> (for <code>key[n:m]</code>)</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11983">#11983</a> (x/feegrant, x/authz) rename grants query commands to <code>grants-by-grantee</code>, <code>grants-by-granter</code> cmds.</li>
</ul>
<h2>Improvements</h2>
<ul>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11886">#11886</a> Improve error messages</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/a2761bdc6f23500a2b38d398ee2a423f2a5311c0"><code>a2761bd</code></a> chore: prep release notes + cl (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12207">#12207</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/4dd96eba09d54778096fcfb071497ed28cf44b1e"><code>4dd96eb</code></a> Revert &quot;fix: add base account getter (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12154">#12154</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12161">#12161</a>)&quot; (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12213">#12213</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/a3f8a83ec4c516e4c6074bc461163b03dc160bf0"><code>a3f8a83</code></a> chore(types): add MustAccAddressFromBech32 util func (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12201">#12201</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12205">#12205</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/48c2f77a274c0af31ba2d916388f18e239c09a2f"><code>48c2f77</code></a> fix(upgrades): perform no-op if 'from' and 'to' migration version are equal (...</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/95d873faebd19392ec1368653add86e838d286df"><code>95d873f</code></a> chore: remove direct reliance on staking from slashing (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12177">#12177</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12">#12</a>...</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/bec98b55e3656a0b357ce21d1911149ad578232c"><code>bec98b5</code></a> perf: modify DelegatorSharesInvariant for better performance (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12170">#12170</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12179">#12179</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/d721a760d8a94e8f14a2dc8391806718c8c22287"><code>d721a76</code></a> refactor: Simplify SimulationManager setup (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12153">#12153</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12159">#12159</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/008d10da40f91eb9b0b92dfec67b013184b8d67d"><code>008d10d</code></a> fix: add base account getter (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12154">#12154</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12161">#12161</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/057a6ca7e74d684ee15a27bb9bb465c0345f9d2f"><code>057a6ca</code></a> fix: cli <code>grants-by-grantee</code>, <code>grants-by-granter</code> cmds (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11983">#11983</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12">#12</a>...</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/a802a5cf9ca66f95a917a5f5caf45b07e21eee34"><code>a802a5c</code></a> fix: Make rechecking a tx check the sequence number <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12060">#12060</a> (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12062">#12062</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.4...v0.45.5">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/cosmos/cosmos-sdk&package-manager=go_modules&previous-version=0.45.4&new-version=0.45.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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>

(cherry picked from commit 3eb43ef)
adamewozniak pushed a commit that referenced this pull request Jun 16, 2022
…1014) (#1027)

Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.45.4 to 0.45.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/cosmos/cosmos-sdk/releases">github.com/cosmos/cosmos-sdk's releases</a>.</em></p>
<blockquote>
<h2>v0.45.5</h2>
<h1>Cosmos SDK v0.45.5 Release Notes</h1>
<p>This release introduces a few bug fixes and improvements. Notably, it removes
the redacted error message, fixes a few bugs in the <code>types</code> package, and
indexing of events for failed txs.</p>
<p>See the <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.5/CHANGELOG.md">Cosmos SDK v0.45.5 Changelog</a>
for the exhaustive list of all changes.</p>
<p><strong>Full Commit History</strong>: <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.4...v0.45.5">https://github.com/cosmos/cosmos-sdk/compare/v0.45.4...v0.45.5</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.5/CHANGELOG.md">github.com/cosmos/cosmos-sdk's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/cosmos/cosmos-sdk/releases/tag/v0.45.5">v0.45.5</a> - 2022-06-09</h2>
<h3>Improvements</h3>
<ul>
<li>(x/feegrant) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11813">#11813</a> Fix pagination total count in <code>AllowancesByGranter</code> query.</li>
<li>(errors) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/12002">#12002</a> Removed 'redacted' error message from defaultErrEncoder.</li>
<li>(ante) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/12017">#12017</a> Index ante events for failed tx (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12013">#12013</a>).</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/12153">#12153</a> Add a new <code>NewSimulationManagerFromAppModules</code> constructor, to simplify simulation wiring.</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11796">#11796</a> Handle EOF error case in <code>readLineFromBuf</code>, which allows successful reading of passphrases from STDIN.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11772">#11772</a> Limit types.Dec length to avoid overflow.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10947">#10947</a> Add <code>AllowancesByGranter</code> query to the feegrant module</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/9639">#9639</a> Check store keys length before accessing them by making sure that <code>key</code> is of length <code>m+1</code> (for <code>key[n:m]</code>)</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11983">#11983</a> (x/feegrant, x/authz) rename grants query commands to <code>grants-by-grantee</code>, <code>grants-by-granter</code> cmds.</li>
</ul>
<h2>Improvements</h2>
<ul>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11886">#11886</a> Improve error messages</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/a2761bdc6f23500a2b38d398ee2a423f2a5311c0"><code>a2761bd</code></a> chore: prep release notes + cl (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12207">#12207</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/4dd96eba09d54778096fcfb071497ed28cf44b1e"><code>4dd96eb</code></a> Revert &quot;fix: add base account getter (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12154">#12154</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12161">#12161</a>)&quot; (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12213">#12213</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/a3f8a83ec4c516e4c6074bc461163b03dc160bf0"><code>a3f8a83</code></a> chore(types): add MustAccAddressFromBech32 util func (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12201">#12201</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12205">#12205</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/48c2f77a274c0af31ba2d916388f18e239c09a2f"><code>48c2f77</code></a> fix(upgrades): perform no-op if 'from' and 'to' migration version are equal (...</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/95d873faebd19392ec1368653add86e838d286df"><code>95d873f</code></a> chore: remove direct reliance on staking from slashing (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12177">#12177</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12">#12</a>...</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/bec98b55e3656a0b357ce21d1911149ad578232c"><code>bec98b5</code></a> perf: modify DelegatorSharesInvariant for better performance (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12170">#12170</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12179">#12179</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/d721a760d8a94e8f14a2dc8391806718c8c22287"><code>d721a76</code></a> refactor: Simplify SimulationManager setup (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12153">#12153</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12159">#12159</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/008d10da40f91eb9b0b92dfec67b013184b8d67d"><code>008d10d</code></a> fix: add base account getter (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12154">#12154</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12161">#12161</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/057a6ca7e74d684ee15a27bb9bb465c0345f9d2f"><code>057a6ca</code></a> fix: cli <code>grants-by-grantee</code>, <code>grants-by-granter</code> cmds (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11983">#11983</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12">#12</a>...</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/a802a5cf9ca66f95a917a5f5caf45b07e21eee34"><code>a802a5c</code></a> fix: Make rechecking a tx check the sequence number <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12060">#12060</a> (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/12062">#12062</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.4...v0.45.5">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/cosmos/cosmos-sdk&package-manager=go_modules&previous-version=0.45.4&new-version=0.45.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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>

(cherry picked from commit 3eb43ef)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants