Skip to content

Commit b18778b

Browse files
build(deps): bump github.com/ethereum/go-ethereum from 1.14.13 to 1.15.5
Bumps [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) from 1.14.13 to 1.15.5. - [Release notes](https://github.com/ethereum/go-ethereum/releases) - [Commits](ethereum/go-ethereum@v1.14.13...v1.15.5) --- updated-dependencies: - dependency-name: github.com/ethereum/go-ethereum dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 36e4eac commit b18778b

File tree

316 files changed

+46128
-11398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

316 files changed

+46128
-11398
lines changed

go.mod

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/BitBoxSwiss/bitbox-wallet-app
22

33
go 1.23
4+
toolchain go1.24.1
45

56
require (
67
github.com/BitBoxSwiss/bitbox02-api-go v0.0.0-20250212204931-2b90fadfc774
@@ -9,7 +10,7 @@ require (
910
github.com/btcsuite/btcd/btcec/v2 v2.3.4
1011
github.com/btcsuite/btcd/btcutil v1.1.6
1112
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
12-
github.com/ethereum/go-ethereum v1.14.13
13+
github.com/ethereum/go-ethereum v1.15.6
1314
github.com/flynn/noise v1.1.0
1415
github.com/gorilla/mux v1.8.1
1516
github.com/gorilla/websocket v1.5.3
@@ -19,46 +20,46 @@ require (
1920
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
2021
github.com/stretchr/testify v1.10.0
2122
go.etcd.io/bbolt v1.3.11
22-
golang.org/x/crypto v0.32.0
23+
golang.org/x/crypto v0.35.0
2324
golang.org/x/mobile v0.0.0-20240716161057-1ad2df20a8b6
24-
golang.org/x/net v0.34.0
25+
golang.org/x/net v0.36.0
2526
golang.org/x/time v0.10.0
2627
)
2728

2829
require (
2930
github.com/Microsoft/go-winio v0.6.2 // indirect
3031
github.com/aead/siphash v1.0.1 // indirect
31-
github.com/bits-and-blooms/bitset v1.13.0 // indirect
32+
github.com/bits-and-blooms/bitset v1.17.0 // indirect
3233
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
3334
github.com/cespare/cp v1.1.1 // indirect
34-
github.com/consensys/bavard v0.1.13 // indirect
35-
github.com/consensys/gnark-crypto v0.13.0 // indirect
36-
github.com/crate-crypto/go-ipa v0.0.0-20240223125850-b1e8a79f509c // indirect
35+
github.com/consensys/bavard v0.1.22 // indirect
36+
github.com/consensys/gnark-crypto v0.14.0 // indirect
37+
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
3738
github.com/crate-crypto/go-kzg-4844 v1.1.0 // indirect
3839
github.com/davecgh/go-spew v1.1.1 // indirect
3940
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
4041
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
4142
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
4243
github.com/ethereum/c-kzg-4844 v1.0.3 // indirect
43-
github.com/ethereum/go-verkle v0.1.1-0.20240829091221-dffa7562dbe9 // indirect
44+
github.com/ethereum/go-verkle v0.2.2 // indirect
4445
github.com/fsnotify/fsnotify v1.7.0 // indirect
4546
github.com/go-ole/go-ole v1.3.0 // indirect
4647
github.com/google/uuid v1.6.0 // indirect
47-
github.com/holiman/uint256 v1.3.1 // indirect
48+
github.com/holiman/uint256 v1.3.2 // indirect
4849
github.com/kkdai/bstream v1.0.0 // indirect
4950
github.com/mmcloughlin/addchain v0.4.0 // indirect
5051
github.com/pmezard/go-difflib v1.0.0 // indirect
5152
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
5253
github.com/stretchr/objx v0.5.2 // indirect
53-
github.com/supranational/blst v0.3.13 // indirect
54+
github.com/supranational/blst v0.3.14 // indirect
5455
github.com/tklauser/go-sysconf v0.3.14 // indirect
5556
github.com/tklauser/numcpus v0.8.0 // indirect
5657
github.com/yusufpapurcu/wmi v1.2.4 // indirect
5758
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
58-
golang.org/x/mod v0.19.0 // indirect
59-
golang.org/x/sync v0.7.0 // indirect
60-
golang.org/x/sys v0.29.0 // indirect
61-
golang.org/x/tools v0.23.0 // indirect
59+
golang.org/x/mod v0.22.0 // indirect
60+
golang.org/x/sync v0.11.0 // indirect
61+
golang.org/x/sys v0.30.0 // indirect
62+
golang.org/x/tools v0.29.0 // indirect
6263
google.golang.org/protobuf v1.34.2 // indirect
6364
gopkg.in/yaml.v3 v3.0.1 // indirect
6465
rsc.io/tmplfunc v0.0.3 // indirect

go.sum

+70-38
Large diffs are not rendered by default.

vendor/github.com/bits-and-blooms/bitset/README.md

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)