Skip to content

Commit 9f2be81

Browse files
committed
Update dependencies
1 parent 882a687 commit 9f2be81

22 files changed

Lines changed: 1030 additions & 307 deletions

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ require (
5252
github.com/xyproto/splash v1.3.1
5353
github.com/xyproto/tinysvg v1.2.1
5454
github.com/xyproto/unzip v1.0.1
55-
github.com/xyproto/vt v1.9.12
55+
github.com/xyproto/vt v1.9.13
5656
github.com/yosssi/gcss v0.1.0
5757
golang.org/x/net v0.56.0
5858
)
@@ -84,8 +84,8 @@ require (
8484
github.com/google/go-tpm v0.9.8 // indirect
8585
github.com/google/uuid v1.6.0 // indirect
8686
github.com/gorilla/css v1.0.1 // indirect
87-
github.com/klauspost/compress v1.18.6 // indirect
88-
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
87+
github.com/klauspost/compress v1.18.7 // indirect
88+
github.com/klauspost/cpuid/v2 v2.4.0 // indirect
8989
github.com/libdns/libdns v1.1.1 // indirect
9090
github.com/mattetti/filebuffer v1.0.1 // indirect
9191
github.com/mholt/acmez/v3 v3.1.6 // indirect
@@ -97,7 +97,7 @@ require (
9797
github.com/philhofer/fwd v1.2.0 // indirect
9898
github.com/pingcap/errors v0.11.5-0.20260310054046-9c8b3586e4b2 // indirect
9999
github.com/pingcap/log v1.1.1-0.20260227082333-572e590d08f1 // indirect
100-
github.com/pingcap/tidb/pkg/parser v0.0.0-20260626103852-aa350698e212 // indirect
100+
github.com/pingcap/tidb/pkg/parser v0.0.0-20260701072936-f0cba3db68f7 // indirect
101101
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
102102
github.com/quic-go/qpack v0.6.0 // indirect
103103
github.com/rogpeppe/go-internal v1.12.0 // indirect

go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUq
100100
github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg=
101101
github.com/jmoiron/sqlx v1.4.0 h1:1PLqN7S1UYp5t4SrVVnt4nUVNemrDAtxlulVe+Qgm3o=
102102
github.com/jmoiron/sqlx v1.4.0/go.mod h1:ZrZ7UsYB/weZdl2Bxg6jCRO9c3YHl8r3ahlKmRT4JLY=
103-
github.com/klauspost/compress v1.18.6 h1:2jupLlAwFm95+YDR+NwD2MEfFO9d4z4Prjl1XXDjuao=
104-
github.com/klauspost/compress v1.18.6/go.mod h1:cwPg85FWrGar70rWktvGQj8/hthj3wpl0PGDogxkrSQ=
105-
github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y=
106-
github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
103+
github.com/klauspost/compress v1.18.7 h1:aUyZsS4kH3QTKurYhAOwAHxllVPnOthb3vPfnF1Ehjw=
104+
github.com/klauspost/compress v1.18.7/go.mod h1:cwPg85FWrGar70rWktvGQj8/hthj3wpl0PGDogxkrSQ=
105+
github.com/klauspost/cpuid/v2 v2.4.0 h1:S6Hrbc7+ywsr0r+RLapfGBHfyefhCTwEh3A0tV913Dw=
106+
github.com/klauspost/cpuid/v2 v2.4.0/go.mod h1:19jmZ9mjzoF//ddRSUsv0zfBTJWh3QJh9FNxZTMrGxU=
107107
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
108108
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
109109
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
@@ -153,8 +153,8 @@ github.com/pingcap/errors v0.11.5-0.20260310054046-9c8b3586e4b2 h1:cLgCk5mwDG9lD
153153
github.com/pingcap/errors v0.11.5-0.20260310054046-9c8b3586e4b2/go.mod h1:ktAJCA9lxrHHjVyVl2pKJFvzBnq2eZbb+CUOjBRPlXo=
154154
github.com/pingcap/log v1.1.1-0.20260227082333-572e590d08f1 h1:A2bEfgSb7hLwR9mxDszgGKweF+xY9YoTDG+8RjdFjDE=
155155
github.com/pingcap/log v1.1.1-0.20260227082333-572e590d08f1/go.mod h1:pxfz2oJfAuhwrb3/rcLqD//GS/5gRP4gD022iP3cEO0=
156-
github.com/pingcap/tidb/pkg/parser v0.0.0-20260626103852-aa350698e212 h1:Qd/zUZ1rmjuuwUJB1/twvR5P8ihRVHcp3fqf3zIujWU=
157-
github.com/pingcap/tidb/pkg/parser v0.0.0-20260626103852-aa350698e212/go.mod h1:zDLDsfNBU5+L6T4J9/OgWAHc/WZvMUjbpgHqQ/t3yKo=
156+
github.com/pingcap/tidb/pkg/parser v0.0.0-20260701072936-f0cba3db68f7 h1:oZPJ0TOeGfolUsVWwJkMzoAiIqLnETroy1UcfE9j+dM=
157+
github.com/pingcap/tidb/pkg/parser v0.0.0-20260701072936-f0cba3db68f7/go.mod h1:zDLDsfNBU5+L6T4J9/OgWAHc/WZvMUjbpgHqQ/t3yKo=
158158
github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4/go.mod h1:4OwLy04Bl9Ef3GJJCoec+30X3LQs/0/m4HFRt/2LUSA=
159159
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=
160160
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU=
@@ -268,8 +268,8 @@ github.com/xyproto/unzip v1.0.1 h1:YJRB7WQGHwwVeyZkCjZRQdun5Uh26fH4rs6DMt4Q49I=
268268
github.com/xyproto/unzip v1.0.1/go.mod h1:he93Op7lF5UTCk1ihrjnimg2a4w3Ux4Av8aMM5a6rmg=
269269
github.com/xyproto/usermodel v1.3.0 h1:WVtjXSKZUBn754DvdSjA08tX86UdyLGbv1XU5VyWVMc=
270270
github.com/xyproto/usermodel v1.3.0/go.mod h1:gdT4d6KlASXDFnQl5gzRi73Jwb5YP338x2sC/0PqwPg=
271-
github.com/xyproto/vt v1.9.12 h1:qjr1MVPRnUYTz2uNttjlkcsN/AF/siZ9bjtblBndrnA=
272-
github.com/xyproto/vt v1.9.12/go.mod h1:EtJk0Sn86B8rSOLpMtPq9woNH9qkGSZKFbDFRAPDQ0A=
271+
github.com/xyproto/vt v1.9.13 h1:eRdqQmEmkop545tJPqlQtjBIViwsTrXpPculTwfbBjI=
272+
github.com/xyproto/vt v1.9.13/go.mod h1:EtJk0Sn86B8rSOLpMtPq9woNH9qkGSZKFbDFRAPDQ0A=
273273
github.com/yosssi/gcss v0.1.0 h1:jRuino7qq7kqntBIhT+0xSUI5/sBgCA/zCQ1Tuzd6Gg=
274274
github.com/yosssi/gcss v0.1.0/go.mod h1:M3mTPOWZWjVROkXKZ2AiDzOBOXu2MqQeDXF/nKO44sI=
275275
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=

vendor/github.com/klauspost/cpuid/v2/.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/klauspost/cpuid/v2/README.md

Lines changed: 69 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)