Skip to content

Commit 4af8bfc

Browse files
build(deps): bump golang.org/x/tools from 0.32.0 to 0.33.0 (#5786)
Co-authored-by: Fernandez Ludovic <[email protected]>
1 parent f0c8514 commit 4af8bfc

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

.golangci.next.reference.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,6 +1600,8 @@ linters:
16001600
- findcall
16011601
# Report assembly that clobbers the frame pointer before saving it.
16021602
- framepointer
1603+
# Check format of addresses passed to net.Dial.
1604+
- hostport
16031605
# Report using Go 1.22 enhanced ServeMux patterns in older Go versions.
16041606
- httpmux
16051607
# Check for mistakes using HTTP responses.
@@ -1683,6 +1685,7 @@ linters:
16831685
- fieldalignment
16841686
- findcall
16851687
- framepointer
1688+
- hostport
16861689
- httpmux
16871690
- httpresponse
16881691
- ifaceassert

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ require (
130130
go.uber.org/automaxprocs v1.6.0
131131
golang.org/x/mod v0.24.0
132132
golang.org/x/sys v0.33.0
133-
golang.org/x/tools v0.32.0
133+
golang.org/x/tools v0.33.0
134134
gopkg.in/yaml.v3 v3.0.1
135135
honnef.co/go/tools v0.6.1
136136
mvdan.cc/gofumpt v0.8.0
@@ -209,7 +209,7 @@ require (
209209
go.uber.org/zap v1.24.0 // indirect
210210
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
211211
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
212-
golang.org/x/sync v0.13.0 // indirect
212+
golang.org/x/sync v0.14.0 // indirect
213213
golang.org/x/text v0.24.0 // indirect
214214
google.golang.org/protobuf v1.36.6 // indirect
215215
gopkg.in/ini.v1 v1.67.0 // indirect

go.sum

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

jsonschema/golangci.next.jsonschema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,7 @@
539539
"fieldalignment",
540540
"findcall",
541541
"framepointer",
542+
"hostport",
542543
"httpmux",
543544
"httpresponse",
544545
"ifaceassert",

pkg/golinters/govet/govet.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424
"golang.org/x/tools/go/analysis/passes/fieldalignment"
2525
"golang.org/x/tools/go/analysis/passes/findcall"
2626
"golang.org/x/tools/go/analysis/passes/framepointer"
27+
"golang.org/x/tools/go/analysis/passes/hostport"
2728
"golang.org/x/tools/go/analysis/passes/httpmux"
2829
"golang.org/x/tools/go/analysis/passes/httpresponse"
2930
"golang.org/x/tools/go/analysis/passes/ifaceassert"
@@ -78,6 +79,7 @@ var (
7879
fieldalignment.Analyzer,
7980
findcall.Analyzer,
8081
framepointer.Analyzer,
82+
hostport.Analyzer,
8183
httpmux.Analyzer,
8284
httpresponse.Analyzer,
8385
ifaceassert.Analyzer,

0 commit comments

Comments
 (0)