Upgrading dependent versions together #12814
Replies: 2 comments 1 reply
-
You can perhaps use stabilityDays as a workaround. E.g. if you know that within 1 day the required image is usually available, set stabilityDays=1. Pretty sure there's a feature request already existing for being able to define something like a "minimum updates in a branch" value for such a case, as in you can decide to suppress the branch until there's 2 updates and not 1. |
Beta Was this translation helpful? Give feedback.
-
Another use case for this is say I am using |
Beta Was this translation helpful? Give feedback.
-
We have some dependencies that need to be updated together, and while I know I can group them in a PR, I am wondering if there's some way to "hold" some of the packages until all of them are available?
As an example, we use Terraform, but in CI we are using a custom-build Terraform Docker image with some extra dependencies installed. Currently, when there's a new Terraform version released, we get a Renovate PR that updates the version number in our repository, but because there's no new Docker image built yet, that doesn't get updated. I'm working on enabling Renovate on the repo building the Docker image too, so we can get that built more or less automatically, but I'm wondering if we can configure the repository that uses that image to not open a PR at all until the Docker image is updated?
So, what I want is something like this:
.terraform-version
andrequired_version
flags.Also, a similar but slightly different thing for more examples of what I'm looking for: We use cluster-autoscaler in our cluster, and the version there needs to match our cluster version. Currently we've just configured Renovate to ignore anything except patch versions, and we'll manually bump the minor version to match any time we upgrade the cluster, but it'd be nice if we could somehow have Renovate do that automatically.
Beta Was this translation helpful? Give feedback.
All reactions