Skip to content

Commit edfc66a

Browse files
Bumped up dependencies for Q4 release in 2025 (#1093)
## Proposed Changes * ASM 1.27.4 * Config Connector 1.141.0 * Tekton Pipelines 1.6.0
2 parents 5d27c80 + 516d0b7 commit edfc66a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/kf/commands/dependencies/dependencies.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ func newDependencies() []dependency {
108108
// dep matrix right now is fairly impossible. To ensure we still
109109
// testing against the right version though, we are going to hard
110110
// code this.
111-
ResolveVersion: staticVersionResolver("v1.3.2"),
111+
ResolveVersion: staticVersionResolver("v1.6.0"),
112112
ResolveURL: func(version string) (string, error) {
113-
const URL = "https://github.com/tektoncd/pipeline/releases/download/%s/release.yaml"
113+
const URL = "https://infra.tekton.dev/tekton-releases/pipeline/previous/%s/release.yaml"
114114
return fmt.Sprintf(URL, version), nil
115115
},
116116
},
@@ -120,7 +120,7 @@ func newDependencies() []dependency {
120120
InfoURL: "https://cloud.google.com/service-mesh/docs/gke-install-overview",
121121
// This version is fetched from the asmcli script. It needs to be
122122
// updated by hand until we have a programtic way to fetch it.
123-
ResolveVersion: staticVersionResolver("1.27.1-asm.2+config1"),
123+
ResolveVersion: staticVersionResolver("1.27.4-asm.1+config1"),
124124
ResolveURL: func(version string) (string, error) {
125125
const URL = "https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/releases/tag/%s"
126126
return fmt.Sprintf(URL, version), nil
@@ -132,7 +132,7 @@ func newDependencies() []dependency {
132132
InfoURL: "https://cloud.google.com//config-connector/docs/how-to/advanced-install",
133133
// This version needs to be updated by hand until we have a
134134
// programtic way to fetch it.
135-
ResolveVersion: staticVersionResolver("1.129.2"),
135+
ResolveVersion: staticVersionResolver("1.141.0"),
136136
ResolveURL: func(version string) (string, error) {
137137
const URL = "gs://configconnector-operator/%s/release-bundle.tar.gz"
138138
return fmt.Sprintf(URL, version), nil

0 commit comments

Comments
 (0)