-
Notifications
You must be signed in to change notification settings - Fork 516
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
Mismatch between 0.27.0 and 0.26.1 libraries #749
Comments
I'm seeing a similar issue when trying to follow the Koa example (https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/examples/koa). I have to admit this is my first attempt at using OpenTelemetry, but I'm a bit worried if I move forward with using OpenTelemetry that keeping things up to date is going to be plagued with versioning problems. Is there some sort of recommendation/documentation around which versions I should be using to ensure I'm not going to have conflicts like this? |
This is an issue I encountered, wiring up an Nest.js app today with the following packages: "@opentelemetry/auto-instrumentations-node": "^0.26.2",
"@opentelemetry/sdk-node": "^0.27.0", Seems to be the same issue of properties mismatch with the |
👍 Simplifying this process would be neat. And for the consideration of expediency; 0.27.0 has the following fix for web workers: open-telemetry/opentelemetry-js#2465 |
@dyladan are you able to comment on this issue please? |
Looking into the Seems the scenario @joekrill ran into: the
|
…tion* dependencies to latest Refs: open-telemetry#749
I opened a PR to update the |
Looks like there's a PR that will fix this and more coming in from @dyladan. That provides a more global, atomic update to packages- I'll be closing mine in favor of his 👍 |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days. |
I am trying to use
@opentelemetry/[email protected]
with@opentelemetry/[email protected]
in a TypeScript application.This fails at build time as those two packages bring in
@opentelemetry/[email protected]
and@opentelemetry/[email protected]
respectively.The following compilation error happens because of the different versions of the same library:
Will there be a
0.27.0
compatible release of the packages in this repository?The text was updated successfully, but these errors were encountered: