Improve Dependabot grouping for OpenTelemetry version variables#4727
Merged
rajkumar-rangaraj merged 1 commit intoMay 26, 2026
Merged
Conversation
- Introduce explicit alpha-version variables for OTel SDK and contrib versions
instead of using `${...}-alpha` interpolation in dependency declarations
- Update OTel BOM and contrib dependency entries to use the new explicit alpha vars
- Expand Dependabot `opentelemetry` group patterns to include the new alpha vars
and concrete contrib artifacts
This makes OTel dependency versioning clearer for humans and easier for Dependabot
to detect and group consistently.
rajkumar-rangaraj
approved these changes
May 26, 2026
Member
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
After #4721, Dependabot didn't group all OpenTelemetry packages in the same PR.
Issue 1: Changes in #4724 should be grouped into #4719 as part of the opentelemetry group.
Issue 2:
otelInstrumentationAlphaVersionis detected by Dependabot to create PRs like #4719. ButotelSdkVersionandotelContribVersionare not detected. The difference seems to be there is Kotlin string interpolation.What Changed
${...}-alphainterpolation in dependency declarationsopentelemetrygroup patterns to include the new alpha vars and concrete contrib artifactsThis makes OTel dependency versioning clearer for humans and easier for Dependabot to detect and group consistently.