Skip to content

Commit e1e589e

Browse files
Bump sigs.k8s.io/controller-runtime from 0.18.4 to 0.19.2 (#525)
* Bump sigs.k8s.io/controller-runtime from 0.18.4 to 0.19.2 Bumps [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) from 0.18.4 to 0.19.2. - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](kubernetes-sigs/controller-runtime@v0.18.4...v0.19.2) --- updated-dependencies: - dependency-name: sigs.k8s.io/controller-runtime dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Add changelog --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aleksandr Rybolovlev <[email protected]>
1 parent 373bf65 commit e1e589e

File tree

8 files changed

+340
-154
lines changed

8 files changed

+340
-154
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: DEPENDENCIES
2+
body: Bump `k8s.io/api` from 0.30.3 to 0.31.0.
3+
time: 2024-11-27T09:44:18.194965+01:00
4+
custom:
5+
PR: "525"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: DEPENDENCIES
2+
body: Bump `k8s.io/apimachinery` from 0.30.3 to 0.31.0.
3+
time: 2024-11-27T09:44:21.142647+01:00
4+
custom:
5+
PR: "525"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: DEPENDENCIES
2+
body: Bump `k8s.io/client-go` from 0.30.3 to 0.31.0.
3+
time: 2024-11-27T09:44:23.563345+01:00
4+
custom:
5+
PR: "525"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: DEPENDENCIES
2+
body: Bump `sigs.k8s.io/controller-runtime` from 0.18.4 to 0.19.2.
3+
time: 2024-11-27T09:44:25.810399+01:00
4+
custom:
5+
PR: "525"

charts/hcp-terraform-operator/crds/app.terraform.io_agentpools.yaml

Lines changed: 129 additions & 47 deletions
Large diffs are not rendered by default.

config/crd/bases/app.terraform.io_agentpools.yaml

Lines changed: 129 additions & 47 deletions
Large diffs are not rendered by default.

go.mod

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,23 @@ require (
1111
github.com/onsi/ginkgo/v2 v2.21.0
1212
github.com/onsi/gomega v1.35.1
1313
go.uber.org/zap v1.27.0
14-
k8s.io/api v0.30.3
15-
k8s.io/apimachinery v0.30.3
16-
k8s.io/client-go v0.30.3
17-
sigs.k8s.io/controller-runtime v0.18.4
14+
k8s.io/api v0.31.0
15+
k8s.io/apimachinery v0.31.0
16+
k8s.io/client-go v0.31.0
17+
sigs.k8s.io/controller-runtime v0.19.2
1818
)
1919

2020
require (
2121
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
23-
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
23+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2424
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2525
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
2626
github.com/fsnotify/fsnotify v1.7.0 // indirect
27+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2728
github.com/go-openapi/jsonpointer v0.19.6 // indirect
2829
github.com/go-openapi/jsonreference v0.20.2 // indirect
29-
github.com/go-openapi/swag v0.22.3 // indirect
30+
github.com/go-openapi/swag v0.22.4 // indirect
3031
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3132
github.com/gogo/protobuf v1.3.2 // indirect
3233
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
@@ -35,7 +36,7 @@ require (
3536
github.com/google/go-querystring v1.1.0 // indirect
3637
github.com/google/gofuzz v1.2.0 // indirect
3738
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
38-
github.com/google/uuid v1.3.0 // indirect
39+
github.com/google/uuid v1.6.0 // indirect
3940
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
4041
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
4142
github.com/hashicorp/go-version v1.7.0 // indirect
@@ -44,36 +45,35 @@ require (
4445
github.com/josharian/intern v1.0.0 // indirect
4546
github.com/json-iterator/go v1.1.12 // indirect
4647
github.com/mailru/easyjson v0.7.7 // indirect
47-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4848
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4949
github.com/modern-go/reflect2 v1.0.2 // indirect
5050
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5151
github.com/pkg/errors v0.9.1 // indirect
52-
github.com/prometheus/client_golang v1.18.0 // indirect
53-
github.com/prometheus/client_model v0.5.0 // indirect
54-
github.com/prometheus/common v0.45.0 // indirect
55-
github.com/prometheus/procfs v0.12.0 // indirect
52+
github.com/prometheus/client_golang v1.19.1 // indirect
53+
github.com/prometheus/client_model v0.6.1 // indirect
54+
github.com/prometheus/common v0.55.0 // indirect
55+
github.com/prometheus/procfs v0.15.1 // indirect
5656
github.com/spf13/pflag v1.0.5 // indirect
57+
github.com/x448/float16 v0.8.4 // indirect
5758
go.uber.org/multierr v1.11.0 // indirect
5859
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
5960
golang.org/x/net v0.30.0 // indirect
60-
golang.org/x/oauth2 v0.12.0 // indirect
61+
golang.org/x/oauth2 v0.21.0 // indirect
6162
golang.org/x/sync v0.8.0 // indirect
6263
golang.org/x/sys v0.26.0 // indirect
6364
golang.org/x/term v0.25.0 // indirect
6465
golang.org/x/text v0.19.0 // indirect
6566
golang.org/x/time v0.6.0 // indirect
6667
golang.org/x/tools v0.26.0 // indirect
6768
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
68-
google.golang.org/appengine v1.6.7 // indirect
6969
google.golang.org/protobuf v1.35.1 // indirect
7070
gopkg.in/inf.v0 v0.9.1 // indirect
7171
gopkg.in/yaml.v2 v2.4.0 // indirect
7272
gopkg.in/yaml.v3 v3.0.1 // indirect
73-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
74-
k8s.io/klog/v2 v2.120.1 // indirect
73+
k8s.io/apiextensions-apiserver v0.31.0 // indirect
74+
k8s.io/klog/v2 v2.130.1 // indirect
7575
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
76-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
76+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
7777
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7878
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
7979
sigs.k8s.io/yaml v1.4.0 // indirect

0 commit comments

Comments
 (0)