Skip to content

Commit 521f8d4

Browse files
authored
Merge pull request #505 from ipfs/release-v0.15.0
Release v0.15.0
2 parents 07c5719 + 5af54b2 commit 521f8d4

File tree

7 files changed

+154
-150
lines changed

7 files changed

+154
-150
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ The following emojis are used to highlight certain changes:
2424

2525
### Security
2626

27+
## [v0.15.0]
28+
29+
### Changed
30+
31+
* 🛠 Bumped to [`go-libp2p` 0.32](https://github.com/libp2p/go-libp2p/releases/tag/v0.32.0).
32+
2733
## [v0.14.0]
2834

2935
### Added

bitswap/server/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ func (bs *Server) Stat() (Stat, error) {
398398
peers := bs.engine.Peers()
399399
peersStr := make([]string, len(peers))
400400
for i, p := range peers {
401-
peersStr[i] = p.Pretty()
401+
peersStr[i] = p.String()
402402
}
403403
sort.Strings(peersStr)
404404
s.Peers = peersStr

examples/go.mod

+24-24
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ require (
99
github.com/ipfs/go-datastore v0.6.0
1010
github.com/ipld/go-car/v2 v2.10.2-0.20230622090957-499d0c909d33
1111
github.com/ipld/go-ipld-prime v0.21.0
12-
github.com/libp2p/go-libp2p v0.30.0
12+
github.com/libp2p/go-libp2p v0.32.0
1313
github.com/libp2p/go-libp2p-routing-helpers v0.7.0
14-
github.com/multiformats/go-multiaddr v0.11.0
14+
github.com/multiformats/go-multiaddr v0.12.0
1515
github.com/multiformats/go-multicodec v0.9.0
1616
github.com/prometheus/client_golang v1.16.0
1717
github.com/stretchr/testify v1.8.4
@@ -46,18 +46,17 @@ require (
4646
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
4747
github.com/godbus/dbus/v5 v5.1.0 // indirect
4848
github.com/gogo/protobuf v1.3.2 // indirect
49-
github.com/golang/mock v1.6.0 // indirect
5049
github.com/golang/protobuf v1.5.3 // indirect
5150
github.com/google/gopacket v1.1.19 // indirect
52-
github.com/google/pprof v0.0.0-20230821062121-407c9e7a662f // indirect
51+
github.com/google/pprof v0.0.0-20231023181126-ff6d637d2a7b // indirect
5352
github.com/google/uuid v1.3.0 // indirect
5453
github.com/gorilla/websocket v1.5.0 // indirect
5554
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
5655
github.com/hashicorp/errwrap v1.1.0 // indirect
5756
github.com/hashicorp/go-multierror v1.1.1 // indirect
5857
github.com/hashicorp/golang-lru v0.5.4 // indirect
5958
github.com/hashicorp/golang-lru/v2 v2.0.5 // indirect
60-
github.com/huin/goupnp v1.2.0 // indirect
59+
github.com/huin/goupnp v1.3.0 // indirect
6160
github.com/ipfs/bbloom v0.0.4 // indirect
6261
github.com/ipfs/go-bitfield v1.1.0 // indirect
6362
github.com/ipfs/go-ipfs-delay v0.0.1 // indirect
@@ -76,7 +75,7 @@ require (
7675
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
7776
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
7877
github.com/jbenet/goprocess v0.1.4 // indirect
79-
github.com/klauspost/compress v1.16.7 // indirect
78+
github.com/klauspost/compress v1.17.2 // indirect
8079
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
8180
github.com/koron/go-ssdp v0.0.4 // indirect
8281
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
@@ -93,9 +92,9 @@ require (
9392
github.com/libp2p/go-reuseport v0.4.0 // indirect
9493
github.com/libp2p/go-yamux/v4 v4.0.1 // indirect
9594
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
96-
github.com/mattn/go-isatty v0.0.19 // indirect
95+
github.com/mattn/go-isatty v0.0.20 // indirect
9796
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
98-
github.com/miekg/dns v1.1.55 // indirect
97+
github.com/miekg/dns v1.1.56 // indirect
9998
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b // indirect
10099
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
101100
github.com/minio/sha256-simd v1.0.1 // indirect
@@ -106,9 +105,9 @@ require (
106105
github.com/multiformats/go-multiaddr-fmt v0.1.0 // indirect
107106
github.com/multiformats/go-multibase v0.2.0 // indirect
108107
github.com/multiformats/go-multihash v0.2.3 // indirect
109-
github.com/multiformats/go-multistream v0.4.1 // indirect
108+
github.com/multiformats/go-multistream v0.5.0 // indirect
110109
github.com/multiformats/go-varint v0.0.7 // indirect
111-
github.com/onsi/ginkgo/v2 v2.11.0 // indirect
110+
github.com/onsi/ginkgo/v2 v2.13.0 // indirect
112111
github.com/opencontainers/runtime-spec v1.1.0 // indirect
113112
github.com/opentracing/opentracing-go v1.2.0 // indirect
114113
github.com/openzipkin/zipkin-go v0.4.1 // indirect
@@ -121,9 +120,9 @@ require (
121120
github.com/prometheus/common v0.44.0 // indirect
122121
github.com/prometheus/procfs v0.11.1 // indirect
123122
github.com/quic-go/qpack v0.4.0 // indirect
124-
github.com/quic-go/qtls-go1-20 v0.3.2 // indirect
125-
github.com/quic-go/quic-go v0.38.0 // indirect
126-
github.com/quic-go/webtransport-go v0.5.3 // indirect
123+
github.com/quic-go/qtls-go1-20 v0.3.4 // indirect
124+
github.com/quic-go/quic-go v0.39.3 // indirect
125+
github.com/quic-go/webtransport-go v0.6.0 // indirect
127126
github.com/raulk/go-watchdog v1.3.0 // indirect
128127
github.com/samber/lo v1.36.0 // indirect
129128
github.com/spaolacci/murmur3 v1.1.0 // indirect
@@ -148,18 +147,19 @@ require (
148147
go.opentelemetry.io/otel/metric v0.37.0 // indirect
149148
go.opentelemetry.io/otel/trace v1.14.0 // indirect
150149
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
151-
go.uber.org/dig v1.17.0 // indirect
152-
go.uber.org/fx v1.20.0 // indirect
150+
go.uber.org/dig v1.17.1 // indirect
151+
go.uber.org/fx v1.20.1 // indirect
152+
go.uber.org/mock v0.3.0 // indirect
153153
go.uber.org/multierr v1.11.0 // indirect
154-
go.uber.org/zap v1.25.0 // indirect
155-
golang.org/x/crypto v0.12.0 // indirect
156-
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect
157-
golang.org/x/mod v0.12.0 // indirect
158-
golang.org/x/net v0.14.0 // indirect
159-
golang.org/x/sync v0.3.0 // indirect
160-
golang.org/x/sys v0.11.0 // indirect
161-
golang.org/x/text v0.12.0 // indirect
162-
golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846 // indirect
154+
go.uber.org/zap v1.26.0 // indirect
155+
golang.org/x/crypto v0.14.0 // indirect
156+
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
157+
golang.org/x/mod v0.13.0 // indirect
158+
golang.org/x/net v0.17.0 // indirect
159+
golang.org/x/sync v0.4.0 // indirect
160+
golang.org/x/sys v0.13.0 // indirect
161+
golang.org/x/text v0.13.0 // indirect
162+
golang.org/x/tools v0.14.0 // indirect
163163
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
164164
gonum.org/v1/gonum v0.11.0 // indirect
165165
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect

0 commit comments

Comments
 (0)