-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[BUG] broken compatibility because of opentelemetry-mapping-go, can't build my project #33674
Comments
Hi, |
Is there a planned date to cut a new release with the fix? |
According to the Go modules reference, version v0 does not guarantee compatibility between releases:
This can be a little surprising at first. Since the API of our functions is not yet stable, our modules are still released with v0. This means that our modules may not be easily used from other repositories, as breaking changes can occur between minor versions. A workaround is to use the
This ensures that even if you run Please let me know if it help. The next release of the Agent, version 7.64, is currently in its final development phase. We will stop adding new features to this release by the end of this week, after which we will focus on extensive testing and issue resolution. This stabilization phase typically takes around four weeks. Once testing is complete and all critical issues are addressed, the final version will be released. |
@ogaca-dd while that may be true, importing I've been dealing with this by manually downgrading dd-trace-go to 1.70 and then fixing the indirect dependencies for quite a while now, so if this could be merged sooner rather than later it would be greatly appreciated. |
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes
version v0.25.0 broke compatibility with its previous version v0.24.0 anddatadog-agent
depends on it. After upgrading dependencies bygo get -u ./...
command in my project that usesdatadog-agent
it can't be built.both the
opentelemetry-mapping-go
anddatadog-agent
are projects of DataDog.Please do:
datadog-agent
.go get -u ./...
will not bring them.Temporary workaround is downgrading opentelemetry-mapping-go by running:
go get github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/[email protected]
The text was updated successfully, but these errors were encountered: