Skip to content

Commit 6c0bc22

Browse files
authored
*: update third-party dependencies (pingcap#12560)
close pingcap#12556
1 parent e0c6d64 commit 6c0bc22

File tree

8 files changed

+50
-52
lines changed

8 files changed

+50
-52
lines changed

deployments/ticdc/docker/integration-test.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN ./download-integration-test-binaries.sh $BRANCH $COMMUNITY $VERSION $OS $ARC
2929
RUN ls ./bin
3030

3131
# Download go into /usr/local dir.
32-
ENV GOLANG_VERSION 1.25.6
32+
ENV GOLANG_VERSION 1.25.8
3333
ENV GOLANG_DOWNLOAD_URL https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz
3434
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
3535
&& tar -C /usr/local -xzf golang.tar.gz \

examples/golang/avro-checksum-verification/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module avro-checksum-sample
22

3-
go 1.25.6
3+
go 1.25.8
44

55
require (
66
github.com/linkedin/goavro/v2 v2.11.1

examples/golang/canal-json-handle-key-only/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module canal-json-handle-key-only-example
22

3-
go 1.25.6
3+
go 1.25.8
44

55
require (
66
github.com/go-sql-driver/mysql v1.7.1

go.mod

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

3-
go 1.25.6
3+
go 1.25.8
44

55
require (
66
cloud.google.com/go/storage v1.52.0
@@ -136,7 +136,7 @@ require (
136136
cloud.google.com/go/kms v1.21.0 // indirect
137137
cloud.google.com/go/longrunning v0.6.6 // indirect
138138
cloud.google.com/go/monitoring v1.24.0 // indirect
139-
filippo.io/edwards25519 v1.1.0 // indirect
139+
filippo.io/edwards25519 v1.1.1 // indirect
140140
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
141141
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
142142
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ cloud.google.com/go/storage v1.52.0 h1:ROpzMW/IwipKtatA69ikxibdzQSiXJrY9f6IgBa9A
2626
cloud.google.com/go/storage v1.52.0/go.mod h1:4wrBAbAYUvYkbrf19ahGm4I5kDQhESSqN3CGEkMGvOY=
2727
cloud.google.com/go/trace v1.11.3 h1:c+I4YFjxRQjvAhRmSsmjpASUKq88chOX854ied0K/pE=
2828
cloud.google.com/go/trace v1.11.3/go.mod h1:pt7zCYiDSQjC9Y2oqCsh9jF4GStB/hmjrYLsxRR27q8=
29-
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
30-
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
29+
filippo.io/edwards25519 v1.1.1 h1:YpjwWWlNmGIDyXOn8zLzqiD+9TyIlPhGFG96P39uBpw=
30+
filippo.io/edwards25519 v1.1.1/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
3131
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs=
3232
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod h1:hN7oaIRCjzsZ2dE+yG5k+rsdt3qcwykqK6HVGcKwsw4=
3333
github.com/99designs/keyring v1.2.1 h1:tYLp1ULvO7i3fI5vE21ReQuj99QFSs7lGm0xWyJo87o=

tests/integration_tests/debezium/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/breezewish/checker
22

3-
go 1.25.6
3+
go 1.25.8
44

55
require (
66
github.com/alecthomas/chroma v0.10.0

tools/check/go.mod

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pingcap/tidb-cdc/_tools
22

3-
go 1.25.6
3+
go 1.25.8
44

55
require (
66
github.com/AlekSi/gocov-xml v1.1.0
@@ -19,10 +19,10 @@ require (
1919
github.com/tinylib/msgp v1.1.6
2020
github.com/vektra/mockery/v2 v2.14.1
2121
github.com/zhouqiang-cl/gocovmerge v0.0.0-20190125174600-5256314471af
22-
golang.org/x/tools v0.31.0
22+
golang.org/x/tools v0.36.0
2323
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
2424
google.golang.org/protobuf v1.36.5
25-
gotest.tools/gotestsum v1.8.1
25+
gotest.tools/gotestsum v1.13.0
2626
mvdan.cc/gofumpt v0.7.0
2727
mvdan.cc/sh/v3 v3.3.1
2828
)
@@ -52,6 +52,7 @@ require (
5252
github.com/ashanbrown/forbidigo v1.6.0 // indirect
5353
github.com/ashanbrown/makezero v1.2.0 // indirect
5454
github.com/beorn7/perks v1.0.1 // indirect
55+
github.com/bitfield/gotestdox v0.2.2 // indirect
5556
github.com/bkielbasa/cyclop v1.2.3 // indirect
5657
github.com/blizzy78/varnamelen v0.8.0 // indirect
5758
github.com/bombsimon/wsl/v4 v4.5.0 // indirect
@@ -74,7 +75,7 @@ require (
7475
github.com/fatih/color v1.18.0 // indirect
7576
github.com/fatih/structtag v1.2.0 // indirect
7677
github.com/firefart/nonamedreturns v1.0.5 // indirect
77-
github.com/fsnotify/fsnotify v1.5.4 // indirect
78+
github.com/fsnotify/fsnotify v1.9.0 // indirect
7879
github.com/fzipp/gocyclo v0.6.0 // indirect
7980
github.com/getkin/kin-openapi v0.80.0 // indirect
8081
github.com/ghodss/yaml v1.0.0 // indirect
@@ -122,7 +123,6 @@ require (
122123
github.com/jgautheron/goconst v1.7.1 // indirect
123124
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
124125
github.com/jjti/go-spancheck v0.6.4 // indirect
125-
github.com/jonboulle/clockwork v0.2.2 // indirect
126126
github.com/josharian/intern v1.0.0 // indirect
127127
github.com/julz/importas v0.2.0 // indirect
128128
github.com/karamaru-alpha/copyloopvar v1.2.1 // indirect
@@ -227,14 +227,16 @@ require (
227227
go.uber.org/automaxprocs v1.6.0 // indirect
228228
go.uber.org/multierr v1.9.0 // indirect
229229
go.uber.org/zap v1.24.0 // indirect
230-
golang.org/x/crypto v0.36.0 // indirect
230+
golang.org/x/crypto v0.41.0 // indirect
231231
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
232-
golang.org/x/mod v0.24.0 // indirect
233-
golang.org/x/net v0.37.0 // indirect
234-
golang.org/x/sync v0.12.0 // indirect
235-
golang.org/x/sys v0.31.0 // indirect
236-
golang.org/x/term v0.30.0 // indirect
237-
golang.org/x/text v0.23.0 // indirect
232+
golang.org/x/mod v0.27.0 // indirect
233+
golang.org/x/net v0.43.0 // indirect
234+
golang.org/x/sync v0.17.0 // indirect
235+
golang.org/x/sys v0.36.0 // indirect
236+
golang.org/x/term v0.35.0 // indirect
237+
golang.org/x/text v0.28.0 // indirect
238+
golang.org/x/tools/go/expect v0.1.1-deprecated // indirect
239+
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated // indirect
238240
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
239241
google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
240242
gopkg.in/ini.v1 v1.67.0 // indirect

0 commit comments

Comments
 (0)