Skip to content

Commit 7d43610

Browse files
committed
fix(renovate): enable updates for opentelemetry-instrumentation-bom-alpha
The opentelemetry-instrumentation-bom-alpha dependency was not being updated by Renovate despite newer versions being available (currently on 2.16.0-alpha, but 2.24.0-alpha is available). Root cause: Renovate was detecting the dependency but not creating PRs due to the default ignoreUnstable behavior in the recommended preset. Since this package only publishes alpha versions, we need to explicitly allow unstable version updates. Solution: Added a packageRule with ignoreUnstable: false for this specific package to ensure Renovate will create PRs for newer alpha versions. Signed-off-by: Gregor Zeitlinger <gregor.zeitlinger@grafana.com>
1 parent 5cfa5c0 commit 7d43610

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/renovate.json5

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
groupName: "java graalvm",
2424
additionalBranchPrefix: "graalvm-",
2525
},
26+
{
27+
matchPackageNames: [
28+
"io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha",
29+
],
30+
ignoreUnstable: false,
31+
},
2632
],
2733
customManagers: [
2834
{

0 commit comments

Comments
 (0)