-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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] Add replaces for new modules in core #37043
[chore] Add replaces for new modules in core #37043
Conversation
b76e964
to
6c568e4
Compare
They can be removed after running updating the core dependency |
6c568e4
to
8d0584c
Compare
7b36c61
to
3119dc0
Compare
3119dc0
to
09796c2
Compare
09796c2
to
71d10d9
Compare
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.
Don't we usually address these by updating the packages in core to using v0.0.0 instead (whatever is in main)
Can be done that way as well. Not a big difference. Just seems like more back and forths |
Run the following commands: ``` make for-all CMD="go mod edit -replace go.opentelemetry.io/collector/extension/xextension=go.opentelemetry.io/collector/extension/[email protected]" make for-all CMD="go mod edit -replace go.opentelemetry.io/collector/scraper/scraperhelper=go.opentelemetry.io/collector/scraper/[email protected]" ```
71d10d9
to
9c25be1
Compare
To unblock collector core dependency update. See https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/12639934611/job/35222671837?pr=37037 Add the replace statements to all modules that use deprecated modules by running the following commands: ``` make for-all CMD="go mod edit -replace go.opentelemetry.io/collector/extension/xextension=go.opentelemetry.io/collector/extension/[email protected]" make for-all CMD="go mod edit -replace go.opentelemetry.io/collector/scraper/scraperhelper=go.opentelemetry.io/collector/scraper/[email protected]" ```
To unblock collector core dependency update. See https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/12639934611/job/35222671837?pr=37037
Add the replace statements to all modules that use deprecated modules by running the following commands: