Wip allow multiple dependencies part 2 - Use semver to resolve *some* dependency conflicts#1377
Draft
jsuereth wants to merge 20 commits intoopen-telemetry:mainfrom
Draft
Wip allow multiple dependencies part 2 - Use semver to resolve *some* dependency conflicts#1377jsuereth wants to merge 20 commits intoopen-telemetry:mainfrom
jsuereth wants to merge 20 commits intoopen-telemetry:mainfrom
Conversation
…icts between depednencies or resolve version conflicts.
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #1377 +/- ##
=======================================
- Coverage 82.4% 82.3% -0.1%
=======================================
Files 120 120
Lines 10092 10249 +157
=======================================
+ Hits 8319 8441 +122
- Misses 1773 1808 +35 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
jsuereth
commented
Apr 22, 2026
Comment on lines
+249
to
+252
| schema | ||
| .catalog() | ||
| .attribute(ar) | ||
| .map_or(false, |attr| attr.name == attr_name) |
Comment on lines
+249
to
+252
| schema | ||
| .catalog() | ||
| .attribute(ar) | ||
| .map_or(false, |attr| attr.name == attr_name) |
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.
With multiple dependencies, if two depend on the same parent, e.g. two sub-registries depend on semconv core, then we can resolve discrepencies by picking the "latest" version of semconv, assuming we do NOT have a major version conflict.
Note: Until semconv goes 1.x this will conflict for every releease.
cc @open-telemetry/specs-semconv-maintainers for awareness.