Skip to content

Commit 8adc88f

Browse files
authored
fix(renovate): enable updates for opentelemetry-instrumentation-bom-alpha (#1860)
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 4129f40 commit 8adc88f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/renovate.json5

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

0 commit comments

Comments
 (0)