Skip to content

Commit 00e7e21

Browse files
Merge branch 'main' into dependabot/github_actions/actions-0f7df6ce22
2 parents 1fabcbb + ea4f2e8 commit 00e7e21

File tree

47 files changed

+2409
-1869
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2409
-1869
lines changed

.github/workflows/ci-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
# If you add a python version here, please make sure that the collector/Makefile publish and publish-layer targets
3030
# get updated as well
31-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
31+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
3232

3333
steps:
3434
- name: Checkout this repo

.github/workflows/publish-layer-collector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
artifact-name: opentelemetry-collector-layer-${{ matrix.architecture }}.zip
123123
layer-name: opentelemetry-collector
124124
architecture: ${{ matrix.architecture }}
125-
runtimes: "nodejs16.x nodejs18.x nodejs20.x nodejs22.x java11 java17 java21 python3.8 python3.9 python3.10 python3.11 python3.12"
125+
runtimes: "nodejs16.x nodejs18.x nodejs20.x nodejs22.x java11 java17 java21 python3.8 python3.9 python3.10 python3.11 python3.12 python3.13"
126126
release-group: prod
127127
aws_region: ${{ matrix.aws_region }}
128128
role-arn: ${{ github.event.inputs.role-arn }}

collector/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ package: build
4747

4848
.PHONY: publish
4949
publish:
50-
aws lambda publish-layer-version --layer-name $(LAYER_NAME) --zip-file fileb://$(BUILD_SPACE)/opentelemetry-collector-layer-$(GOARCH).zip --compatible-runtimes nodejs16.x nodejs18.x nodejs20.x nodejs22.x java11 java17 java21 python3.8 python3.9 python3.10 python3.11 python3.12 --query 'LayerVersionArn' --output text
50+
aws lambda publish-layer-version --layer-name $(LAYER_NAME) --zip-file fileb://$(BUILD_SPACE)/opentelemetry-collector-layer-$(GOARCH).zip --compatible-runtimes nodejs16.x nodejs18.x nodejs20.x nodejs22.x java11 java17 java21 python3.8 python3.9 python3.10 python3.11 python3.12 python3.13 --query 'LayerVersionArn' --output text
5151

5252
.PHONY: publish-layer
5353
publish-layer: package
5454
@echo Publishing collector extension layer...
55-
aws lambda publish-layer-version --layer-name $(LAYER_NAME) --zip-file fileb://$(BUILD_SPACE)/opentelemetry-collector-layer-$(GOARCH).zip --compatible-runtimes nodejs16.x nodejs18.x nodejs20.x nodejs22.x java11 java17 java21 python3.8 python3.9 python3.10 python3.11 python3.12 --query 'LayerVersionArn' --output text
55+
aws lambda publish-layer-version --layer-name $(LAYER_NAME) --zip-file fileb://$(BUILD_SPACE)/opentelemetry-collector-layer-$(GOARCH).zip --compatible-runtimes nodejs16.x nodejs18.x nodejs20.x nodejs22.x java11 java17 java21 python3.8 python3.9 python3.10 python3.11 python3.12 python3.13 --query 'LayerVersionArn' --output text
5656
@echo OpenTelemetry Collector layer published.
5757

5858
.PHONY: set-otelcol-version

collector/go.mod

Lines changed: 153 additions & 145 deletions
Large diffs are not rendered by default.

collector/go.sum

Lines changed: 325 additions & 307 deletions
Large diffs are not rendered by default.

collector/internal/telemetryapi/listener.go

Lines changed: 44 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,32 @@ package telemetryapi
1717
import (
1818
"context"
1919
"encoding/json"
20+
"errors"
2021
"fmt"
2122
"io"
23+
"math/rand"
24+
"net"
2225
"net/http"
2326
"os"
27+
"syscall"
2428
"time"
2529

2630
"github.com/golang-collections/go-datastructures/queue"
2731
"go.uber.org/zap"
2832
)
2933

