Default update behavior for unstable -> stable versions #13849
-
What rules do Renovate use by default when it comes to updating a given package from an unstable to a stable version? If I have a package installed with version I see there are some open issues (https://github.com/renovatebot/renovate/issues/4723, https://github.com/renovatebot/renovate/issues/4852) related to these scenarios, but it's not entirely clear to me what the current behavior is. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Renovate will always try to update from unstable to higher stable. To prevent this you'd need to either ignore that dep completely (e.g. |
Beta Was this translation helpful? Give feedback.
Renovate will always try to update from unstable to higher stable. To prevent this you'd need to either ignore that dep completely (e.g.
ignoreDeps
), or add a packageRule withmatchPackageNames
,matchCurrentVersion
(optional), and
allowedVersions(e.g.
^1.0.0-alpha.1or
<1.0.0`).