Skip to content

Commit aedf7e9

Browse files
Bump github.com/fluxcd/pkg/runtime from 0.63.0 to 0.69.0 (#292)
* Bump github.com/fluxcd/pkg/runtime from 0.63.0 to 0.69.0 Bumps [github.com/fluxcd/pkg/runtime](https://github.com/fluxcd/pkg) from 0.63.0 to 0.69.0. - [Commits](fluxcd/pkg@runtime/v0.63.0...runtime/v0.69.0) --- updated-dependencies: - dependency-name: github.com/fluxcd/pkg/runtime dependency-version: 0.69.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix the tests to reflect changes. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kevin McDermott <bigkevmcd@gmail.com>
1 parent e599b5c commit aedf7e9

3 files changed

Lines changed: 83 additions & 83 deletions

File tree

controllers/gitopsset_controller_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func TestReconciliation(t *testing.T) {
191191
"testing": "newVersion",
192192
}
193193
ks.Spec.Path = "./templated/clusters/{{ .Element.cluster }}/"
194-
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
194+
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: &meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
195195
ks.Spec.Force = true
196196
})),
197197
},
@@ -317,7 +317,7 @@ func TestReconciliation(t *testing.T) {
317317
"testing": "newVersion",
318318
}
319319
ks.Spec.Path = "./templated/clusters/{{ .Element.cluster }}/"
320-
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
320+
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: &meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
321321
ks.Spec.Force = true
322322
})),
323323
},
@@ -339,7 +339,7 @@ func TestReconciliation(t *testing.T) {
339339
"sets.gitops.pro/namespace": "default",
340340
}
341341
k.Spec.Path = "./templated/clusters/engineering-dev/"
342-
k.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: meta.SecretKeyReference{Name: "engineering-dev"}}
342+
k.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: &meta.SecretKeyReference{Name: "engineering-dev"}}
343343
k.Spec.Force = true
344344
})
345345

