Skip to content

Commit

Permalink
build(deps): Bump github.com/cosmos/cosmos-sdk from 0.45.1 to 0.45.2 …
Browse files Browse the repository at this point in the history
…in /price-feeder (backport #757) (#758)

* build(deps): Bump github.com/cosmos/cosmos-sdk from 0.45.1 to 0.45.2 in /price-feeder (#757)

Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.45.1 to 0.45.2.
<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.2</h2>
<h1>Cosmos SDK v0.45.2 Release Notes</h1>
<p>This release introduces bug fixes and improvements on the Cosmos SDK v0.45 series:</p>
<p>Highlights:</p>
<ul>
<li>Add hooks to allow modules to add things to state-sync. Please see [PR <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/10961">#10961</a>](<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10961">cosmos/cosmos-sdk#10961</a>) for more information.</li>
<li>Register <a href="https://eips.ethereum.org/EIPS/eip-191"><code>EIP191</code></a> as an available <code>SignMode</code> for chains to use. Please note that in v0.45.2, the Cosmos SDK does <strong>not</strong> support EIP-191 out of the box. But if your chain wants to integrate EIP-191, it's possible to do so by passing a <code>TxConfig</code> with your own sign mode handler which implements EIP-191, using the new provided <code>authtx.NewTxConfigWithHandler</code> function.</li>
<li>Add a new <code>rollback</code> CLI command to perform a state rollback by one block. Read more in [PR <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11179">#11179</a>](<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11179">cosmos/cosmos-sdk#11179</a>).</li>
<li>Some new queries were added:
<ul>
<li>x/authz: <code>GrantsByGrantee</code> to query grants by grantee,</li>
<li>x/bank: <code>SpendableBalances</code> to query an account's total (paginated) spendable balances,</li>
<li>TxService: <code>GetBlockWithTxs</code> to fetch a block along with all its transactions, decoded.</li>
</ul>
</li>
<li>Some bug fixes, such as:
<ul>
<li>Update the prune <code>everything</code> strategy to store the last two heights.</li>
<li>Fix data race in store trace component.</li>
<li>Fix cgo secp signature verification and update libscep256k1 library.</li>
</ul>
</li>
</ul>
<p>See the <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.2/CHANGELOG.md">Cosmos SDK v0.45.2 Changelog</a> for the exhaustive list of all changes and check other fixes in the 0.45.x release series.</p>
<p><strong>Full Commit History</strong>: <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.1...v0.45.2">https://github.com/cosmos/cosmos-sdk/compare/v0.45.1...v0.45.2</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.2/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.2">v0.45.2</a> - 2022-04-05</h2>
<h3>Features</h3>
<ul>
<li>(tx) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11533">#\11533</a> Register <a href="https://eips.ethereum.org/EIPS/eip-191"><code>EIP191</code></a> as an available <code>SignMode</code> for chains to use.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11430">#11430</a> Introduce a new <code>grpc-only</code> flag, such that when enabled, will start the node in a query-only mode. Note, gRPC MUST be enabled with this flag.</li>
<li>(x/bank) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11417">#11417</a> Introduce a new <code>SpendableBalances</code> gRPC query that retrieves an account's total (paginated) spendable balances.</li>
<li>(x/bank) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10771">#10771</a> Add safety check on bank module perms to allow module-specific mint restrictions (e.g. only minting a certain denom).</li>
<li>(x/bank) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10771">#10771</a> Add <code>bank.BankKeeper.WithMintCoinsRestriction</code> function to restrict use of bank <code>MintCoins</code> usage. This function is not on the bank <code>Keeper</code> interface, so it's not API-breaking, but only additive on the keeper implementation.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10944">#10944</a> <code>x/authz</code> add all grants by grantee query</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11124">#11124</a> Add <code>GetAllVersions</code> to application store</li>
<li>(x/auth) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10880">#10880</a> Added a new query to the tx query service that returns a block with transactions fully decoded.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11314">#11314</a> Add state rollback command.</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11355">#11354</a> Added missing pagination flag for <code>bank q total</code> query.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11197">#11197</a> Signing with multisig now works with multisig address which is not in the keyring.</li>
<li>(client) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11283">#11283</a> Support multiple keys for tx simulation and setting automatic gas for txs.</li>
<li>(store) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11177">#11177</a> Update the prune <code>everything</code> strategy to store the last two heights.</li>
<li>(store) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11117">#11117</a> Fix data race in store trace component</li>
<li>(x/authz) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11252">#11252</a> Allow insufficient funds error for authz simulation</li>
<li>(crypto) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11298">#11298</a> Fix cgo secp signature verification and update libscep256k1 library.</li>
</ul>
<h3>Improvements</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/9576">#9576</a> Add debug error message to query result when enabled</li>
<li>(types) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11200">#11200</a> Added <code>Min()</code> and <code>Max()</code> operations on sdk.Coins.</li>
<li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11267">#11267</a> Add hooks to allow app modules to add things to state-sync (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/10961">#10961</a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/9494992bd0ea487ef56984167b355e5ac770c506"><code>9494992</code></a> chore: v0.45.2 Release Notes (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11546">#11546</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/7f8cbfddb44ebdfc42d20b75261de256e4e48924"><code>7f8cbfd</code></a> feat: EIP191 sign mode (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11533">#11533</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11545">#11545</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/f43228dee8afc4e5d24413e34249fe50233b89fe"><code>f43228d</code></a> feat: add grants by grantee authz query (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/10944">#10944</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11523">#11523</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/344fd73b0b811fe99b2201623b5036e8e08f4330"><code>344fd73</code></a> feat: grpc-only mode (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11430">#11430</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11460">#11460</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/7997b263bca6bdf831a8b39231febe4e9aa1c06e"><code>7997b26</code></a> feat: add support for spendable balances gRPC query (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11417">#11417</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11459">#11459</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/160a103bd92395c0dbb8bbcec327d5222766463c"><code>160a103</code></a> fix: Update query.go to include pagination for bank q totals (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11355">#11355</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11375">#11375</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/69f227ec8ad58fc62b05dccd5a1dad1341b3c05c"><code>69f227e</code></a> fix: multisig works with only multisig name as argument, not its address (bac...</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/a4644a3797e760555e8bbf67c92536fb4e8485fa"><code>a4644a3</code></a> fix: cgosecp256k1 verification (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11298">#11298</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11360">#11360</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/b073f35f822788318ac43c490006f306dd235246"><code>b073f35</code></a> fix: remove hardcoded pubkey from tx simulation (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11282">#11282</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11288">#11288</a>)</li>
<li><a href="https://github.com/cosmos/cosmos-sdk/commit/11bda928d8151e995c46d299274bc18db80b5c40"><code>11bda92</code></a> fix(types): use correct bit length constant for sdk.Dec (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11332">#11332</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/1">#1</a>...</li>
<li>Additional commits viewable in <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.1...v0.45.2">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.1&new-version=0.45.2)](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 d2ae020)

# Conflicts:
#	price-feeder/go.sum

* go mod tidy

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Adam Moser <63419657+toteki@users.noreply.github.com>
  • Loading branch information
3 people committed Apr 6, 2022
1 parent 87dbfaa commit a9ee7e9
Show file tree
Hide file tree
Showing 2 changed files with 222 additions and 19 deletions.
15 changes: 8 additions & 7 deletions price-feeder/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.17
require (
github.com/BurntSushi/toml v1.1.0
github.com/armon/go-metrics v0.3.10
github.com/cosmos/cosmos-sdk v0.45.1
github.com/cosmos/cosmos-sdk v0.45.2
github.com/go-playground/validator/v10 v10.10.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
Expand All @@ -17,7 +17,7 @@ require (
github.com/sirkon/goproxy v1.4.8
github.com/spf13/cobra v1.4.0
github.com/stretchr/testify v1.7.1
github.com/tendermint/tendermint v0.34.14
github.com/tendermint/tendermint v0.34.16
github.com/umee-network/umee v0.8.1-0.20220330155329-d9903f72d511
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
google.golang.org/grpc v1.44.0
Expand All @@ -34,7 +34,7 @@ require (
github.com/99designs/keyring v1.1.6 // indirect
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
github.com/DataDog/zstd v1.4.5 // indirect
github.com/Workiva/go-datastructures v1.0.52 // indirect
github.com/Workiva/go-datastructures v1.0.53 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/btcsuite/btcd v0.22.0-beta // indirect
Expand All @@ -60,7 +60,8 @@ require (
github.com/ethereum/go-ethereum v1.10.16 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-kit/kit v0.10.0 // indirect
github.com/go-kit/kit v0.12.0 // indirect
github.com/go-kit/log v0.2.0 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
Expand All @@ -86,15 +87,15 @@ require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jmhodges/levigo v1.0.0 // indirect
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect
github.com/klauspost/compress v1.13.5 // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/lib/pq v1.10.4 // indirect
github.com/libp2p/go-buffer-pool v0.0.2 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
github.com/minio/highwayhash v1.0.1 // indirect
github.com/minio/highwayhash v1.0.2 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/mtibben/percent v0.2.1 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
Expand Down Expand Up @@ -126,7 +127,7 @@ require (
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/ini.v1 v1.66.2 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
Expand Down

0 comments on commit a9ee7e9

Please sign in to comment.