File tree Expand file tree Collapse file tree 4 files changed +5
-11
lines changed
Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ TB_MOCKGEN ?= $(TB_LOCALBIN)/mockgen
1717TB_SEMVER ?= $(TB_LOCALBIN ) /semver
1818
1919# # Tool Versions
20- TB_GOLANGCI_LINT_VERSION ?= v1.61.0
21- TB_GORELEASER_VERSION ?= v2.3.2
20+ TB_GOLANGCI_LINT_VERSION ?= v1.63.4
21+ TB_GORELEASER_VERSION ?= v2.5.1
2222TB_HELM_DOCS_VERSION ?= v1.14.2
2323TB_MOCKGEN_VERSION ?= v0.5.0
2424TB_SEMVER_VERSION ?= v1.1.3
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ require (
1212 github.com/onsi/ginkgo/v2 v2.22.2
1313 github.com/onsi/gomega v1.36.2
1414 github.com/prometheus/client_golang v1.20.5
15- github.com/prometheus/common v0.61 .0
15+ github.com/prometheus/common v0.62 .0
1616 github.com/robfig/cron/v3 v3.0.1
1717 go.uber.org/mock v0.5.0
1818 go.uber.org/zap v1.27.0
Original file line number Diff line number Diff line change @@ -124,8 +124,8 @@ github.com/prometheus/client_golang v1.20.5 h1:cxppBPuYhUnsO6yo/aoRol4L7q7UFfdm+
124124github.com/prometheus/client_golang v1.20.5 /go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE =
125125github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E =
126126github.com/prometheus/client_model v0.6.1 /go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY =
127- github.com/prometheus/common v0.61 .0 h1:3gv/GThfX0cV2lpO7gkTUwZru38mxevy90Bj8YFSRQQ =
128- github.com/prometheus/common v0.61 .0 /go.mod h1:zr29OCN/2BsJRaFwG8QOBr41D6kkchKbpeNH7pAjb/s =
127+ github.com/prometheus/common v0.62 .0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ2Io =
128+ github.com/prometheus/common v0.62 .0 /go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I =
129129github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc =
130130github.com/prometheus/procfs v0.15.1 /go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk =
131131github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs =
Original file line number Diff line number Diff line change @@ -27,12 +27,6 @@ var _ = Describe("types", func() {
2727 err := results .Validate (cfg )
2828 Ω (err ).ShouldNot (HaveOccurred ())
2929 })
30- It ("should be invalid if prefix is not a valid prometheus metric name" , func () {
31- results ["b b b" ] = []metrics.Result {}
32- err := results .Validate (cfg )
33- Ω (err ).Should (HaveOccurred ())
34- Ω (err .Error ()).Should (HaveSuffix ("is not a valid metric name" ))
35- })
3630 It ("should be invalid if results is empty" , func () {
3731 delete (results , "aaa" )
3832 err := results .Validate (cfg )
You can’t perform that action at this time.
0 commit comments