Skip to content

Commit b403dac

Browse files
authored
chore(deps): update dependencies to latest version (#1662)
1 parent b920df4 commit b403dac

File tree

10 files changed

+104
-97
lines changed

10 files changed

+104
-97
lines changed

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.23.3'
20+
go-version: '1.23.4'
2121

2222
- name: Checkout code
2323
uses: actions/checkout@v4

.github/workflows/deadlock.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install Go
1414
uses: actions/setup-go@v5
1515
with:
16-
go-version: '1.23.3'
16+
go-version: '1.23.4'
1717

1818
- name: Checkout code
1919
uses: actions/checkout@v4

.github/workflows/gui.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Go
2525
uses: actions/setup-go@v5
2626
with:
27-
go-version: '1.23.3'
27+
go-version: '1.23.4'
2828

2929
- name: Build the binary
3030
run: make build_gui
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install Go
4848
uses: actions/setup-go@v5
4949
with:
50-
go-version: '1.23.3'
50+
go-version: '1.23.4'
5151

5252
- name: Build the binary
5353
run: make build_gui

.github/workflows/linting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.23.3'
20+
go-version: '1.23.4'
2121

2222
- name: Checkout code
2323
uses: actions/checkout@v4

.github/workflows/releaser.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Go
2727
uses: actions/setup-go@v5
2828
with:
29-
go-version: '1.23.3'
29+
go-version: '1.23.4'
3030

3131
- name: Create release files
3232
run: bash ./.github/releasers/releaser_cli.sh
@@ -69,7 +69,7 @@ jobs:
6969
- name: Install Go
7070
uses: actions/setup-go@v5
7171
with:
72-
go-version: '1.23.3'
72+
go-version: '1.23.4'
7373

7474
- name: Create release files
7575
run: bash ./.github/releasers/releaser_gui_linux.sh
@@ -111,7 +111,7 @@ jobs:
111111
- name: Install Go
112112
uses: actions/setup-go@v5
113113
with:
114-
go-version: '1.23.3'
114+
go-version: '1.23.4'
115115

116116
- name: Create release files
117117
run: bash ./.github/releasers/releaser_gui_macos.sh
@@ -155,7 +155,7 @@ jobs:
155155
- name: Install Go
156156
uses: actions/setup-go@v5
157157
with:
158-
go-version: '1.23.3'
158+
go-version: '1.23.4'
159159

160160
- name: Create release files
161161
run: bash ./.github/releasers/releaser_gui_macos.sh

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Go
2424
uses: actions/setup-go@v5
2525
with:
26-
go-version: '1.23.3'
26+
go-version: '1.23.4'
2727

2828
- name: Unit tests
2929
run: make unit_test

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.3-alpine3.19 as builder
1+
FROM golang:1.23.4-alpine3.19 as builder
22

33
RUN apk add --no-cache git gmp-dev build-base g++ openssl-dev
44
ADD . /pactus

docs/releasing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ be sure to update the [API documentation](https://docs.pactus.org/api/) and
137137
## 12. Celebrate 🎉
138138

139139
Before celebrating, ensure that the release has been tested and that all documentation is up to date.
140-
Don't forget to update dependencies after major releases (see [Update Dependencies](./update-dependensies.md)).
140+
Don't forget to update dependencies after major releases (see [Update Dependencies](./update-dependencies.md)).

go.mod

+29-27
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pactus-project/pactus
22

3-
go 1.23.3
3+
go 1.23.4
44

55
require (
66
github.com/NathanBaulch/protoc-gen-cobra v1.2.1
@@ -15,12 +15,12 @@ require (
1515
github.com/gorilla/mux v1.8.1
1616
github.com/gotk3/gotk3 v0.6.2
1717
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
18-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0
18+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1
1919
github.com/hashicorp/golang-lru/v2 v2.0.7
2020
github.com/inancgumus/screen v0.0.0-20190314163918-06e984b86ed3
2121
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
2222
github.com/kilic/bls12-381 v0.1.1-0.20210503002446-7b7597926c69
23-
github.com/libp2p/go-libp2p v0.37.2
23+
github.com/libp2p/go-libp2p v0.38.1
2424
github.com/libp2p/go-libp2p-kad-dht v0.28.1
2525
github.com/libp2p/go-libp2p-pubsub v0.12.0
2626
github.com/manifoldco/promptui v0.9.0
@@ -38,25 +38,25 @@ require (
3838
github.com/tyler-smith/go-bip39 v1.1.0
3939
go.nanomsg.org/mangos/v3 v3.4.2
4040
golang.org/x/crypto v0.31.0
41-
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
41+
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
4242
golang.org/x/term v0.27.0
43-
google.golang.org/grpc v1.68.0
44-
google.golang.org/protobuf v1.35.2
43+
google.golang.org/grpc v1.69.2
44+
google.golang.org/protobuf v1.36.1
4545
gopkg.in/natefinch/lumberjack.v2 v2.2.1
4646
)
4747

4848
require (
4949
github.com/Microsoft/go-winio v0.6.2 // indirect
5050
github.com/benbjohnson/clock v1.3.5 // indirect
5151
github.com/beorn7/perks v1.0.1 // indirect
52-
github.com/bits-and-blooms/bitset v1.17.0 // indirect
52+
github.com/bits-and-blooms/bitset v1.20.0 // indirect
5353
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5454
github.com/chzyer/readline v1.5.1 // indirect
55-
github.com/consensys/bavard v0.1.22 // indirect
55+
github.com/consensys/bavard v0.1.25 // indirect
5656
github.com/containerd/cgroups v1.1.0 // indirect
5757
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
5858
github.com/creachadair/jrpc2 v1.3.0 // indirect
59-
github.com/creachadair/mds v0.22.0 // indirect
59+
github.com/creachadair/mds v0.22.1 // indirect
6060
github.com/davecgh/go-spew v1.1.1 // indirect
6161
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c // indirect
6262
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
@@ -72,15 +72,15 @@ require (
7272
github.com/gogo/protobuf v1.3.2 // indirect
7373
github.com/golang/snappy v0.0.4 // indirect
7474
github.com/google/gopacket v1.1.19 // indirect
75-
github.com/google/pprof v0.0.0-20241122213907-cbe949e5a41b // indirect
75+
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
7676
github.com/gorilla/websocket v1.5.3 // indirect
7777
github.com/hashicorp/errwrap v1.1.0 // indirect
7878
github.com/hashicorp/go-multierror v1.1.1 // indirect
7979
github.com/hashicorp/golang-lru v1.0.2 // indirect
8080
github.com/huin/goupnp v1.3.0 // indirect
8181
github.com/iancoleman/strcase v0.3.0 // indirect
8282
github.com/inconshreveable/mousetrap v1.1.0 // indirect
83-
github.com/ipfs/boxo v0.24.3 // indirect
83+
github.com/ipfs/boxo v0.26.0 // indirect
8484
github.com/ipfs/go-cid v0.4.1 // indirect
8585
github.com/ipfs/go-datastore v0.6.0 // indirect
8686
github.com/ipfs/go-log/v2 v2.5.1 // indirect
@@ -90,7 +90,7 @@ require (
9090
github.com/jbenet/goprocess v0.1.4 // indirect
9191
github.com/klauspost/compress v1.17.11 // indirect
9292
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
93-
github.com/koron/go-ssdp v0.0.4 // indirect
93+
github.com/koron/go-ssdp v0.0.5 // indirect
9494
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
9595
github.com/libp2p/go-cidranger v1.1.0 // indirect
9696
github.com/libp2p/go-flow-metrics v0.2.0 // indirect
@@ -127,59 +127,61 @@ require (
127127
github.com/multiformats/go-multistream v0.6.0 // indirect
128128
github.com/multiformats/go-varint v0.0.7 // indirect
129129
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
130-
github.com/onsi/ginkgo/v2 v2.22.0 // indirect
130+
github.com/onsi/ginkgo/v2 v2.22.1 // indirect
131131
github.com/opencontainers/runtime-spec v1.2.0 // indirect
132132
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
133-
github.com/pion/datachannel v1.5.9 // indirect
133+
github.com/pion/datachannel v1.5.10 // indirect
134134
github.com/pion/dtls/v2 v2.2.12 // indirect
135135
github.com/pion/ice/v2 v2.3.37 // indirect
136136
github.com/pion/interceptor v0.1.37 // indirect
137137
github.com/pion/logging v0.2.2 // indirect
138138
github.com/pion/mdns v0.0.12 // indirect
139139
github.com/pion/randutil v0.1.0 // indirect
140-
github.com/pion/rtcp v1.2.14 // indirect
141-
github.com/pion/rtp v1.8.9 // indirect
142-
github.com/pion/sctp v1.8.34 // indirect
140+
github.com/pion/rtcp v1.2.15 // indirect
141+
github.com/pion/rtp v1.8.10 // indirect
142+
github.com/pion/sctp v1.8.35 // indirect
143143
github.com/pion/sdp/v3 v3.0.9 // indirect
144144
github.com/pion/srtp/v2 v2.0.20 // indirect
145145
github.com/pion/stun v0.6.1 // indirect
146146
github.com/pion/transport/v2 v2.2.10 // indirect
147+
github.com/pion/transport/v3 v3.0.7 // indirect
147148
github.com/pion/turn/v2 v2.1.6 // indirect
148-
github.com/pion/webrtc/v3 v3.3.4 // indirect
149+
github.com/pion/webrtc/v3 v3.3.5 // indirect
149150
github.com/pkg/term v1.2.0-beta.2 // indirect
150151
github.com/pmezard/go-difflib v1.0.0 // indirect
151152
github.com/polydawn/refmt v0.89.0 // indirect
152153
github.com/prometheus/client_model v0.6.1 // indirect
153-
github.com/prometheus/common v0.60.1 // indirect
154+
github.com/prometheus/common v0.61.0 // indirect
154155
github.com/prometheus/procfs v0.15.1 // indirect
155156
github.com/quic-go/qpack v0.5.1 // indirect
156157
github.com/quic-go/quic-go v0.48.2 // indirect
157158
github.com/quic-go/webtransport-go v0.8.1-0.20241018022711-4ac2c9250e66 // indirect
158159
github.com/raulk/go-watchdog v1.3.0 // indirect
159160
github.com/rivo/uniseg v0.4.7 // indirect
160161
github.com/spaolacci/murmur3 v1.1.0 // indirect
161-
github.com/spf13/cast v1.7.0 // indirect
162+
github.com/spf13/cast v1.7.1 // indirect
162163
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 // indirect
163164
github.com/wlynxg/anet v0.0.5 // indirect
164165
github.com/x448/float16 v0.8.4 // indirect
165166
go.opencensus.io v0.24.0 // indirect
166-
go.opentelemetry.io/otel v1.32.0 // indirect
167-
go.opentelemetry.io/otel/metric v1.32.0 // indirect
168-
go.opentelemetry.io/otel/trace v1.32.0 // indirect
167+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
168+
go.opentelemetry.io/otel v1.33.0 // indirect
169+
go.opentelemetry.io/otel/metric v1.33.0 // indirect
170+
go.opentelemetry.io/otel/trace v1.33.0 // indirect
169171
go.uber.org/dig v1.18.0 // indirect
170172
go.uber.org/fx v1.23.0 // indirect
171173
go.uber.org/mock v0.5.0 // indirect
172174
go.uber.org/multierr v1.11.0 // indirect
173175
go.uber.org/zap v1.27.0 // indirect
174176
golang.org/x/mod v0.22.0 // indirect
175-
golang.org/x/net v0.31.0 // indirect
177+
golang.org/x/net v0.33.0 // indirect
176178
golang.org/x/sync v0.10.0 // indirect
177179
golang.org/x/sys v0.28.0 // indirect
178180
golang.org/x/text v0.21.0 // indirect
179-
golang.org/x/tools v0.27.0 // indirect
181+
golang.org/x/tools v0.28.0 // indirect
180182
gonum.org/v1/gonum v0.15.1 // indirect
181-
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 // indirect
182-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect
183+
google.golang.org/genproto/googleapis/api v0.0.0-20241223144023-3abc09e42ca8 // indirect
184+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241223144023-3abc09e42ca8 // indirect
183185
gopkg.in/yaml.v3 v3.0.1 // indirect
184186
lukechampine.com/blake3 v1.3.0 // indirect
185187
rsc.io/tmplfunc v0.0.3 // indirect

0 commit comments

Comments
 (0)