File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Changed
11
+
12
+ - Change ` renovate ` configuration to only get upgrades for CAPA compatible versions of k8s dependencies.
13
+
10
14
## [ 0.19.0] - 2025-06-17
11
15
12
16
### Added
Original file line number Diff line number Diff line change 5
5
// Go specific config - https://github.com/giantswarm/renovate-presets/blob/main/lang-go.json5
6
6
"github>giantswarm/renovate-presets:lang-go.json5" ,
7
7
] ,
8
+ "packageRules" : [
9
+ // Disable kubernetes and controller-runtime dependencies updates, because they will be updated to compatible versions when upgrading CAPA
10
+ {
11
+ "matchDepNames" : [
12
+ "/^k8s\\.io\\//" ,
13
+ "/^sigs\\.k8s\\.io\\/controller-runtime$/"
14
+ ] ,
15
+ "enabled" : false
16
+ }
17
+ ]
8
18
}
You can’t perform that action at this time.
0 commit comments