Skip to content

Commit d9c9cda

Browse files
Revert "fix(deps): update module github.com/prometheus/common to v0.63.0 (#12656)" (#12673)
#### Description Contrib tests are currently failing on main with the following build error: ``` Error: /home/runner/go/pkg/mod/github.com/prometheus/[email protected]/util/logging/file.go:42:23: undefined: promslog.AllowedFormat ``` I believe this is because of the update in #12656: there is [a breaking change in `github.com/prometheus/common` 0.63.0](prometheus/common#754) that is incompatible with the version of `github.com/prometheus` used in some contrib modules. While the latter package [has been updated](prometheus/prometheus#16210) on main, the updated version hasn't been released yet, so I this the only solution is to revert this PR until then.
1 parent 665b35f commit d9c9cda

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

cmd/otelcorecol/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ require (
7070
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
7171
github.com/prometheus/client_golang v1.21.1 // indirect
7272
github.com/prometheus/client_model v0.6.1 // indirect
73-
github.com/prometheus/common v0.63.0 // indirect
73+
github.com/prometheus/common v0.62.0 // indirect
7474
github.com/prometheus/procfs v0.15.1 // indirect
7575
github.com/rs/cors v1.11.1 // indirect
7676
github.com/shirou/gopsutil/v4 v4.25.1 // indirect

cmd/otelcorecol/go.sum

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

internal/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ require (
7373
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
7474
github.com/prometheus/client_golang v1.21.1 // indirect
7575
github.com/prometheus/client_model v0.6.1 // indirect
76-
github.com/prometheus/common v0.63.0 // indirect
76+
github.com/prometheus/common v0.62.0 // indirect
7777
github.com/prometheus/procfs v0.15.1 // indirect
7878
github.com/rs/cors v1.11.1 // indirect
7979
github.com/shirou/gopsutil/v4 v4.25.1 // indirect

internal/e2e/go.sum

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

otelcol/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ require (
6565
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
6666
github.com/prometheus/client_golang v1.21.1 // indirect
6767
github.com/prometheus/client_model v0.6.1 // indirect
68-
github.com/prometheus/common v0.63.0 // indirect
68+
github.com/prometheus/common v0.62.0 // indirect
6969
github.com/prometheus/procfs v0.15.1 // indirect
7070
github.com/shirou/gopsutil/v4 v4.25.1 // indirect
7171
github.com/spf13/pflag v1.0.6 // indirect

otelcol/go.sum

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

otelcol/otelcoltest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ require (
5252
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
5353
github.com/prometheus/client_golang v1.21.1 // indirect
5454
github.com/prometheus/client_model v0.6.1 // indirect
55-
github.com/prometheus/common v0.63.0 // indirect
55+
github.com/prometheus/common v0.62.0 // indirect
5656
github.com/prometheus/procfs v0.15.1 // indirect
5757
github.com/shirou/gopsutil/v4 v4.25.1 // indirect
5858
github.com/spf13/cobra v1.9.1 // indirect

otelcol/otelcoltest/go.sum

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

service/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.0
55
require (
66
github.com/google/uuid v1.6.0
77
github.com/prometheus/client_model v0.6.1
8-
github.com/prometheus/common v0.63.0
8+
github.com/prometheus/common v0.62.0
99
github.com/shirou/gopsutil/v4 v4.25.1
1010
github.com/stretchr/testify v1.10.0
1111
go.opentelemetry.io/collector v0.122.1

service/go.sum

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

0 commit comments

Comments
 (0)