Skip to content

Commit d6492d2

Browse files
fix(deps): update module go.yaml.in/yaml/v2 to v3
| datasource | package | from | to | | ---------- | ------------------ | ------ | ------ | | go | go.yaml.in/yaml/v2 | v2.4.3 | v3.0.4 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
1 parent d9d391d commit d6492d2

19 files changed

+20
-20
lines changed

cmd/tempo-cli/cmd-migrate-overrides-config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/grafana/dskit/services"
1313
"github.com/prometheus/client_golang/prometheus"
14-
"go.yaml.in/yaml/v2"
14+
"go.yaml.in/yaml/v3"
1515

1616
"github.com/grafana/tempo/cmd/tempo/app"
1717
"github.com/grafana/tempo/modules/overrides"

cmd/tempo-cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/grafana/dskit/flagext"
99

1010
"github.com/alecthomas/kong"
11-
"go.yaml.in/yaml/v2"
11+
"go.yaml.in/yaml/v3"
1212

1313
"github.com/grafana/tempo/cmd/tempo/app"
1414
"github.com/grafana/tempo/tempodb/backend"

cmd/tempo/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/prometheus/client_golang/prometheus"
1717
ver "github.com/prometheus/client_golang/prometheus/collectors/version"
1818
"github.com/prometheus/common/version"
19-
"go.yaml.in/yaml/v2"
19+
"go.yaml.in/yaml/v3"
2020
"google.golang.org/grpc/encoding"
2121

2222
"github.com/grafana/tempo/cmd/tempo/app"

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ require (
120120
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0
121121
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.39.0
122122
go.opentelemetry.io/proto/otlp v1.9.0
123-
go.yaml.in/yaml/v2 v2.4.3
123+
go.yaml.in/yaml/v3 v3.0.4
124124
golang.org/x/net v0.49.0
125125
google.golang.org/genproto/googleapis/rpc v0.0.0-20260120174246-409b4a993575
126126
)
@@ -411,7 +411,7 @@ require (
411411
go.opentelemetry.io/otel/log v0.14.0 // indirect
412412
go.opentelemetry.io/otel/sdk/log v0.14.0 // indirect
413413
go.opentelemetry.io/otel/sdk/metric v1.39.0 // indirect
414-
go.yaml.in/yaml/v3 v3.0.4 // indirect
414+
go.yaml.in/yaml/v2 v2.4.3 // indirect
415415
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
416416
golang.org/x/crypto v0.47.0 // indirect
417417
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect

integration/util/harness.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/grafana/tempo/tempodb/backend/azure"
1919
"github.com/prometheus/prometheus/model/labels"
2020
"github.com/stretchr/testify/require"
21-
"go.yaml.in/yaml/v2"
21+
"go.yaml.in/yaml/v3"
2222
)
2323

2424
const (

integration/util/harness_config_overlay.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/grafana/tempo/cmd/tempo/app"
1313
"github.com/grafana/tempo/tempodb/backend"
1414
"github.com/stretchr/testify/require"
15-
"go.yaml.in/yaml/v2"
15+
"go.yaml.in/yaml/v3"
1616
)
1717

1818
const (

modules/generator/storage/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
prometheus_config "github.com/prometheus/prometheus/config"
1010
"github.com/prometheus/prometheus/util/compression"
1111
"github.com/stretchr/testify/assert"
12-
"go.yaml.in/yaml/v2"
12+
"go.yaml.in/yaml/v3"
1313
)
1414

1515
func TestConfig(t *testing.T) {

modules/overrides/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/prometheus/common/model"
1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/require"
15-
"go.yaml.in/yaml/v2"
15+
"go.yaml.in/yaml/v3"
1616

1717
"github.com/grafana/tempo/modules/overrides/histograms"
1818
"github.com/grafana/tempo/modules/overrides/userconfigurable/client"

modules/overrides/overrides_tenant_status_http.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"time"
1010

1111
"github.com/gorilla/mux"
12-
"go.yaml.in/yaml/v2"
12+
"go.yaml.in/yaml/v3"
1313

1414
"github.com/grafana/tempo/pkg/util"
1515
)

modules/overrides/runtime_config_overrides.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"github.com/grafana/dskit/runtimeconfig"
1616
"github.com/grafana/dskit/services"
1717
"github.com/prometheus/client_golang/prometheus"
18-
"go.yaml.in/yaml/v2"
18+
"go.yaml.in/yaml/v3"
1919

2020
"github.com/grafana/tempo/modules/overrides/histograms"
2121
"github.com/grafana/tempo/pkg/sharedconfig"

0 commit comments

Comments
 (0)