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

go: bump the go group across 4 directories with 7 updates #1972

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the go group with 7 updates in the /client-sdk/go directory:

Package From To
github.com/btcsuite/btcd/btcec/v2 2.3.3 2.3.4
github.com/ethereum/go-ethereum 1.14.0 1.14.8
golang.org/x/crypto 0.23.0 0.27.0
google.golang.org/grpc 1.63.2 1.66.0
github.com/prometheus/client_golang 1.19.0 1.20.3
github.com/spf13/cobra 1.8.0 1.8.1
github.com/spf13/viper 1.18.2 1.19.0

Bumps the go group with 7 updates in the /tests/benchmark directory:

Package From To
github.com/btcsuite/btcd/btcec/v2 2.3.3 2.3.4
github.com/ethereum/go-ethereum 1.14.0 1.14.8
golang.org/x/crypto 0.23.0 0.27.0
google.golang.org/grpc 1.63.2 1.66.0
github.com/prometheus/client_golang 1.19.0 1.20.3
github.com/spf13/cobra 1.8.0 1.8.1
github.com/spf13/viper 1.18.2 1.19.0

Bumps the go group with 7 updates in the /tests/e2e directory:

Package From To
github.com/btcsuite/btcd/btcec/v2 2.3.3 2.3.4
github.com/ethereum/go-ethereum 1.14.0 1.14.8
golang.org/x/crypto 0.23.0 0.27.0
google.golang.org/grpc 1.63.2 1.66.0
github.com/prometheus/client_golang 1.19.0 1.20.3
github.com/spf13/cobra 1.8.0 1.8.1
github.com/spf13/viper 1.18.2 1.19.0

Bumps the go group with 7 updates in the /tools/gen_runtime_vectors directory:

Package From To
github.com/btcsuite/btcd/btcec/v2 2.3.3 2.3.4
github.com/ethereum/go-ethereum 1.14.0 1.14.8
golang.org/x/crypto 0.23.0 0.27.0
google.golang.org/grpc 1.63.2 1.66.0
github.com/prometheus/client_golang 1.19.0 1.20.3
github.com/spf13/cobra 1.8.0 1.8.1
github.com/spf13/viper 1.18.2 1.19.0

Updates github.com/btcsuite/btcd/btcec/v2 from 2.3.3 to 2.3.4

Commits
  • ff2e03e chore: fix some comments for struct field (#2214)
  • 2134387 Merge pull request #2208 from kcalvinalvin/2024-07-01-close-blockfiles
  • e5d15fd btcec/ecdsa: remove error return value for SignCompact (#2211)
  • c9fae1a ffldb: close block files before deleting them
  • 8ed8ef1 ffldb: refactor out file close code into its own method
  • 8b5f2aa ffldb: add check for deleting files that are open
  • 4712e20 ffldb: throw error when attempting to delete an open file
  • d881c68 Fix the btcctl uptime command
  • 1396690 Sending RPC requests through unix sockets (#2168)
  • b2eec96 Merge pull request #2206 from guggero/psbt-serialization-fix
  • Additional commits viewable in compare view

Updates github.com/ethereum/go-ethereum from 1.14.0 to 1.14.8

Release notes

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

Rayingri (v1.14.8)

This is a maintenance release with bug fixes only.

Command changes

  • Blobpool related flags in Geth now actually work. (#30203)
  • The evm run command no longer overwrites the sender account in genesis.json. (#30259)
  • evm run now allows configuring baseFeePerGas in genesis.json. (#30281)

Go API

  • core/types.Transaction.ChainID had a bug where it modified the signature for very large ChainID (>= 2^64). (#30157)
  • ethclient.Client.NetworkID now supports values returned in hex format by the server. (#30263)
  • ethclient/simulated.Backend.AdjustTime was fixed to apply the correct time divison. (#30138)
  • accounts/abi/bind.TransactOpts now supports setting an access list for created transactions. (#30195)
  • The package p2p/simulations has been removed. (#30250)

Core

  • A snap-sync database corruption related to sync restarts is fixed in this release. (#30258)
  • eth_call storage overrides now work as originally intended: if a storage replacement object is specified in the call, previous storage values of the account are cleared. (#30185)
  • The txpool did not use the transaction's inline sender cache in some cases. (#30208)
  • The performance of EVM stack swaps was improved a bit. (#30249)

Networking

  • The downloader now takes withdrawals into account when sizing its queue. (#30276)
  • The new discovery node revalidation could hot-spin in certain rare scenarios. (#30239)
  • Configuring an external IP using --nat=extip:... could lead to invalid discovery packets being generated. (#30234)

Build

  • github.com/btcsuite/btcd/btcec has been upgraded to resolve a build error caused by upstream API changes. (#30181)
  • Previous releases will not build with Go 1.23, but this one will. (#30253)
  • This release is built with Go 1.22.6. (#30273)

For a full rundown of the changes please consult the Geth 1.14.8 release milestone.


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

Trident (v1.14.7)

This is a hot-fix release for a bug (#30139) which affects only the previous release. Users of v1.14.6 are kindly requested to update.

... (truncated)

Commits
  • a9523b6 Merge branch 'master' into release/1.14
  • 880511d params: release go-ethereum v1.14.8 stable
  • 5adf4ad eth/protocols/snap: cleanup dangling account trie nodes due to incomplete sto...
  • 33a13b6 p2p/simulations: remove packages (#30250)
  • 32a1e06 beacon/engine, consensus/beacon: use params.MaximumExtraDataSize instead of h...
  • 811a69c go.mod: update uint256 to 1.3.1 (#30280)
  • 83e70aa cmd/evm: fix evm basefee (#30281)
  • ebe31df eth/downloader, core/types: take withdrawals-size into account in downloader ...
  • d3dae66 tests: fix TransactionTest to actually run (#30272)
  • 9ea766d build: upgrade -dlgo version to Go 1.22.6 (#30273)
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.23.0 to 0.27.0

Commits
  • c9da6b9 all: fix printf(var) mistakes detected by latest printf checker
  • b35ab4f go.mod: update golang.org/x dependencies
  • bcb0f91 internal/poly1305: Port sum_amd64.s to Avo
  • 7eace71 chacha20poly1305: Avo port of chacha20poly1305_amd64.s
  • 620dfbc salsa20/salsa: Port salsa20_amd64.s to Avo
  • 82942cf blake2b: port blake2b_amd64.s to Avo
  • 0484c26 blake2b: port blake2bAVX2_amd64.s to Avo
  • 38ed1bc blake2s: port blake2s_amd64.s to Avo
  • 38a0b5d argon2: Avo port of blamka_amd64.s
  • bf5f14f x509roots/fallback: update bundle
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.63.2 to 1.66.0

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.66.0

New Features

  • metadata: stabilize ValueFromIncomingContext (#7368)
  • client: stabilize the WaitForStateChange and GetState methods, which were previously experimental. (#7425)
  • xds: Implement ADS flow control mechanism (#7458)
  • balancer/rls: Add metrics for data cache and picker internals (#7484, #7495)
  • xds: LRS load reports now include the total_issued_requests field. (#7544)

Bug Fixes

  • grpc: Clients now return status code INTERNAL instead of UNIMPLEMENTED when the server uses an unsupported compressor. This is consistent with the gRPC compression spec. (#7461)
  • transport: Fix a bug which could result in writes busy looping when the underlying conn.Write returns errors (#7394)
  • client: fix race that could lead to orphaned connections and associated resources. (#7390)
  • xds: use locality from the connected address for load reporting with pick_first (#7378)
    • without this fix, if a priority contains multiple localities with pick_first, load was reported for the wrong locality
  • client: prevent hanging during ClientConn.Close() when the network is unreachable (#7540)

Performance Improvements

  • transport: double buffering is avoided when using an http connect proxy and the target server waits for client to send the first message. (#7424)
  • codec: Implement a new Codec which uses buffer recycling for encoded message (#7356)

Release 1.65.0

Dependencies

  • Change support policy to cover only the latest TWO releases of Go, matching the policy for Go itself. See #7249 for more information. (#7250)
  • Update x/net/http2 to address CVE-2023-45288 (#7282)

Behavior Changes

  • credentials/tls: clients and servers will now reject connections that don't support ALPN when environment variable GRPC_ENFORCE_ALPN_ENABLED is set to "true" (case insensitive). (#7184)
    • NOTE: this behavior will become the default in a future release.
  • metadata: remove String method from MD to make printing more consistent (#7373)

New Features

  • grpc: add WithMaxCallAttempts to configure gRPC's retry behavior per-channel. (#7229)

Bug Fixes

  • ringhash: properly apply endpoint weights instead of ignoring them (#7156)
  • xds: fix a bug that could cause xds-enabled servers to stop accepting new connections after handshaking errors (#7128)

... (truncated)

Commits

Updates github.com/prometheus/client_golang from 1.19.0 to 1.20.3

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.20.3

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608

v1.20.2

  • [BUGFIX] promhttp: Unset Content-Encoding header when data is uncompressed. #1596

v1.20.1

This release contains the critical fix for the issue. Thanks to @​geberl, @​CubicrootXYZ, @​zetaab and @​timofurrer for helping us with the investigation!

  • [BUGFIX] process-collector: Fixed unregistered descriptor error when using process collector with PedanticRegistry on Linux machines. #1587

v1.20.0

Thanks everyone for contributions!

⚠️ In this release we remove one (broken anyway, given Go runtime changes) metric and add three new (representing GOGC, GOMEMLIMIT and GOMAXPROCS flags) to the default collectors.NewGoCollector() collector. Given its popular usage, expect your binary to expose two additional metric.

Changes

  • [CHANGE] ⚠️ go-collector: Remove go_memstat_lookups_total metric which was always 0; Go runtime stopped sharing pointer lookup statistics. #1577
  • [FEATURE] ⚠️ go-collector: Add 3 default metrics: go_gc_gogc_percent, go_gc_gomemlimit_bytes and go_sched_gomaxprocs_threads as those are recommended by the Go team. #1559
  • [FEATURE] go-collector: Add more information to all metrics' HELP e.g. the exact runtime/metrics sourcing each metric (if relevant). #1568 #1578
  • [FEATURE] testutil: Add CollectAndFormat method. #1503
  • [FEATURE] histograms: Add support for exemplars in native histograms. #1471
  • [FEATURE] promhttp: Add experimental support for zstd on scrape, controlled by the request Accept-Encoding header. #1496
  • [FEATURE] api/v1: Add WithLimit parameter to all API methods that supports it. #1544
  • [FEATURE] prometheus: Add support for created timestamps in constant histograms and constant summaries. #1537
  • [FEATURE] process-collectors: Add network usage metrics: process_network_receive_bytes_total and process_network_transmit_bytes_total. #1555
  • [FEATURE] promlint: Add duplicated metric lint rule. #1472
  • [BUGFIX] promlint: Relax metric type in name linter rule. #1455
  • [BUGFIX] promhttp: Make sure server instrumentation wrapping supports new and future extra responseWriter methods. #1480
  • [BUGFIX] testutil: Functions using compareMetricFamilies are now failing if filtered metricNames are not in the input. #1424

... (truncated)

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.20.3 / 2024-09-05

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608

1.20.2 / 2024-08-23

  • [BUGFIX] promhttp: Unset Content-Encoding header when data is uncompressed. #1596

1.20.1 / 2024-08-20

  • [BUGFIX] process-collector: Fixed unregistered descriptor error when using process collector with PedanticRegistry on linux machines. #1587

1.20.0 / 2024-08-14

  • [CHANGE] ⚠️ go-collector: Remove go_memstat_lookups_total metric which was always 0; Go runtime stopped sharing pointer lookup statistics. #1577
  • [FEATURE] ⚠️ go-collector: Add 3 default metrics: go_gc_gogc_percent, go_gc_gomemlimit_bytes and go_sched_gomaxprocs_threads as those are recommended by the Go team. #1559
  • [FEATURE] go-collector: Add more information to all metrics' HELP e.g. the exact runtime/metrics sourcing each metric (if relevant). #1568 #1578
  • [FEATURE] testutil: Add CollectAndFormat method. #1503
  • [FEATURE] histograms: Add support for exemplars in native histograms. #1471
  • [FEATURE] promhttp: Add experimental support for zstd on scrape, controlled by the request Accept-Encoding header. #1496
  • [FEATURE] api/v1: Add WithLimit parameter to all API methods that supports it. #1544
  • [FEATURE] prometheus: Add support for created timestamps in constant histograms and constant summaries. #1537
  • [FEATURE] process-collector: Add network usage metrics: process_network_receive_bytes_total and process_network_transmit_bytes_total. #1555
  • [FEATURE] promlint: Add duplicated metric lint rule. #1472
  • [BUGFIX] promlint: Relax metric type in name linter rule. #1455
  • [BUGFIX] promhttp: Make sure server instrumentation wrapping supports new and future extra responseWriter methods. #1480
  • [BUGFIX] testutil: Functions using compareMetricFamilies are now failing if filtered metricNames are not in the input. #1424
Commits
  • ef2f87e Merge pull request #1620 from prometheus/arthursens/prepare-1.20.3
  • 937ac63 Add changelog entry for 1.20.3
  • 6e9914d Merge pull request #1608 from krajorama/index-out-of-range-native-histogram-e...
  • d6b8c89 Update comments with more explanations
  • 504566f Use simplified solution from #1609 for the data race
  • dc8e9a4 fix: native histogram: Simplify and fix addExemplar
  • dc819ce Use a trivial solution to #1605
  • e061dfa native histogram: use exemplars in concurrency test
  • 67121dc Merge pull request #1596 from mrueg/fix-uncompressed-content-header
  • 187acd4 Cut 1.20.2
  • Additional commits viewable in compare view

Updates github.com/spf13/cobra from 1.8.0 to 1.8.1

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.8.1

✨ Features

🐛 Bug fixes

🔧 Maintenance

🧪 Testing & CI/CD

✏️ Documentation

... (truncated)

Commits

Updates github.com/spf13/viper from 1.18.2 to 1.19.0

Release notes

Sourced from github.com/spf13/viper's releases.

v1.19.0

What's Changed

Bug Fixes 🐛

Dependency Updates ⬆️

... (truncated)

Commits
  • b9733f0 build(deps): bump actions/checkout from 4.1.4 to 4.1.6
  • 6ecc5c8 build(deps): bump cachix/install-nix-action from 26 to 27
  • 248c6fd build(deps): bump github/codeql-action from 3.25.4 to 3.25.7
  • abea773 Update references to bketelsen/crypt
  • f17acb4 build(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1
  • 8e285a5 build(deps): bump github/codeql-action from 3.25.2 to 3.25.4
  • 4017620 build(deps): bump actions/setup-go from 5.0.0 to 5.0.1
  • b67e814 build(deps): bump github.com/pelletier/go-toml/v2 from 2.2.1 to 2.2.2
  • 4a182c7 build(deps): bump actions/dependency-review-action from 4.2.5 to 4.3.2
  • 45a0e12 build(deps): bump mheap/github-action-required-labels
  • Additional commits viewable in compare view

Updates github.com/btcsuite/btcd/btcec/v2 from 2.3.3 to 2.3.4

Commits
  • ff2e03e chore: fix some comments for struct field (#2214)
  • 2134387 Merge pull request #2208 from kcalvinalvin/2024-07-01-close-blockfiles
  • e5d15fd btcec/ecdsa: remove error return value for SignCompact (#2211)
  • c9fae1a ffldb: close block files before deleting them
  • 8ed8ef1 ffldb: refactor out file close code into its own method
  • 8b5f2aa ffldb: add check for deleting files that are open
  • 4712e20 ffldb: throw error when attempting to delete an open file
  • d881c68 Fix the btcctl uptime command
  • 1396690 Sending RPC requests through unix sockets (#2168)
  • b2eec96 Merge pull request #2206 from guggero/psbt-serialization-fix
  • Additional commits viewable in compare view

Updates github.com/ethereum/go-ethereum from 1.14.0 to 1.14.8

Release notes

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

Rayingri (v1.14.8)

This is a maintenance release with bug fixes only.

Command changes

  • Blobpool related flags in Geth now actually work. (#30203)
  • The evm run command no longer overwrites the sender account in genesis.json. (#30259)
  • evm run now allows configuring baseFeePerGas in genesis.json. (#30281)

Go API

  • core/types.Transaction.ChainID had a bug where it modified the signature for very large ChainID (>= 2^64). (#30157)
  • ethclient.Client.NetworkID now supports values returned in hex format by the server. (#30263)
  • ethclient/simulated.Backend.AdjustTime was fixed to apply the correct time divison. (#30138)
  • accounts/abi/bind.TransactOpts now supports setting an access list for created transactions. (#30195)
  • The package p2p/simulations has been removed. (#30250)

Core

  • A snap-sync database corruption related to sync restarts is fixed in this release. (#30258)
  • eth_call storage overrides now work as originally intended: if a storage replacement object is specified in the call, previous storage values of the account are cleared. (#30185)
  • The txpool did not use the transaction's inline sender cache in some cases. (#30208)
  • The performance of EVM stack swaps was improved a bit. (#30249)

Networking

  • The downloader now takes withdrawals into account when sizing its queue. (#30276)
  • The new discovery node revalidation could hot-spin in certain rare scenarios. (#30239)
  • Configuring an external IP using --nat=extip:... could lead to invalid discovery packets being generated. (#30234)

Build

  • github.com/btcsuite/btcd/btcec has been upgraded to resolve a build error caused by upstream API changes. (#30181)
  • Previous releases will not build with Go 1.23, but this one will. (#30253)
  • This release is built with Go 1.22.6. (#30273)

For a full rundown of the changes please consult the Geth 1.14.8 release milestone.


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

Trident (v1.14.7)

This is a hot-fix release for a bug (#30139) which affects only the previous release. Users of v1.14.6 are kindly requested to update.

... (truncated)

Commits
  • a9523b6 Merge branch 'master' into release/1.14
  • 880511d params: release go-ethereum v1.14.8 stable
  • 5adf4ad eth/protocols/snap: cleanup dangling account trie nodes due to incomplete sto...
  • 33a13b6 p2p/simulations: remove packages (#30250)
  • 32a1e06 beacon/engine, consensus/beacon: use params.MaximumExtraDataSize instead of h...
  • 811a69c go.mod: update uint256 t...

    Description has been truncated

Bumps the go group with 7 updates in the /client-sdk/go directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/btcsuite/btcd/btcec/v2](https://github.com/btcsuite/btcd) | `2.3.3` | `2.3.4` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.14.0` | `1.14.8` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.23.0` | `0.27.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.63.2` | `1.66.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.19.0` | `1.20.3` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.8.1` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.18.2` | `1.19.0` |

Bumps the go group with 7 updates in the /tests/benchmark directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/btcsuite/btcd/btcec/v2](https://github.com/btcsuite/btcd) | `2.3.3` | `2.3.4` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.14.0` | `1.14.8` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.23.0` | `0.27.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.63.2` | `1.66.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.19.0` | `1.20.3` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.8.1` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.18.2` | `1.19.0` |

Bumps the go group with 7 updates in the /tests/e2e directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/btcsuite/btcd/btcec/v2](https://github.com/btcsuite/btcd) | `2.3.3` | `2.3.4` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.14.0` | `1.14.8` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.23.0` | `0.27.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.63.2` | `1.66.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.19.0` | `1.20.3` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.8.1` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.18.2` | `1.19.0` |

Bumps the go group with 7 updates in the /tools/gen_runtime_vectors directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/btcsuite/btcd/btcec/v2](https://github.com/btcsuite/btcd) | `2.3.3` | `2.3.4` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.14.0` | `1.14.8` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.23.0` | `0.27.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.63.2` | `1.66.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.19.0` | `1.20.3` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.8.1` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.18.2` | `1.19.0` |



Updates `github.com/btcsuite/btcd/btcec/v2` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/btcsuite/btcd/releases)
- [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES)
- [Commits](btcsuite/btcd@btcec/v2.3.3...btcec/v2.3.4)

Updates `github.com/ethereum/go-ethereum` from 1.14.0 to 1.14.8
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.14.0...v1.14.8)

Updates `golang.org/x/crypto` from 0.23.0 to 0.27.0
- [Commits](golang/crypto@v0.23.0...v0.27.0)

Updates `google.golang.org/grpc` from 1.63.2 to 1.66.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.63.2...v1.66.0)

Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.20.3
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/v1.20.3/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.19.0...v1.20.3)

Updates `github.com/spf13/cobra` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.0...v1.8.1)

Updates `github.com/spf13/viper` from 1.18.2 to 1.19.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.18.2...v1.19.0)

Updates `github.com/btcsuite/btcd/btcec/v2` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/btcsuite/btcd/releases)
- [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES)
- [Commits](btcsuite/btcd@btcec/v2.3.3...btcec/v2.3.4)

Updates `github.com/ethereum/go-ethereum` from 1.14.0 to 1.14.8
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.14.0...v1.14.8)

Updates `golang.org/x/crypto` from 0.23.0 to 0.27.0
- [Commits](golang/crypto@v0.23.0...v0.27.0)

Updates `google.golang.org/grpc` from 1.63.2 to 1.66.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.63.2...v1.66.0)

Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.20.3
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/v1.20.3/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.19.0...v1.20.3)

Updates `github.com/spf13/cobra` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.0...v1.8.1)

Updates `github.com/spf13/viper` from 1.18.2 to 1.19.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.18.2...v1.19.0)

Updates `github.com/btcsuite/btcd/btcec/v2` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/btcsuite/btcd/releases)
- [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES)
- [Commits](btcsuite/btcd@btcec/v2.3.3...btcec/v2.3.4)

Updates `github.com/ethereum/go-ethereum` from 1.14.0 to 1.14.8
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.14.0...v1.14.8)

Updates `golang.org/x/crypto` from 0.23.0 to 0.27.0
- [Commits](golang/crypto@v0.23.0...v0.27.0)

Updates `google.golang.org/grpc` from 1.63.2 to 1.66.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.63.2...v1.66.0)

Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.20.3
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/v1.20.3/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.19.0...v1.20.3)

Updates `github.com/spf13/cobra` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.0...v1.8.1)

Updates `github.com/spf13/viper` from 1.18.2 to 1.19.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.18.2...v1.19.0)

Updates `github.com/btcsuite/btcd/btcec/v2` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/btcsuite/btcd/releases)
- [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES)
- [Commits](btcsuite/btcd@btcec/v2.3.3...btcec/v2.3.4)

Updates `github.com/ethereum/go-ethereum` from 1.14.0 to 1.14.8
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.14.0...v1.14.8)

Updates `golang.org/x/crypto` from 0.23.0 to 0.27.0
- [Commits](golang/crypto@v0.23.0...v0.27.0)

Updates `google.golang.org/grpc` from 1.63.2 to 1.66.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.63.2...v1.66.0)

Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.20.3
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/v1.20.3/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.19.0...v1.20.3)

Updates `github.com/spf13/cobra` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.0...v1.8.1)

Updates `github.com/spf13/viper` from 1.18.2 to 1.19.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.18.2...v1.19.0)

---
updated-dependencies:
- dependency-name: github.com/btcsuite/btcd/btcec/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/ethereum/go-ethereum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/prometheus/client_golang
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/spf13/cobra
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/spf13/viper
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/btcsuite/btcd/btcec/v2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/ethereum/go-ethereum
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: golang.org/x/crypto
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/spf13/viper
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/btcsuite/btcd/btcec/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/ethereum/go-ethereum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: golang.org/x/crypto
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/prometheus/client_golang
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/spf13/cobra
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/spf13/viper
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/btcsuite/btcd/btcec/v2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/ethereum/go-ethereum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: golang.org/x/crypto
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/grpc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/prometheus/client_golang
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/spf13/cobra
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/spf13/viper
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

netlify bot commented Sep 6, 2024

Deploy Preview for oasisprotocol-oasis-sdk canceled.

Name Link
🔨 Latest commit 870efc9
🔍 Latest deploy log https://app.netlify.com/sites/oasisprotocol-oasis-sdk/deploys/66da5ef9d559c60008fb5c56

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 10, 2024

Superseded by #1976.

@dependabot dependabot bot closed this Sep 10, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/client-sdk/go/go-f3d929900a branch September 10, 2024 01:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c:deps Category: external dependencies golang
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants