-
Notifications
You must be signed in to change notification settings - Fork 550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update core dependencies stable ^1.3.1 experimental ^0.29.2 #1042
Merged
Merged
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1ee76a1
chore(test-utils): pin dev dependencies to across the repo
a2d7bfa
chore: upgrade all dependencies to core 1.3.0/0.29.0
917ee5b
fix(host-metrics): fix build with new api
b6d205c
fix(host-metrics): fix tests
373e8a0
Merge branch 'main' into test-utils-pin-versions
rauno56 386115d
Merge remote-tracking branch 'upstream/main' into test-utils-pin-vers…
96408a7
chore: use core caret ^0.29.2 and ^1.3.1
bfdb4cf
Merge branch 'test-utils-pin-versions' of github.com:blumamir/opentel…
84a97a9
fix: forgotten version
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why should we pin an old version?
Such pinning caused a lot problems in previous releases that new SDK was unusable with instrumentations from contrib.
And if pinning is the way to go - why not
@opentelemetry/instrumentation
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is not an old version, but the version that the entire monorepo is aligned to currently in master.
The CI fails because we mix versions
1.2.0
and1.3.0
since some of them are pinned in instrumentation dev dep, and others are introduced via transitive dependency on the caret range (like in the fix mentioned above).I think we should thrive to have the same version everywhere when building and testing contrib.
I only changed the test-utils package which is a dev dependency, so to my understanding, it should not affect any usage for users which consume the released packages.
Since instrumentations depend on it with caret, so I wanted to be align to make sure we pull the same version everywhere