@@ -487,7 +487,7 @@ func TestReconciliation(t *testing.T) {
487487
"testing": "newVersion",
488488
}
489489
ks.Spec.Path = "./templated/clusters/{{ .Element.cluster }}/"
490-
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
490+
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: &meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
491491
ks.Spec.Force = true
492492
})),
493493
},
@@ -780,7 +780,7 @@ func TestReconciliation(t *testing.T) {
780780
"testing": "newVersion",
781781
}
782782
ks.Spec.Path = "./templated/clusters/{{ .Element.cluster }}/"
783-
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
783+
ks.Spec.KubeConfig = &meta.KubeConfigReference{SecretRef: &meta.SecretKeyReference{Name: "{{ .Element.cluster }}"}}
784784
ks.Spec.Force = true
785785
})),
786786
},
@@ -1196,7 +1196,7 @@ func makeTestGitOpsSet(t *testing.T, opts ...func(*templatesv1.GitOpsSet)) *temp
11961196
Name: "demo-repo",
11971197
},
11981198
KubeConfig: &meta.KubeConfigReference{
1199-
SecretRef: meta.SecretKeyReference{
1199+
SecretRef: &meta.SecretKeyReference{
12001200
Name: "{{ .Element.cluster }}",
12011201
},
12021202
},

go.mod

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ require (
1010
github.com/cyphar/filepath-securejoin v0.4.1
1111
github.com/fluxcd/image-reflector-controller/api v0.35.2
1212
github.com/fluxcd/kustomize-controller/api v1.6.1
13-
github.com/fluxcd/pkg/apis/event v0.17.0
14-
github.com/fluxcd/pkg/apis/meta v1.13.0
13+
github.com/fluxcd/pkg/apis/event v0.18.0
14+
github.com/fluxcd/pkg/apis/meta v1.17.0
1515
github.com/fluxcd/pkg/http/fetch v0.17.0
16-
github.com/fluxcd/pkg/runtime v0.63.0
16+
github.com/fluxcd/pkg/runtime v0.69.0
1717
github.com/fluxcd/pkg/tar v0.13.0
1818
github.com/fluxcd/source-controller/api v1.6.2
1919
github.com/gitops-tools/pkg v0.2.0
@@ -48,25 +48,25 @@ require (
4848
github.com/beorn7/perks v1.0.1 // indirect
4949
github.com/blang/semver/v4 v4.0.0 // indirect
5050
github.com/bluekeyes/go-gitdiff v0.8.0 // indirect
51+
github.com/carapace-sh/carapace-shlex v1.0.1 // indirect
5152
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5253
github.com/chai2010/gettext-go v1.0.2 // indirect
5354
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
54-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
55+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
5556
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
5657
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
57-
github.com/fluxcd/cli-utils v0.36.0-flux.13 // indirect
58+
github.com/fluxcd/cli-utils v0.36.0-flux.14 // indirect
5859
github.com/fluxcd/pkg/apis/acl v0.7.0 // indirect
59-
github.com/fluxcd/pkg/apis/kustomize v1.10.0 // indirect
60-
github.com/fsnotify/fsnotify v1.8.0 // indirect
60+
github.com/fluxcd/pkg/apis/kustomize v1.11.0 // indirect
61+
github.com/fsnotify/fsnotify v1.9.0 // indirect
6162
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
6263
github.com/go-errors/errors v1.5.1 // indirect
63-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
64+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
6465
github.com/go-openapi/jsonreference v0.21.0 // indirect
65-
github.com/go-openapi/swag v0.23.0 // indirect
66+
github.com/go-openapi/swag v0.23.1 // indirect
6667
github.com/gogo/protobuf v1.3.2 // indirect
6768
github.com/google/btree v1.1.3 // indirect
68-
github.com/google/gnostic-models v0.6.9 // indirect
69-
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
69+
github.com/google/gnostic-models v0.7.0 // indirect
7070
github.com/google/uuid v1.6.0 // indirect
7171
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
7272
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
@@ -96,9 +96,9 @@ require (
9696
github.com/pkg/errors v0.9.1 // indirect
9797
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
9898
github.com/prometheus/client_golang v1.22.0 // indirect
99-
github.com/prometheus/client_model v0.6.1 // indirect
100-
github.com/prometheus/common v0.62.0 // indirect
101-
github.com/prometheus/procfs v0.15.1 // indirect
99+
github.com/prometheus/client_model v0.6.2 // indirect
100+
github.com/prometheus/common v0.65.0 // indirect
101+
github.com/prometheus/procfs v0.17.0 // indirect
102102
github.com/russross/blackfriday/v2 v2.1.0 // indirect
103103
github.com/shopspring/decimal v1.4.0 // indirect
104104
github.com/shurcooL/githubv4 v0.0.0-20190718010115-4ba037080260 // indirect
@@ -110,29 +110,29 @@ require (
110110
github.com/zeebo/blake3 v0.2.4 // indirect
111111
go.uber.org/multierr v1.11.0 // indirect
112112
go.yaml.in/yaml/v2 v2.4.2 // indirect
113-
go.yaml.in/yaml/v3 v3.0.3 // indirect
113+
go.yaml.in/yaml/v3 v3.0.4 // indirect
114114
golang.org/x/crypto v0.39.0 // indirect
115115
golang.org/x/net v0.41.0 // indirect
116116
golang.org/x/oauth2 v0.30.0 // indirect
117117
golang.org/x/sync v0.16.0 // indirect
118118
golang.org/x/sys v0.34.0 // indirect
119-
golang.org/x/term v0.32.0 // indirect
119+
golang.org/x/term v0.33.0 // indirect
120120
golang.org/x/text v0.27.0 // indirect
121-
golang.org/x/time v0.11.0 // indirect
122-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
123-
google.golang.org/protobuf v1.36.5 // indirect
121+
golang.org/x/time v0.12.0 // indirect
122+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
123+
google.golang.org/protobuf v1.36.6 // indirect
124124
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
125125
gopkg.in/inf.v0 v0.9.1 // indirect
126126
gopkg.in/yaml.v3 v3.0.1 // indirect
127-
k8s.io/cli-runtime v0.33.0 // indirect
127+
k8s.io/cli-runtime v0.33.2 // indirect
128128
k8s.io/component-base v0.33.2 // indirect
129129
k8s.io/klog/v2 v2.130.1 // indirect
130-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
131-
k8s.io/kubectl v0.33.0 // indirect
132-
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect
130+
k8s.io/kube-openapi v0.0.0-20250701173324-9bd5c66d9911 // indirect
131+
k8s.io/kubectl v0.33.2 // indirect
132+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
133133
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
134-
sigs.k8s.io/kustomize/api v0.19.0 // indirect
135-
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
134+
sigs.k8s.io/kustomize/api v0.20.0 // indirect
135+
sigs.k8s.io/kustomize/kyaml v0.20.0 // indirect
136136
sigs.k8s.io/randfill v1.0.0 // indirect
137137
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
138138
)

0 commit comments

Comments
 (0)