Skip to content

Commit 95f49dd

Browse files
authored
Bump prometheus/common to v0.63.0 (prometheus#16210)
* Bump prometheus/common to v0.63.0 Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> * nolint usage of deprecated model.NameValidationScheme Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> --------- Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com>
1 parent 0bfbd46 commit 95f49dd

File tree

9 files changed

+13
-8
lines changed

9 files changed

+13
-8
lines changed

cmd/prometheus/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ var (
141141

142142
func init() {
143143
// This can be removed when the legacy global mode is fully deprecated.
144+
//nolint:staticcheck
144145
model.NameValidationScheme = model.UTF8Validation
145146

146147
prometheus.MustRegister(versioncollector.NewCollector(strings.ReplaceAll(appName, "-", "_")))

cmd/prometheus/main_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ import (
4545

4646
func init() {
4747
// This can be removed when the legacy global mode is fully deprecated.
48+
//nolint:staticcheck
4849
model.NameValidationScheme = model.UTF8Validation
4950
}
5051

cmd/promtool/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ import (
6464

6565
func init() {
6666
// This can be removed when the legacy global mode is fully deprecated.
67+
//nolint:staticcheck
6768
model.NameValidationScheme = model.UTF8Validation
6869
}
6970

cmd/promtool/main_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ import (
4141

4242
func init() {
4343
// This can be removed when the legacy global mode is fully deprecated.
44+
//nolint:staticcheck
4445
model.NameValidationScheme = model.UTF8Validation
4546
}
4647

config/config.go

+1
Original file line numberDiff line numberDiff line change
@@ -837,6 +837,7 @@ func (c *ScrapeConfig) Validate(globalConfig GlobalConfig) error {
837837
}
838838
}
839839

840+
//nolint:staticcheck
840841
if model.NameValidationScheme != model.UTF8Validation {
841842
return errors.New("model.NameValidationScheme must be set to UTF8")
842843
}

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ require (
5353
github.com/prometheus/alertmanager v0.28.0
5454
github.com/prometheus/client_golang v1.21.0-rc.0
5555
github.com/prometheus/client_model v0.6.1
56-
github.com/prometheus/common v0.62.0
56+
github.com/prometheus/common v0.63.0
5757
github.com/prometheus/common/assets v0.2.0
5858
github.com/prometheus/exporter-toolkit v0.14.0
5959
github.com/prometheus/sigv4 v0.1.2

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,8 @@ github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p
441441
github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY=
442442
github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
443443
github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4=
444-
github.com/prometheus/common v0.62.0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ2Io=
445-
github.com/prometheus/common v0.62.0/go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I=
444+
github.com/prometheus/common v0.63.0 h1:YR/EIY1o3mEFP/kZCD7iDMnLPlGyuU2Gb3HIcXnA98k=
445+
github.com/prometheus/common v0.63.0/go.mod h1:VVFF/fBIoToEnWRVkYoXEkq3R3paCoxG9PXP74SnV18=
446446
github.com/prometheus/common/assets v0.2.0 h1:0P5OrzoHrYBOSM1OigWL3mY8ZvV2N4zIE/5AahrSrfM=
447447
github.com/prometheus/common/assets v0.2.0/go.mod h1:D17UVUE12bHbim7HzwUvtqm6gwBEaDQ0F+hIGbFbccI=
448448
github.com/prometheus/exporter-toolkit v0.14.0 h1:NMlswfibpcZZ+H0sZBiTjrA3/aBFHkNZqE+iCj5EmRg=

util/logging/file.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func NewJSONFileLogger(s string) (*JSONFileLogger, error) {
4545
return nil, fmt.Errorf("can't create json log file: %w", err)
4646
}
4747

48-
jsonFmt := &promslog.AllowedFormat{}
48+
jsonFmt := promslog.NewFormat()
4949
_ = jsonFmt.Set("json")
5050
return &JSONFileLogger{
5151
handler: promslog.New(&promslog.Config{Format: jsonFmt, Writer: f}).Handler(),

web/api/v1/api_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -480,15 +480,15 @@ func TestEndpoints(t *testing.T) {
480480
u, err := url.Parse(server.URL)
481481
require.NoError(t, err)
482482

483-
al := promslog.AllowedLevel{}
483+
al := promslog.NewLevel()
484484
require.NoError(t, al.Set("debug"))
485485

486-
af := promslog.AllowedFormat{}
486+
af := promslog.NewFormat()
487487
require.NoError(t, af.Set("logfmt"))
488488

489489
promslogConfig := promslog.Config{
490-
Level: &al,
491-
Format: &af,
490+
Level: al,
491+
Format: af,
492492
}
493493

494494
dbDir := t.TempDir()

0 commit comments

Comments
 (0)