Skip to content

Commit cbaacc1

Browse files
authored
Merge pull request #240 from ipfs/dependency-upgrades
Dependency upgrades
2 parents 496b11e + 3f8cc37 commit cbaacc1

File tree

5 files changed

+103
-174
lines changed

5 files changed

+103
-174
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go
1414
uses: actions/setup-go@v5
1515
with:
16-
go-version: "1.22"
16+
go-version: "1.23"
1717

1818
- name: Install depedencies
1919
run: go install honnef.co/go/tools/cmd/staticcheck@latest
@@ -48,7 +48,7 @@ jobs:
4848
- name: Set up Go
4949
uses: actions/setup-go@v5
5050
with:
51-
go-version: "1.22"
51+
go-version: "1.23"
5252

5353
- name: Test
5454
run: go test -timeout 30m -v -run "TestDatastoreSuite" .

go.mod

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
module github.com/ipfs/go-ds-crdt
22

3-
go 1.21
3+
go 1.23
4+
5+
toolchain go1.23.2
46

57
require (
68
github.com/dgraph-io/badger v1.6.2
79
github.com/golang/protobuf v1.5.3
810
github.com/ipfs/bbloom v0.0.4
9-
github.com/ipfs/boxo v0.22.0
11+
github.com/ipfs/boxo v0.24.2
1012
github.com/ipfs/go-cid v0.4.1
1113
github.com/ipfs/go-datastore v0.6.0
1214
github.com/ipfs/go-ds-badger v0.3.0
1315
github.com/ipfs/go-ipld-format v0.6.0
1416
github.com/ipfs/go-log/v2 v2.5.1
1517
github.com/jbenet/goprocess v0.1.4
16-
github.com/libp2p/go-libp2p-pubsub v0.11.0
18+
github.com/libp2p/go-libp2p-pubsub v0.12.0
1719
github.com/multiformats/go-multihash v0.2.3
1820
github.com/pkg/errors v0.9.1
1921
go.uber.org/multierr v1.11.0
20-
google.golang.org/protobuf v1.34.2
22+
google.golang.org/protobuf v1.35.1
2123
)
2224

2325
require (
@@ -40,7 +42,7 @@ require (
4042
github.com/ipld/go-ipld-prime v0.21.0 // indirect
4143
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
4244
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
43-
github.com/libp2p/go-libp2p v0.36.1 // indirect
45+
github.com/libp2p/go-libp2p v0.37.0 // indirect
4446
github.com/libp2p/go-msgio v0.3.0 // indirect
4547
github.com/mattn/go-isatty v0.0.20 // indirect
4648
github.com/minio/sha256-simd v1.0.1 // indirect
@@ -59,9 +61,9 @@ require (
5961
go.opentelemetry.io/otel/metric v1.27.0 // indirect
6062
go.opentelemetry.io/otel/trace v1.27.0 // indirect
6163
go.uber.org/zap v1.27.0 // indirect
62-
golang.org/x/crypto v0.25.0 // indirect
63-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
64-
golang.org/x/net v0.27.0 // indirect
65-
golang.org/x/sys v0.22.0 // indirect
64+
golang.org/x/crypto v0.28.0 // indirect
65+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
66+
golang.org/x/net v0.30.0 // indirect
67+
golang.org/x/sys v0.26.0 // indirect
6668
lukechampine.com/blake3 v1.3.0 // indirect
6769
)

0 commit comments

Comments
 (0)