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 the go_modules group across 2 directories with 9 updates #1053

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 6, 2024

Bumps the go_modules group with 7 updates in the / directory:

Package From To
github.com/cometbft/cometbft 0.38.5 0.38.6
github.com/cosmos/cosmos-sdk 0.50.5 0.50.6
github.com/cosmos/ibc-go/v8 8.1.0 8.2.0
github.com/ethereum/go-ethereum 1.13.14 1.13.15
google.golang.org/protobuf 1.33.0 1.34.1
github.com/btcsuite/btcd 0.23.0 0.24.0
github.com/hashicorp/go-getter 1.7.3 1.7.4

Bumps the go_modules group with 7 updates in the /interchaintest directory:

Package From To
github.com/cometbft/cometbft 0.38.5 0.38.6
github.com/cosmos/cosmos-sdk 0.50.4 0.50.5
github.com/cosmos/ibc-go/v8 8.1.0 8.2.0
github.com/ethereum/go-ethereum 1.13.8 1.13.15
github.com/hashicorp/go-getter 1.7.3 1.7.4
golang.org/x/net 0.21.0 0.23.0
github.com/docker/docker 24.0.7+incompatible 24.0.9+incompatible

Updates github.com/cometbft/cometbft from 0.38.5 to 0.38.6

Release notes

Sourced from github.com/cometbft/cometbft's releases.

v0.38.6

See the CHANGELOG for this release.

Changelog

Sourced from github.com/cometbft/cometbft's changelog.

v0.38.6

March 12, 2024

This release fixes a security bug in the light client. It also introduces many improvements to the block sync in collaboration with the Osmosis team.

