Skip to content

Commit 150f67b

Browse files
authored
chore: update deps (#3312)
1 parent b0cc650 commit 150f67b

File tree

17 files changed

+454
-661
lines changed

17 files changed

+454
-661
lines changed

core/crypto/pb/crypto.pb.go

Lines changed: 16 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/peer/pb/peer_record.pb.go

Lines changed: 11 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/record/pb/envelope.pb.go

Lines changed: 10 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/sec/insecure/pb/plaintext.pb.go

Lines changed: 7 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/libp2p/go-libp2p
22

3-
go 1.23.0
3+
go 1.23.8
44

55
retract v0.26.1 // Tag was applied incorrectly due to a bug in the release workflow.
66

@@ -18,54 +18,54 @@ require (
1818
github.com/huin/goupnp v1.3.0
1919
github.com/ipfs/go-cid v0.5.0
2020
github.com/ipfs/go-datastore v0.8.2
21-
github.com/ipfs/go-log/v2 v2.5.1
21+
github.com/ipfs/go-log/v2 v2.6.0
2222
github.com/jackpal/go-nat-pmp v1.0.2
2323
github.com/jbenet/go-temp-err-catcher v0.1.0
2424
github.com/klauspost/compress v1.18.0
25-
github.com/koron/go-ssdp v0.0.5
25+
github.com/koron/go-ssdp v0.0.6
2626
github.com/libp2p/go-buffer-pool v0.1.0
2727
github.com/libp2p/go-flow-metrics v0.2.0
2828
github.com/libp2p/go-libp2p-asn-util v0.4.1
2929
github.com/libp2p/go-libp2p-testing v0.12.0
3030
github.com/libp2p/go-msgio v0.3.0
3131
github.com/libp2p/go-netroute v0.2.2
3232
github.com/libp2p/go-reuseport v0.4.0
33-
github.com/libp2p/go-yamux/v5 v5.0.0
33+
github.com/libp2p/go-yamux/v5 v5.0.1
3434
github.com/libp2p/zeroconf/v2 v2.2.0
3535
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd
3636
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b
3737
github.com/mr-tron/base58 v1.2.0
3838
github.com/multiformats/go-base32 v0.1.0
39-
github.com/multiformats/go-multiaddr v0.15.0
39+
github.com/multiformats/go-multiaddr v0.16.0
4040
github.com/multiformats/go-multiaddr-dns v0.4.1
4141
github.com/multiformats/go-multiaddr-fmt v0.1.0
4242
github.com/multiformats/go-multibase v0.2.0
43-
github.com/multiformats/go-multicodec v0.9.0
43+
github.com/multiformats/go-multicodec v0.9.1
4444
github.com/multiformats/go-multihash v0.2.3
45-
github.com/multiformats/go-multistream v0.6.0
45+
github.com/multiformats/go-multistream v0.6.1
4646
github.com/multiformats/go-varint v0.0.7
4747
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58
4848
github.com/pion/datachannel v1.5.10
49-
github.com/pion/ice/v4 v4.0.8
49+
github.com/pion/ice/v4 v4.0.10
5050
github.com/pion/logging v0.2.3
51-
github.com/pion/sctp v1.8.37
51+
github.com/pion/sctp v1.8.39
5252
github.com/pion/stun v0.6.1
53-
github.com/pion/webrtc/v4 v4.0.14
54-
github.com/prometheus/client_golang v1.21.0
55-
github.com/prometheus/client_model v0.6.1
53+
github.com/pion/webrtc/v4 v4.1.2
54+
github.com/prometheus/client_golang v1.22.0
55+
github.com/prometheus/client_model v0.6.2
5656
github.com/quic-go/quic-go v0.52.0
5757
github.com/quic-go/webtransport-go v0.8.1-0.20241018022711-4ac2c9250e66
5858
github.com/stretchr/testify v1.10.0
59-
go.uber.org/fx v1.23.0
59+
go.uber.org/fx v1.24.0
6060
go.uber.org/goleak v1.3.0
6161
go.uber.org/mock v0.5.2
6262
go.uber.org/zap v1.27.0
63-
golang.org/x/crypto v0.37.0
64-
golang.org/x/sync v0.14.0
63+
golang.org/x/crypto v0.39.0
64+
golang.org/x/sync v0.15.0
6565
golang.org/x/sys v0.33.0
66-
golang.org/x/time v0.11.0
67-
golang.org/x/tools v0.32.0
68-
google.golang.org/protobuf v1.36.5
66+
golang.org/x/time v0.12.0
67+
golang.org/x/tools v0.34.0
68+
google.golang.org/protobuf v1.36.6
6969
)
7070

7171
require (
@@ -74,42 +74,42 @@ require (
7474
github.com/davecgh/go-spew v1.1.1 // indirect
7575
github.com/francoispqt/gojay v1.2.13 // indirect
7676
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
77-
github.com/google/pprof v0.0.0-20250501235452-c0086092b71a // indirect
77+
github.com/google/pprof v0.0.0-20250607225305-033d6d78b36a // indirect
7878
github.com/google/uuid v1.6.0 // indirect
7979
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
8080
github.com/mattn/go-isatty v0.0.20 // indirect
81-
github.com/miekg/dns v1.1.63 // indirect
81+
github.com/miekg/dns v1.1.66 // indirect
8282
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
8383
github.com/minio/sha256-simd v1.0.1 // indirect
8484
github.com/multiformats/go-base36 v0.2.0 // indirect
8585
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8686
github.com/onsi/ginkgo/v2 v2.23.4 // indirect
8787
github.com/pion/dtls/v2 v2.2.12 // indirect
88-
github.com/pion/dtls/v3 v3.0.4 // indirect
89-
github.com/pion/interceptor v0.1.37 // indirect
88+
github.com/pion/dtls/v3 v3.0.6 // indirect
89+
github.com/pion/interceptor v0.1.40 // indirect
9090
github.com/pion/mdns/v2 v2.0.7 // indirect
9191
github.com/pion/randutil v0.1.0 // indirect
9292
github.com/pion/rtcp v1.2.15 // indirect
93-
github.com/pion/rtp v1.8.13 // indirect
94-
github.com/pion/sdp/v3 v3.0.11 // indirect
95-
github.com/pion/srtp/v3 v3.0.4 // indirect
93+
github.com/pion/rtp v1.8.19 // indirect
94+
github.com/pion/sdp/v3 v3.0.13 // indirect
95+
github.com/pion/srtp/v3 v3.0.6 // indirect
9696
github.com/pion/stun/v3 v3.0.0 // indirect
9797
github.com/pion/transport/v2 v2.2.10 // indirect
9898
github.com/pion/transport/v3 v3.0.7 // indirect
99-
github.com/pion/turn/v4 v4.0.0 // indirect
99+
github.com/pion/turn/v4 v4.0.2 // indirect
100100
github.com/pmezard/go-difflib v1.0.0 // indirect
101-
github.com/prometheus/common v0.62.0 // indirect
102-
github.com/prometheus/procfs v0.15.1 // indirect
101+
github.com/prometheus/common v0.64.0 // indirect
102+
github.com/prometheus/procfs v0.16.1 // indirect
103103
github.com/quic-go/qpack v0.5.1 // indirect
104104
github.com/spaolacci/murmur3 v1.1.0 // indirect
105105
github.com/wlynxg/anet v0.0.5 // indirect
106106
go.uber.org/automaxprocs v1.6.0 // indirect
107-
go.uber.org/dig v1.18.0 // indirect
107+
go.uber.org/dig v1.19.0 // indirect
108108
go.uber.org/multierr v1.11.0 // indirect
109-
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
110-
golang.org/x/mod v0.24.0 // indirect
111-
golang.org/x/net v0.39.0 // indirect
112-
golang.org/x/text v0.24.0 // indirect
109+
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476 // indirect
110+
golang.org/x/mod v0.25.0 // indirect
111+
golang.org/x/net v0.41.0 // indirect
112+
golang.org/x/text v0.26.0 // indirect
113113
gopkg.in/yaml.v3 v3.0.1 // indirect
114-
lukechampine.com/blake3 v1.4.0 // indirect
114+
lukechampine.com/blake3 v1.4.1 // indirect
115115
)

0 commit comments

Comments
 (0)