30-
const defaultListenerPort = "53612"
31-
const initialQueueSize = 5
34+
const (
35+
initialQueueSize = 5
36+
maxRetries = 5
37+
// Define ephemeral port range (typical range is 49152-65535)
38+
minPort = 49152
39+
maxPort = 65535
40+
)
41+
42+
// getRandomPort returns a random port number within the ephemeral range
43+
func getRandomPort() string {
44+
return fmt.Sprintf("%d", rand.Intn(maxPort-minPort)+minPort)
45+
}
3246

3347
// Listener is used to listen to the Telemetry API
3448
type Listener struct {
@@ -46,26 +60,48 @@ func NewListener(logger *zap.Logger) *Listener {
4660
}
4761
}
4862

49-
func listenOnAddress() string {
63+
func (s *Listener) tryBindPort() (net.Listener, string, error) {
64+
for i := 0; i < maxRetries; i++ {
65+
port := getRandomPort()
66+
address := listenOnAddress(port)
67+
68+
l, err := net.Listen("tcp", address)
69+
if err != nil {
70+
if errors.Is(err, syscall.EADDRINUSE) {
71+
s.logger.Debug("Port in use, trying another",
72+
zap.String("address", address))
73+
continue
74+
}
75+
return nil, "", err
76+
}
77+
return l, address, nil
78+
}
79+
80+
return nil, "", fmt.Errorf("failed to find available port after %d attempts", maxRetries)
81+
}
82+
83+
func listenOnAddress(port string) string {
5084
envAwsLocal, ok := os.LookupEnv("AWS_SAM_LOCAL")
5185
var addr string
5286
if ok && envAwsLocal == "true" {
53-
addr = ":" + defaultListenerPort
87+
addr = ":" + port
5488
} else {
55-
addr = "sandbox.localdomain:" + defaultListenerPort
89+
addr = "sandbox.localdomain:" + port
5690
}
57-
5891
return addr
5992
}
6093

6194
// Start the server in a goroutine where the log events will be sent
6295
func (s *Listener) Start() (string, error) {
63-
address := listenOnAddress()
96+
listener, address, err := s.tryBindPort()
97+
if err != nil {
98+
return "", fmt.Errorf("failed to find available port: %w", err)
99+
}
64100
s.logger.Info("Listening for requests", zap.String("address", address))
65101
s.httpServer = &http.Server{Addr: address}
66102
http.HandleFunc("/", s.httpHandler)
67103
go func() {
68-
err := s.httpServer.ListenAndServe()
104+
err := s.httpServer.Serve(listener)
69105
if err != http.ErrServerClosed {
70106
s.logger.Error("Unexpected stop on HTTP Server", zap.Error(err))
71107
s.Shutdown()

collector/internal/tools/go.mod

Lines changed: 52 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -4,44 +4,44 @@ go 1.19
44

55
require (
66
github.com/client9/misspell v0.3.4
7-
github.com/golangci/golangci-lint v1.63.4
7+
github.com/golangci/golangci-lint v1.64.8
88
github.com/google/addlicense v1.1.1
99
github.com/jcchavezs/porto v0.7.0
1010
github.com/ory/go-acc v0.2.8
1111
github.com/pavius/impi v0.0.3
1212
github.com/tcnksm/ghr v0.17.0
1313
github.com/wadey/gocovmerge v0.0.0-20160331181800-b5bfa59ec0ad
14-
go.opentelemetry.io/build-tools/chloggen v0.17.0
14+
go.opentelemetry.io/build-tools/chloggen v0.22.0
1515
go.opentelemetry.io/build-tools/crosslink v0.15.0
1616
go.opentelemetry.io/build-tools/multimod v0.14.0
17-
go.opentelemetry.io/build-tools/semconvgen v0.17.0
17+
go.opentelemetry.io/build-tools/semconvgen v0.22.0
1818
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c
19-
golang.org/x/tools v0.29.0
19+
golang.org/x/tools v0.32.0
2020
)
2121

2222
require (
23-
4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
24-
4d63.com/gochecknoglobals v0.2.1 // indirect
23+
4d63.com/gocheckcompilerdirectives v1.3.0 // indirect
24+
4d63.com/gochecknoglobals v0.2.2 // indirect
2525
dario.cat/mergo v1.0.0 // indirect
26-
github.com/4meepo/tagalign v1.4.1 // indirect
26+
github.com/4meepo/tagalign v1.4.2 // indirect
2727
github.com/Abirdcfly/dupword v0.1.3 // indirect
2828
github.com/Antonboom/errname v1.0.0 // indirect
2929
github.com/Antonboom/nilnil v1.0.1 // indirect
3030
github.com/Antonboom/testifylint v1.5.2 // indirect
3131
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
32-
github.com/Crocmagnon/fatcontext v0.5.3 // indirect
32+
github.com/Crocmagnon/fatcontext v0.7.1 // indirect
3333
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
34-
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.0 // indirect
34+
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.1 // indirect
3535
github.com/Masterminds/semver/v3 v3.3.0 // indirect
3636
github.com/Microsoft/go-winio v0.6.1 // indirect
37-
github.com/OpenPeeDeeP/depguard/v2 v2.2.0 // indirect
37+
github.com/OpenPeeDeeP/depguard/v2 v2.2.1 // indirect
3838
github.com/ProtonMail/go-crypto v1.1.3 // indirect
3939
github.com/Songmu/retry v0.1.0 // indirect
4040
github.com/alecthomas/go-check-sumtype v0.3.1 // indirect
4141
github.com/alexkohler/nakedret/v2 v2.0.5 // indirect
4242
github.com/alexkohler/prealloc v1.0.0 // indirect
4343
github.com/alingse/asasalint v0.0.11 // indirect
44-
github.com/alingse/nilnesserr v0.1.1 // indirect
44+
github.com/alingse/nilnesserr v0.1.2 // indirect
4545
github.com/ashanbrown/forbidigo v1.6.0 // indirect
4646
github.com/ashanbrown/makezero v1.2.0 // indirect
4747
github.com/beorn7/perks v1.0.1 // indirect
@@ -53,10 +53,10 @@ require (
5353
github.com/breml/errchkjson v0.4.0 // indirect
5454
github.com/butuzov/ireturn v0.3.1 // indirect
5555
github.com/butuzov/mirror v1.3.0 // indirect
56-
github.com/catenacyber/perfsprint v0.7.1 // indirect
56+
github.com/catenacyber/perfsprint v0.8.2 // indirect
5757
github.com/ccojocar/zxcvbn-go v1.0.2 // indirect
5858
github.com/cespare/xxhash v1.1.0 // indirect
59-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
59+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6060
github.com/charithe/durationcheck v0.0.10 // indirect
6161
github.com/chavacava/garif v0.1.0 // indirect
6262
github.com/ckaznocha/intrange v0.3.0 // indirect
@@ -74,8 +74,8 @@ require (
7474
github.com/firefart/nonamedreturns v1.0.5 // indirect
7575
github.com/fsnotify/fsnotify v1.7.0 // indirect
7676
github.com/fzipp/gocyclo v0.6.0 // indirect
77-
github.com/ghostiam/protogetter v0.3.8 // indirect
78-
github.com/go-critic/go-critic v0.11.5 // indirect
77+
github.com/ghostiam/protogetter v0.3.9 // indirect
78+
github.com/go-critic/go-critic v0.12.0 // indirect
7979
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
8080
github.com/go-git/go-billy/v5 v5.6.1 // indirect
8181
github.com/go-git/go-git/v5 v5.13.1 // indirect
@@ -92,22 +92,22 @@ require (
9292
github.com/gofrs/flock v0.12.1 // indirect
9393
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
9494
github.com/golang/protobuf v1.5.3 // indirect
95-
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect
95+
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32 // indirect
9696
github.com/golangci/go-printf-func-name v0.1.0 // indirect
97-
github.com/golangci/gofmt v0.0.0-20241223200906-057b0627d9b9 // indirect
97+
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d // indirect
9898
github.com/golangci/misspell v0.6.0 // indirect
9999
github.com/golangci/plugin-module-register v0.1.1 // indirect
100-
github.com/golangci/revgrep v0.5.3 // indirect
100+
github.com/golangci/revgrep v0.8.0 // indirect
101101
github.com/golangci/unconvert v0.0.0-20240309020433-c5143eacb3ed // indirect
102-
github.com/google/go-cmp v0.6.0 // indirect
102+
github.com/google/go-cmp v0.7.0 // indirect
103103
github.com/google/go-github v17.0.0+incompatible // indirect
104104
github.com/google/go-github/v66 v66.0.0 // indirect
105105
github.com/google/go-querystring v1.1.0 // indirect
106106
github.com/google/uuid v1.6.0 // indirect
107107
github.com/gordonklaus/ineffassign v0.1.0 // indirect
108108
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
109-
github.com/gostaticanalysis/comment v1.4.2 // indirect
110-
github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect
109+
github.com/gostaticanalysis/comment v1.5.0 // indirect
110+
github.com/gostaticanalysis/forcetypeassert v0.2.0 // indirect
111111
github.com/gostaticanalysis/nilerr v0.1.1 // indirect
112112
github.com/hashicorp/go-immutable-radix/v2 v2.1.0 // indirect
113113
github.com/hashicorp/go-version v1.7.0 // indirect
@@ -120,47 +120,46 @@ require (
120120
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
121121
github.com/jjti/go-spancheck v0.6.4 // indirect
122122
github.com/julz/importas v0.2.0 // indirect
123-
github.com/karamaru-alpha/copyloopvar v1.1.0 // indirect
123+
github.com/karamaru-alpha/copyloopvar v1.2.1 // indirect
124124
github.com/kevinburke/ssh_config v1.2.0 // indirect
125-
github.com/kisielk/errcheck v1.8.0 // indirect
125+
github.com/kisielk/errcheck v1.9.0 // indirect
126126
github.com/kisielk/gotool v1.0.0 // indirect
127-
github.com/kkHAIKE/contextcheck v1.1.5 // indirect
127+
github.com/kkHAIKE/contextcheck v1.1.6 // indirect
128128
github.com/kulti/thelper v0.6.3 // indirect
129129
github.com/kunwardeep/paralleltest v1.0.10 // indirect
130-
github.com/kyoh86/exportloopref v0.1.11 // indirect
131130
github.com/lasiar/canonicalheader v1.1.2 // indirect
132-
github.com/ldez/exptostd v0.3.1 // indirect
133-
github.com/ldez/gomoddirectives v0.6.0 // indirect
134-
github.com/ldez/grignotin v0.7.0 // indirect
131+
github.com/ldez/exptostd v0.4.2 // indirect
132+
github.com/ldez/gomoddirectives v0.6.1 // indirect
133+
github.com/ldez/grignotin v0.9.0 // indirect
135134
github.com/ldez/tagliatelle v0.7.1 // indirect
136135
github.com/ldez/usetesting v0.4.2 // indirect
137136
github.com/leonklingele/grouper v1.1.2 // indirect
138137
github.com/macabu/inamedparam v0.1.3 // indirect
139138
github.com/magiconair/properties v1.8.7 // indirect
140139
github.com/maratori/testableexamples v1.0.0 // indirect
141140
github.com/maratori/testpackage v1.1.1 // indirect
142-
github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26 // indirect
143-
github.com/mattn/go-colorable v0.1.13 // indirect
141+
github.com/matoous/godox v1.1.0 // indirect
142+
github.com/mattn/go-colorable v0.1.14 // indirect
144143
github.com/mattn/go-isatty v0.0.20 // indirect
145144
github.com/mattn/go-runewidth v0.0.16 // indirect
146145
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
147-
github.com/mgechev/revive v1.5.1 // indirect
146+
github.com/mgechev/revive v1.7.0 // indirect
148147
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
149148
github.com/mitchellh/go-homedir v1.1.0 // indirect
150149
github.com/mitchellh/mapstructure v1.5.0 // indirect
151150
github.com/moricho/tparallel v0.3.2 // indirect
152151
github.com/nakabonne/nestif v0.3.1 // indirect
153152
github.com/nishanths/exhaustive v0.12.0 // indirect
154153
github.com/nishanths/predeclared v0.2.2 // indirect
155-
github.com/nunnatsa/ginkgolinter v0.18.4 // indirect
154+
github.com/nunnatsa/ginkgolinter v0.19.1 // indirect
156155
github.com/olekukonko/tablewriter v0.0.5 // indirect
157156
github.com/ory/viper v1.7.5 // indirect
158157
github.com/pborman/uuid v1.2.0 // indirect
159158
github.com/pelletier/go-toml v1.9.5 // indirect
160159
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
161160
github.com/pjbgf/sha1cd v0.3.0 // indirect
162161
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
163-
github.com/polyfloyd/go-errorlint v1.7.0 // indirect
162+
github.com/polyfloyd/go-errorlint v1.7.1 // indirect
164163
github.com/prometheus/client_golang v1.12.1 // indirect
165164
github.com/prometheus/client_model v0.2.0 // indirect
166165
github.com/prometheus/common v0.32.1 // indirect
@@ -172,7 +171,7 @@ require (
172171
github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect
173172
github.com/raeperd/recvcheck v0.2.0 // indirect
174173
github.com/rivo/uniseg v0.4.7 // indirect
175-
github.com/rogpeppe/go-internal v1.13.1 // indirect
174+
github.com/rogpeppe/go-internal v1.14.1 // indirect
176175
github.com/ryancurrah/gomodguard v1.3.5 // indirect
177176
github.com/ryanrolds/sqlclosecheck v0.5.1 // indirect
178177
github.com/sagikazarmark/locafero v0.4.0 // indirect
@@ -181,21 +180,20 @@ require (
181180
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 // indirect
182181
github.com/sashamelentyev/interfacebloat v1.1.0 // indirect
183182
github.com/sashamelentyev/usestdlibvars v1.28.0 // indirect
184-
github.com/securego/gosec/v2 v2.21.4 // indirect
183+
github.com/securego/gosec/v2 v2.22.2 // indirect
185184
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
186-
github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect
187185
github.com/sirupsen/logrus v1.9.3 // indirect
188186
github.com/sivchari/containedctx v1.0.3 // indirect
189187
github.com/sivchari/tenv v1.12.1 // indirect
190188
github.com/skeema/knownhosts v1.3.0 // indirect
191189
github.com/sonatard/noctx v0.1.0 // indirect
192190
github.com/sourcegraph/conc v0.3.0 // indirect
193191
github.com/sourcegraph/go-diff v0.7.0 // indirect
194-
github.com/spf13/afero v1.11.0 // indirect
192+
github.com/spf13/afero v1.12.0 // indirect
195193
github.com/spf13/cast v1.6.0 // indirect
196-
github.com/spf13/cobra v1.8.1 // indirect
194+
github.com/spf13/cobra v1.9.1 // indirect
197195
github.com/spf13/jwalterweatherman v1.1.0 // indirect
198-
github.com/spf13/pflag v1.0.5 // indirect
196+
github.com/spf13/pflag v1.0.6 // indirect
199197
github.com/spf13/viper v1.19.0 // indirect
200198
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
201199
github.com/stbenjam/no-sprintf-host-port v0.2.0 // indirect
@@ -204,8 +202,8 @@ require (
204202
github.com/subosito/gotenv v1.6.0 // indirect
205203
github.com/tcnksm/go-gitconfig v0.1.2 // indirect
206204
github.com/tcnksm/go-latest v0.0.0-20170313132115-e3007ae9052e // indirect
207-
github.com/tdakkota/asciicheck v0.3.0 // indirect
208-
github.com/tetafro/godot v1.4.20 // indirect
205+
github.com/tdakkota/asciicheck v0.4.1 // indirect
206+
github.com/tetafro/godot v1.5.0 // indirect
209207
github.com/thediveo/enumflag/v2 v2.0.5 // indirect
210208
github.com/timakin/bodyclose v0.0.0-20241017074812-ed6a65f985e3 // indirect
211209
github.com/timonwong/loggercheck v0.10.1 // indirect
@@ -214,33 +212,33 @@ require (
214212
github.com/ultraware/funlen v0.2.0 // indirect
215213
github.com/ultraware/whitespace v0.2.0 // indirect
216214
github.com/uudashr/gocognit v1.2.0 // indirect
217-
github.com/uudashr/iface v1.3.0 // indirect
215+
github.com/uudashr/iface v1.3.1 // indirect
218216
github.com/xanzy/ssh-agent v0.3.3 // indirect
219217
github.com/xen0n/gosmopolitan v1.2.2 // indirect
220218
github.com/yagipy/maintidx v1.0.0 // indirect
221219
github.com/yeya24/promlinter v0.3.0 // indirect
222220
github.com/ykadowak/zerologlint v0.1.5 // indirect
223221
gitlab.com/bosi/decorder v0.4.2 // indirect
224222
go-simpler.org/musttag v0.13.0 // indirect
225-
go-simpler.org/sloglint v0.7.2 // indirect
226-
go.opentelemetry.io/build-tools v0.17.0 // indirect
223+
go-simpler.org/sloglint v0.9.0 // indirect
224+
go.opentelemetry.io/build-tools v0.22.0 // indirect
227225
go.uber.org/automaxprocs v1.6.0 // indirect
228226
go.uber.org/multierr v1.11.0 // indirect
229227
go.uber.org/zap v1.27.0 // indirect
230-
golang.org/x/crypto v0.32.0 // indirect
231-
golang.org/x/exp/typeparams v0.0.0-20241108190413-2d47ceb2692f // indirect
232-
golang.org/x/mod v0.22.0 // indirect
233-
golang.org/x/net v0.34.0 // indirect
234-
golang.org/x/oauth2 v0.23.0 // indirect
235-
golang.org/x/sync v0.10.0 // indirect
236-
golang.org/x/sys v0.29.0 // indirect
237-
golang.org/x/text v0.21.0 // indirect
238-
google.golang.org/protobuf v1.34.2 // indirect
228+
golang.org/x/crypto v0.37.0 // indirect
229+
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
230+
golang.org/x/mod v0.24.0 // indirect
231+
golang.org/x/net v0.39.0 // indirect
232+
golang.org/x/oauth2 v0.26.0 // indirect
233+
golang.org/x/sync v0.13.0 // indirect
234+
golang.org/x/sys v0.32.0 // indirect
235+
golang.org/x/text v0.24.0 // indirect
236+
google.golang.org/protobuf v1.36.5 // indirect
239237
gopkg.in/ini.v1 v1.67.0 // indirect
240238
gopkg.in/warnings.v0 v0.1.2 // indirect
241239
gopkg.in/yaml.v2 v2.4.0 // indirect
242240
gopkg.in/yaml.v3 v3.0.1 // indirect
243-
honnef.co/go/tools v0.5.1 // indirect
241+
honnef.co/go/tools v0.6.1 // indirect
244242
mvdan.cc/gofumpt v0.7.0 // indirect
245243
mvdan.cc/unparam v0.0.0-20240528143540-8a5130ca722f // indirect
246244
)

0 commit comments

Comments
 (0)