BUG FIXES

  • [privval] Retry accepting a connection (#2047)
  • [state] Fix rollback to a specific height (#2136)

FEATURES

  • [e2e] Add block_max_bytes option to the manifest file. (#2362)

IMPROVEMENTS

  • [blocksync] Avoid double-calling types.BlockFromProto for performance reasons (#2016)
  • [e2e] Add manifest option load_max_txs to limit the number of transactions generated by the load command. (#2094)
  • [jsonrpc] enable HTTP basic auth in websocket client (#2434)
  • [blocksync] make the max number of downloaded blocks dynamic. Previously it was a const 600. Now it's peersCount * maxPendingRequestsPerPeer (20) #2467
  • [blocksync] Request a block from peer B if we are approaching pool's height (less than 50 blocks) and the current peer A is slow in sending us the block #2475
  • [blocksync] Request the block N from peer B immediately after getting NoBlockResponse from peer A #2475
  • [blocksync] Sort peers by download rate (the fastest peer is picked first) #2475
Commits
  • 1519562 Release v0.38.6 (#2592)
  • 9db2930 fix(blocksync): use timer instead of time.After (backport #2584) (#2587)
  • 6cf6978 feat(blocksync): sort peers by download rate & multiple requests for closer b...
  • 6d606ce feat(blocksync): set the max number of (concurrently) downloaded blocks (back...
  • d27a96e build(deps): Bump docker/build-push-action from 5.1.0 to 5.2.0 (#2567)
  • 2a10503 build(deps): Bump bufbuild/buf-setup-action from 1.29.0 to 1.30.0 (#2566)
  • f356b79 spec(abci): fixes the spec to inform about the presence of invalid extensions...
  • 6ddf85b build(deps): Bump docker/setup-buildx-action from 3.0.0 to 3.1.0 (#2509)
  • 99c1816 ci: check metrics generation in CI checks (backport #2483) (#2485)
  • 91413e6 docs(changelog): add missing entry for #2136 (backport #2459) (#2464)
  • Additional commits viewable in compare view

Updates github.com/cosmos/cosmos-sdk from 0.50.5 to 0.50.6

Release notes

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

v0.50.6

Cosmos SDK v0.50.6 Release Notes

💬 Release Discussion

🚀 Highlights

For this month patch release of the v0.50.x line, a few features and improvements were added to the SDK.

Notably, we added and fixed the following:

  • Add start customizability to start command options. Customize how an application starts with the new StartCommandHandler field in server.StartCmdOptions struct.
  • Fixing GHSA-4j93-fm92-rp4m in x/feegrant and x/authz modules. The upgrade instuctions were provided in the v0.50.4 release notes.

📝 Changelog

Check out the changelog for an exhaustive list of changes, or compare changes from the last release.

Refer to the upgrading guide when migrating from v0.47.x to v0.50.1. Note, that the next SDK release, v0.51, will not include x/params migration, when migrating from < v0.47, v0.50.x or v0.47.x, is a mandatory migration.

Changelog

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

v0.50.6 - 2024-04-22

Features

  • (types) #19759 Align SignerExtractionAdapter in PriorityNonceMempool Remove.
  • (client) #19870 Add new query command wait-tx. Alias event-query-tx-for to wait-tx for backward compatibility.

Improvements

  • (telemetry) #19903 Conditionally emit metrics based on enablement.
    • Introduction of Now Function: Added a new function called Now to the telemetry package. It returns the current system time if telemetry is enabled, or a zero time if telemetry is not enabled.
    • Atomic Global Variable: Implemented an atomic global variable to manage the state of telemetry's enablement. This ensures thread safety for the telemetry state.
    • Conditional Telemetry Emission: All telemetry functions have been updated to emit metrics only when telemetry is enabled. They perform a check with isTelemetryEnabled() and return early if telemetry is disabled, minimizing unnecessary operations and overhead.
  • (deps) #19810 Upgrade prometheus version and fix API breaking change due to prometheus bump.
  • (deps) #19810 Bump cosmossdk.io/store to v1.1.0.
  • (server) #19884 Add start customizability to start command options.
  • (x/gov) #19853 Emit depositor in EventTypeProposalDeposit.
  • (x/gov) #19844 Emit the proposer of governance proposals.
  • (baseapp) #19616 Don't share gas meter in tx execution.

Bug Fixes

  • (x/authz) #20114 Follow up of GHSA-4j93-fm92-rp4m for x/authz.
  • (crypto) #19691 Fix tx sign doesn't throw an error when incorrect Ledger is used.
  • (baseapp) #19970 Fix default config values to use no-op mempool as default.
  • (crypto) #20027 secp256r1 keys now implement gogoproto's customtype interface.
  • (x/bank) #20028 Align query with multi denoms for send-enabled.
Commits
  • c4d9a49 chore: update v0.50.6 release notes (#20124)
  • fcb9d84 fix(x/authz,x/feegrant): check blocked address (#20102)
  • 0a682f7 fix: use timestamp for sim log file name (backport #20108) (#20111)
  • 4bd0e02 chore: prepare v0.50.6 (#19998)
  • 2a32f42 feat(client/v2): implement version filtering using annotation (backport #2008...
  • a2abf1a build(deps): Bump github.com/cosmos/cosmos-proto from 1.0.0-beta.4 to 1.0.0-b...
  • 49c3ae6 fix: secp256r1 json missing quotes (backport #20060) (#20069)
  • 9941498 fix(baseapp): don't share global gas meter in tx execution (backport #19616) ...
  • dafcc78 feat(x/bank): support depinject for send restrictions (backport #20014) (#20024)
  • d6a0fa1 build(deps): Bump cosmossdk.io/x/tx from 0.13.1 to 0.13.2 (#20042)
  • Additional commits viewable in compare view

Updates github.com/cosmos/ibc-go/v8 from 8.1.0 to 8.2.0

Release notes

Sourced from github.com/cosmos/ibc-go/v8's releases.

v8.2.0

This release includes a fix for the ASA-2024-007 security advisory. Credits to Maxwell Dulin (@​mdulin2) at Asymmetric Research for the discovery and disclosure via our bug bounty program.

Please note that this release, as indicated in our release versioning policy, is state machine breaking and requires a coordinated upgrade.

Please see the v8.2.0 changelog for the full set of changes included in this release. Other relevant changes are:

dependencies

  • Cosmos SDK has been bumped to v0.50.5.

To learn more about ibc-go versioning, please read our RELEASES.md.

IMPORTANT: Please read the migration guides for any versions of ibc-go that you might be going through when upgrading to this version. For example: if you upgrade from the IBC module contained in the Cosmos SDK 0.42.0 to SDK v0.50.5 and ibc-go v8.2.0, please follow:

  1. The migration from SDK 0.41.x or 0.42.x to the IBC module in the ibc-go repository based on the SDK v0.44.x.
  2. The migration from ibc-go v1 to v2.
  3. The migration from ibc-go v2 to v3.
  4. The migration from ibc-go v3 to v4.
  5. The migration from ibc-go v4 to v5.
  6. The migration from ibc-go v5 to v6.
  7. The migration from ibc-go v6 to v7.
  8. The migration from ibc-go v7 to v7.1.
  9. The migration from ibc-go v7.2 to v7.3.
  10. The migration from ibc-go v7 to v8.
  11. The migration from ibc-go v8 to v8.1.

v8.1.1

UPDATES


This release only adds the proto files for the 08-wasm module, so that this release can be imported in ibc-proto-rs. See #5988 for more details.


To learn more about ibc-go versioning, please read our RELEASES.md.

IMPORTANT: Please read the migration guides for any versions of ibc-go that you might be going through when upgrading to this version. For example: if you upgrade from the IBC module contained in the Cosmos SDK 0.42.0 to SDK v0.50.3 and ibc-go v8.1.1, please follow:

  1. The migration from SDK 0.41.x or 0.42.x to the IBC module in the ibc-go repository based on the SDK v0.44.x.
  2. The migration from ibc-go v1 to v2.
  3. The migration from ibc-go v2 to v3.
  4. The migration from ibc-go v3 to v4.
  5. The migration from ibc-go v4 to v5.
  6. The migration from ibc-go v5 to v6.

... (truncated)

Changelog

Sourced from github.com/cosmos/ibc-go/v8's changelog.

v8.2.0 - 2024-04-05

Dependencies

  • #5975 Bump Cosmos SDK to v0.50.5.

Improvements

  • (proto) #5987 Add wasm proto files.
Commits

Updates github.com/ethereum/go-ethereum from 1.13.14 to 1.13.15

Release notes

Sourced from github.com/ethereum/go-ethereum's releases.

Ontamalca (v1.13.15)

Geth v1.13.15 is a maintenance-release that contains some fixes mainly to avoid snapsync-related data-corruption.

We recommend all users to upgrade to v1.13.15 as soon as possible.


As with all our previous releases, you can find the:

Commits
  • c5ba367 params: release Geth v 1.13.15
  • 35e0525 core, eth/protocols/snap, trie: fix cause for snap-sync corruption, implement...
  • 7bcb553 eth/filters: enforce topic-limit early on filter criterias (#29535)
  • e343ddf core/rawdb: add sanity-limit to header accessor (#29534)
  • 5dcf503 eth/protocols/snap: skip retrieval for completed storages (#29378)
  • See full diff in compare view

Updates google.golang.org/protobuf from 1.33.0 to 1.34.1

Updates github.com/btcsuite/btcd from 0.23.0 to 0.24.0

Release notes

Sourced from github.com/btcsuite/btcd's releases.

btcd v0.24.0

This release is a major release that includes several general bug fixes, security bug fixes (please update!), and also a series of performance improvements that dramatically reduce the time for initial block download from ~45 hours+ to around 6 hours! With this release,btcd now also supports BIP 155 and has gained support for pruning (--prune=MiB).

Verifying the Release

In order to verify the release, you'll need to have gpg or gpg2 installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import the keys that have signed this release if you haven't done so already:

curl https://raw.githubusercontent.com/lightningnetwork/lnd/master/scripts/keys/roasbeef.asc | gpg --import

Once you have the required PGP keys, you can verify the release (assuming manifest-roasbeef-v0.24.0.sig and manifest-v0.24.0.txt are in the current directory) with:

gpg --verify manifest-roasbeef-v0.24.0.sig manifest-v0.24.0.txt

You should see the following if the verification was successful:

gpg: Signature made Sat Dec 30 17:11:22 2023 PST
gpg:                using RSA key 60A1FA7DA5BFF08BDCBBE7903BBD59E99B280306
gpg: Good signature from "Olaoluwa Osuntokun <laolu32@gmail.com>" [ultimate]

That will verify the signature of the manifest file, which ensures integrity and authenticity of the archive you've downloaded locally containing the binaries. Next, depending on your operating system, you should then re-compute the sha256 hash of the archive with shasum -a 256 <filename>, compare it with the corresponding one in the manifest file, and ensure they match exactly.

What's Changed

... (truncated)

Commits
  • b1b9420 Merge pull request #2082 from btcsuite/btcd-24
  • 4ec8f01 rpcclient: fix race condition in doDisconnect
  • 8d2ab63 build: bump version to btcd v0.24
  • 3c24785 chaincfg: update mainnet block hashes
  • bf23715 btcd: add SECURITY.md
  • d64de4a build: update to btcutil v1.1.5
  • 16684f6 Merge pull request #2073 from Roasbeef/wire-opts
  • 790c570 Merge pull request #2081 from Roasbeef/dont-serialize-tx-for-txhash
  • b0e9636 wire: consistently use defer for returning scratch buffers
  • e102a81 btcutil: add benchmarks for Hash + WitnessHash
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-getter from 1.7.3 to 1.7.4

Release notes

Sourced from github.com/hashicorp/go-getter's releases.

v1.7.4

What's Changed

Full Changelog: hashicorp/go-getter@v1.7.3...v1.7.4

Commits

Updates golang.org/x/net from 0.22.0 to 0.24.0

Commits
  • c48da13 http2: fix TestServerContinuationFlood flakes
  • 762b58d http2: fix tipos in comment
  • ba87210 http2: close connections when receiving too many headers
  • ebc8168 all: fix some typos
  • 3678185 http2: make TestCanonicalHeaderCacheGrowth faster
  • 448c44f http2: remove clientTester
  • c7877ac http2: convert the remaining clientTester tests to testClientConn
  • d8870b0 http2: use synthetic time in TestIdleConnTimeout
  • d73acff http2: only set up deadline when Server.IdleTimeout is positive
  • 89f602b http2: validate client/outgoing trailers
  • Additional commits viewable in compare view

Updates github.com/cometbft/cometbft from 0.38.5 to 0.38.6

Release notes

Sourced from github.com/cometbft/cometbft's releases.

v0.38.6

See the CHANGELOG for this release.

Changelog

Sourced from github.com/cometbft/cometbft's changelog.

v0.38.6

March 12, 2024

This release fixes a security bug in the light client. It also introduces many improvements to the block sync in collaboration with the Osmosis team.

BUG FIXES

  • [privval] Retry accepting a connection (#2047)
  • [state] Fix rollback to a specific height (#2136)

FEATURES

  • [e2e] Add block_max_bytes option to the manifest file. (#2362)

IMPROVEMENTS

  • [blocksync] Avoid double-calling types.BlockFromProto for performance reasons (#2016)
  • [e2e] Add manifest option load_max_txs to limit the number of transactions generated by the load command. (#2094)
  • [jsonrpc] enable HTTP basic auth in websocket client (#2434)
  • [blocksync] make the max number of downloaded blocks dynamic. Previously it was a const 600. Now it's peersCount * maxPendingRequestsPerPeer (20) #2467
  • [blocksync] Request a block from peer B if we are approaching pool's height (less than 50 blocks) and the current peer A is slow in sending us the block #2475
  • [blocksync] Request the block N from peer B immediately after getting NoBlockResponse from peer A #2475
  • [blocksync] Sort peers by download rate (the fastest peer is picked first) #2475
Commits
  • 1519562 Release v0.38.6 (#2592)
  • 9db2930 fix(blocksync): use timer instead of time.After (backport #2584) (#2587)
  • 6cf6978 feat(blocksync): sort peers by download rate & multiple requests for closer b...
  • 6d606ce feat(blocksync): set the max number of (concurrently) downloaded blocks (back...
  • d27a96e build(deps): Bump docker/build-push-action from 5.1.0 to 5.2.0 (#2567)
  • 2a10503 build(deps): Bump bufbuild/buf-setup-action from 1.29.0 to 1.30.0 (#2566)
  • f356b79 spec(abci): fixes the spec to inform about the presence of invalid extensions...
  • 6ddf85b build(deps): Bump docker/setup-buildx-action from 3.0.0 to 3.1.0 (#2509)
  • 99c1816 ci: check metrics generation in CI checks (backport #2483) (#2485)
  • 91413e6 docs(changelog): add missing entry for #2136 (backport #2459) (#2464)
  • Additional commits viewable in compare view

Updates github.com/cosmos/cosmos-sdk from 0.50.4 to 0.50.5

Release notes

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

v0.50.6

Cosmos SDK v0.50.6 Release Notes

💬 Release Discussion

🚀 Highlights

For this month patch release of the v0.50.x line, a few features and improvements were added to the SDK.

Notably, we added and fixed the following:

  • Add start customizability to start command options. Customize how an application starts with the new StartCommandHandler field in server.StartCmdOptions struct.
  • Fixing GHSA-4j93-fm92-rp4m in x/feegrant and x/authz modules. The upgrade instuctions were provided in the v0.50.4 release notes.

📝 Changelog

Check out the changelog for an exhaustive list of changes, or compare changes from the last release.

Refer to the upgrading guide when migrating from v0.47.x to v0.50.1. Note, that the next SDK release, v0.51, will not include x/params migration, when migrating from < v0.47, v0.50.x or v0.47.x, is a mandatory migration.

Changelog

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

v0.50.6 - 2024-04-22

Features

  • (types) #19759 Align SignerExtractionAdapter in PriorityNonceMempool Remove.
  • (client) #19870 Add new query command wait-tx. Alias event-query-tx-for to wait-tx for backward compatibility.

Improvements

  • (telemetry) #19903 Conditionally emit metrics based on enablement.
    • Introduction of Now Function: Added a new function called Now to the telemetry package. It returns the current system time if telemetry is enabled, or a zero time if telemetry is not enabled.
    • Atomic Global Variable: Implemented an atomic global variable to manage the state of telemetry's enablement. This ensures thread safety for the telemetry state.
    • Conditional Telemetry Emission: All telemetry functions have been updated to emit metrics only when telemetry is enabled. They perform a check with isTelemetryEnabled() and return early if telemetry is disabled, minimizing unnecessary operations and overhead.
  • (deps) #19810 Upgrade prometheus version and fix API breaking change due to prometheus bump.
  • (deps) #19810 Bump cosmossdk.io/store to v1.1.0.
  • (server) #19884 Add start customizability to start command options.
  • (x/gov) #19853 Emit depositor in EventTypeProposalDeposit.
  • (x/gov) #19844 Emit the proposer of governance proposals.
  • (baseapp) #19616 Don't share gas meter in tx execution.

Bug Fixes

  • (x/authz) #20114 Follow up of GHSA-4j93-fm92-rp4m for x/authz.
  • (crypto) #19691 Fix tx sign doesn't throw an error when incorrect Ledger is used.
  • (baseapp) #19970 Fix default config values to use no-op mempool as default.
  • (crypto) #20027 secp256r1 keys now implement gogoproto's customtype interface.
  • (x/bank) #20028 Align query with multi denoms for send-enabled.
Commits
  • c4d9a49 chore: update v0.50.6 release notes (#20124)
  • fcb9d84 fix(x/authz,x/feegrant): check blocked address (#20102)
  • 0a682f7 fix: use timestamp for sim log file name (backport #20108) (#20111)
  • 4bd0e02 chore: prepare v0.50.6 (#19998)
  • 2a32f42 feat(client/v2): implement version filtering using annotation (backport #2008...
  • a2abf1a build(deps): Bump github.com/cosmos/cosmos-proto from 1.0.0-beta.4 to 1.0.0-b...
  • 49c3ae6 fix: secp256r1 json missing quotes (backport #20060) (#20069)
  • 9941498 fix(baseapp): don't share global gas meter in tx execution (backport #19616) ...
  • dafcc78 feat(x/bank): support depinject for send restrictions (backport #20014) (#20024)
  • d6a0fa1 build(deps): Bump cosmossdk.io/x/tx from 0.13.1 to 0.13.2 (#20042)
  • Additional commits viewable in compare view

Updates github.com/cosmos/ibc-go/v8 from 8.1.0 to 8.2.0

Release notes

Sourced from github.com/cosmos/ibc-go/v8's releases.

v8.2.0

This release includes a fix for the ASA-2024-007 security advisory. Credits to Maxwell Dulin (@​mdulin2) at Asymmetric Research for the discovery and disclosure via our bug bounty program.

Please note that this release, as indicated in our release versioning policy, is state machine breaking and requires a coordinated upgrade.

Please see the v8.2.0 changelog for the full set of changes included in this release. Other relevant changes are:

dependencies

  • Cosmos SDK has been bumped to v0.50.5.

To learn more about ibc-go versioning, please read our RELEASES.md.

IMPORTANT: Please read the migration guides for any versions of ibc-go that you might be going through when upgrading to this version. For example: if you upgrade from the IBC module contained in the Cosmos SDK 0.42.0 to SDK v0.50.5 and ibc-go v8.2.0, please follow:

  1. The migration from SDK 0.41.x or 0.42.x to the IBC module in the ibc-go repository based on the SDK v0.44.x.
  2. The migration from ibc-go v1 to v2.
  3. The migration from ibc-go v2 to v3.
  4. The migration from ibc-go v3 to v4.
  5. The migration from ibc-go v4 to v5.
  6. The migration from ibc-go v5 to v6.
  7. The migration from ibc-go v6 to v7.
  8. The migration from ibc-go v7 to v7.1.
  9. The migration from ibc-go v7.2 to v7.3.
  10. The migration from ibc-go v7 to v8.
  11. The migration from ibc-go v8 to v8.1.

v8.1.1

UPDATES


This release only adds the proto files for the 08-wasm module, so that this release can be imported in ibc-proto-rs. See #5988 for more details.


To learn more about ibc-go versioning, please read our RELEASES.md.

IMPORTANT: Please read the migration guides for any versions of ibc-go that you might be going through when upgrading to this version. For example: if you upgrade from the IBC module contained in the Cosmos SDK 0.42.0 to SDK v0.50.3 and ibc-go v8.1.1, please follow:

  1. The migration from SDK 0.41.x or 0.42.x to the IBC module in the ibc-go repository based on the SDK v0.44.x.
  2. The migration from ibc-go v1 to v2.
  3. The migration from ibc-go v2 to v3.
  4. The migration from ibc-go v3 to v4.
  5. The migration from ibc-go v4 to v5.
  6. The migration from ibc-go v5 to v6.

... (truncated)

Changelog

Sourced from github.com/cosmos/ibc-go/v8's changelog.

v8.2.0 - 2024-04-05

Dependencies

  • #5975 Bump Cosmos SDK to v0.50.5.

Improvements

  • (proto) #5987 Add wasm proto files.
Commits

Updates github.com/ethereum/go-ethereum from 1.13.8 to 1.13.15

Release notes

Sourced from github.com/ethereum/go-ethereum's releases.

Ontamalca (v1.13.15)

Geth v1.13.15 is a maintenance-release that contains some fixes mainly to avoid snapsync-related data-corruption.

We recommend all users to upgrade to v1.13.15 as soon as possible.


As with all our previous releases, you can find the:

Commits
  • c5ba367 params: release Geth v 1.13.15
  • 35e0525 core, eth/protocols/snap, trie: fix cause for snap-sync corruption, implement...
  • 7bcb553 eth/filters: enforce topic-limit early on filter criterias (#29535)
  • e343ddf core/rawdb: add sanity-limit to header accessor (#29534)
  • 5dcf503 eth/protocols/snap: skip retrieval for completed storages (#29378)
  • See full diff in compare view

Updates google.golang.org/protobuf from 1.32.0 to 1.33.0

Updates github.com/hashicorp/go-getter from 1.7.3 to 1.7.4

Release notes

Sourced from github.com/hashicorp/go-getter's releases.

v1.7.4

What's Changed

Full Changelog: hashicorp/go-getter@v1.7.3...v1.7.4

Commits
  • 268c11c escape user provide string to git (

…dates

Bumps the go_modules group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) | `0.38.5` | `0.38.6` |
| [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) | `0.50.5` | `0.50.6` |
| [github.com/cosmos/ibc-go/v8](https://github.com/cosmos/ibc-go) | `8.1.0` | `8.2.0` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.13.14` | `1.13.15` |
| google.golang.org/protobuf | `1.33.0` | `1.34.1` |
| [github.com/btcsuite/btcd](https://github.com/btcsuite/btcd) | `0.23.0` | `0.24.0` |
| [github.com/hashicorp/go-getter](https://github.com/hashicorp/go-getter) | `1.7.3` | `1.7.4` |

Bumps the go_modules group with 7 updates in the /interchaintest directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) | `0.38.5` | `0.38.6` |
| [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) | `0.50.4` | `0.50.5` |
| [github.com/cosmos/ibc-go/v8](https://github.com/cosmos/ibc-go) | `8.1.0` | `8.2.0` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.13.8` | `1.13.15` |
| [github.com/hashicorp/go-getter](https://github.com/hashicorp/go-getter) | `1.7.3` | `1.7.4` |
| [golang.org/x/net](https://github.com/golang/net) | `0.21.0` | `0.23.0` |
| [github.com/docker/docker](https://github.com/docker/docker) | `24.0.7+incompatible` | `24.0.9+incompatible` |



Updates `github.com/cometbft/cometbft` from 0.38.5 to 0.38.6
- [Release notes](https://github.com/cometbft/cometbft/releases)
- [Changelog](https://github.com/cometbft/cometbft/blob/v0.38.6/CHANGELOG.md)
- [Commits](cometbft/cometbft@v0.38.5...v0.38.6)

Updates `github.com/cosmos/cosmos-sdk` from 0.50.5 to 0.50.6
- [Release notes](https://github.com/cosmos/cosmos-sdk/releases)
- [Changelog](https://github.com/cosmos/cosmos-sdk/blob/main/CHANGELOG.md)
- [Commits](cosmos/cosmos-sdk@v0.50.5...v0.50.6)

Updates `github.com/cosmos/ibc-go/v8` from 8.1.0 to 8.2.0
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/main/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v8.1.0...v8.2.0)

Updates `github.com/ethereum/go-ethereum` from 1.13.14 to 1.13.15
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.13.14...v1.13.15)

Updates `google.golang.org/protobuf` from 1.33.0 to 1.34.1

Updates `github.com/btcsuite/btcd` from 0.23.0 to 0.24.0
- [Release notes](https://github.com/btcsuite/btcd/releases)
- [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES)
- [Commits](btcsuite/btcd@v0.23.0...v0.24.0)

Updates `github.com/hashicorp/go-getter` from 1.7.3 to 1.7.4
- [Release notes](https://github.com/hashicorp/go-getter/releases)
- [Changelog](https://github.com/hashicorp/go-getter/blob/main/.goreleaser.yml)
- [Commits](hashicorp/go-getter@v1.7.3...v1.7.4)

Updates `golang.org/x/net` from 0.22.0 to 0.24.0
- [Commits](golang/net@v0.21.0...v0.23.0)

Updates `github.com/cometbft/cometbft` from 0.38.5 to 0.38.6
- [Release notes](https://github.com/cometbft/cometbft/releases)
- [Changelog](https://github.com/cometbft/cometbft/blob/v0.38.6/CHANGELOG.md)
- [Commits](cometbft/cometbft@v0.38.5...v0.38.6)

Updates `github.com/cosmos/cosmos-sdk` from 0.50.4 to 0.50.5
- [Release notes](https://github.com/cosmos/cosmos-sdk/releases)
- [Changelog](https://github.com/cosmos/cosmos-sdk/blob/main/CHANGELOG.md)
- [Commits](cosmos/cosmos-sdk@v0.50.5...v0.50.6)

Updates `github.com/cosmos/ibc-go/v8` from 8.1.0 to 8.2.0
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/main/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v8.1.0...v8.2.0)

Updates `github.com/ethereum/go-ethereum` from 1.13.8 to 1.13.15
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.13.14...v1.13.15)

Updates `google.golang.org/protobuf` from 1.32.0 to 1.33.0

Updates `github.com/hashicorp/go-getter` from 1.7.3 to 1.7.4
- [Release notes](https://github.com/hashicorp/go-getter/releases)
- [Changelog](https://github.com/hashicorp/go-getter/blob/main/.goreleaser.yml)
- [Commits](hashicorp/go-getter@v1.7.3...v1.7.4)

Updates `golang.org/x/net` from 0.21.0 to 0.23.0
- [Commits](golang/net@v0.21.0...v0.23.0)

Updates `github.com/docker/docker` from 24.0.7+incompatible to 24.0.9+incompatible
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](moby/moby@v24.0.7...v24.0.9)

---
updated-dependencies:
- dependency-name: github.com/cometbft/cometbft
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/cosmos/cosmos-sdk
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/cosmos/ibc-go/v8
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/ethereum/go-ethereum
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/btcsuite/btcd
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/hashicorp/go-getter
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: golang.org/x/net
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/cometbft/cometbft
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/cosmos/cosmos-sdk
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/cosmos/ibc-go/v8
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/ethereum/go-ethereum
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: google.golang.org/protobuf
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/hashicorp/go-getter
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: golang.org/x/net
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/docker/docker
  dependency-type: indirect
  dependency-group: go_modules
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 6, 2024
Copy link

coderabbitai bot commented May 6, 2024

Important

Review Skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@prnk28 prnk28 closed this May 22, 2024
Copy link
Author

dependabot bot commented on behalf of github May 22, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/go_modules/go_modules-9289e47081 branch May 22, 2024 01:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant