Skip to content

Commit 8a39051

Browse files
authored
Merge pull request #1874 from mrueg/dep-bump-2.7.0
Bump dependencies
2 parents 1a55a38 + 81cd6ea commit 8a39051

File tree

4 files changed

+61
-178
lines changed

4 files changed

+61
-178
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ GIT_COMMIT ?= $(shell git rev-parse --short HEAD)
1515
OS ?= $(shell uname -s | tr A-Z a-z)
1616
ALL_ARCH = amd64 arm arm64 ppc64le s390x
1717
PKG = github.com/prometheus/common
18-
PROMETHEUS_VERSION = 2.37.0
19-
GO_VERSION = 1.19.2
18+
PROMETHEUS_VERSION = 2.39.1
19+
GO_VERSION = 1.19.3
2020
IMAGE = $(REGISTRY)/kube-state-metrics
2121
MULTI_ARCH_IMG = $(IMAGE)-$(ARCH)
2222
USER ?= $(shell id -u -n)

go.mod

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ require (
44
github.com/brancz/gojsontoyaml v0.1.0
55
github.com/campoy/embedmd v1.0.0
66
github.com/dgryski/go-jump v0.0.0-20211018200510-ba001c3ffce0
7-
github.com/gobuffalo/flect v0.2.5
8-
github.com/google/go-cmp v0.5.8
9-
github.com/google/go-jsonnet v0.18.0
7+
github.com/gobuffalo/flect v0.3.0
8+
github.com/google/go-cmp v0.5.9
9+
github.com/google/go-jsonnet v0.19.1
1010
github.com/jsonnet-bundler/jsonnet-bundler v0.5.1
1111
github.com/oklog/run v1.1.0
12-
github.com/prometheus/client_golang v1.13.0
13-
github.com/prometheus/client_model v0.2.0
12+
github.com/prometheus/client_golang v1.13.1
13+
github.com/prometheus/client_model v0.3.0
1414
github.com/prometheus/common v0.37.0
1515
github.com/prometheus/exporter-toolkit v0.7.1
1616
github.com/robfig/cron/v3 v3.0.1
1717
github.com/spf13/pflag v1.0.5
18-
github.com/stretchr/testify v1.8.0
19-
golang.org/x/perf v0.0.0-20220722155240-3d85ee92886d
18+
github.com/stretchr/testify v1.8.1
19+
golang.org/x/perf v0.0.0-20220920022801-e8d778a60d07
2020
gopkg.in/yaml.v3 v3.0.1
21-
k8s.io/api v0.25.2
22-
k8s.io/apimachinery v0.25.2
21+
k8s.io/api v0.25.3
22+
k8s.io/apimachinery v0.25.3
2323
k8s.io/autoscaler/vertical-pod-autoscaler v0.12.0
24-
k8s.io/client-go v0.25.2
25-
k8s.io/component-base v0.25.2
24+
k8s.io/client-go v0.25.3
25+
k8s.io/component-base v0.25.3
2626
k8s.io/klog/v2 v2.80.1
27-
k8s.io/sample-controller v0.25.2
28-
k8s.io/utils v0.0.0-20220922133306-665eaaec4324
27+
k8s.io/sample-controller v0.25.3
28+
k8s.io/utils v0.0.0-20221101230645-61b03e2f6476
2929
)
3030

3131
require (
@@ -59,6 +59,7 @@ require (
5959
github.com/golang/protobuf v1.5.2 // indirect
6060
github.com/google/gnostic v0.5.7-v3refs // indirect
6161
github.com/google/gofuzz v1.1.0 // indirect
62+
github.com/google/safehtml v0.0.2 // indirect
6263
github.com/imdario/mergo v0.3.6 // indirect
6364
github.com/josharian/intern v1.0.0 // indirect
6465
github.com/jpillora/backoff v1.0.0 // indirect
@@ -74,10 +75,10 @@ require (
7475
github.com/pkg/errors v0.9.1 // indirect
7576
github.com/pmezard/go-difflib v1.0.0 // indirect
7677
github.com/prometheus/procfs v0.8.0 // indirect
77-
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
78-
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
79-
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
80-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
78+
golang.org/x/crypto v0.0.0-20221012134737-56aed061732a // indirect
79+
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
80+
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect
81+
golang.org/x/sys v0.1.0 // indirect
8182
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
8283
golang.org/x/text v0.3.7 // indirect
8384
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
@@ -92,4 +93,4 @@ require (
9293
sigs.k8s.io/yaml v1.3.0 // indirect
9394
)
9495

95-
go 1.17
96+
go 1.18

0 commit comments

Comments
 (0)