Skip to content
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

Release v0.69.0 #6908

Closed
10 tasks done
djaglowski opened this issue Jan 9, 2023 · 2 comments
Closed
10 tasks done

Release v0.69.0 #6908

djaglowski opened this issue Jan 9, 2023 · 2 comments
Assignees
Labels

Comments

@MovieStoreGuy
Copy link
Contributor

Hey @djaglowski ,

It looks like the main module wasn't updated to reference the modules of the same version:

https://github.com/open-telemetry/opentelemetry-collector/blob/v0.69.0/go.mod

It looks like the binary release worked because cmd/otelcol has a seperate module that is referencing v0.69.0 excluding https://github.com/open-telemetry/opentelemetry-collector/blob/v0.69.0/cmd/otelcorecol/go.mod#L10 which I don't believe depends on the root project.

For those trying to reference things declared within the root module using v0.69.0 are faced with the following error:

test imports
	go.opentelemetry.io/collector/pdata: module go.opentelemetry.io/collector/pdata@latest found (v0.66.0), but does not contain package go.opentelemetry.io/collector/pdata
test imports
	go.opentelemetry.io/collector/otelcol/otelcoltest imports
	go.opentelemetry.io/collector/otelcol imports
	go.opentelemetry.io/collector/service tested by
	go.opentelemetry.io/collector/service.test imports
	go.opentelemetry.io/collector/extension/zpagesextension imports
	go.opentelemetry.io/collector/config: module go.opentelemetry.io/collector@latest found (v0.69.0), but does not contain package go.opentelemetry.io/collector/config

I haven't tried it but for those who are facing this issue now, they be able to work around be adding a replace statement to their go.mod like so:

replace (
    go.opentelemetry.io/collector v0.68.0 => go.opentelemetry.io/collector v0.69.0
    go.opentelemetry.io/collector/pdata v1.0.0-rc2 => go.opentelemetry.io/collector/pdata v1.0.0-rc3
)

@MovieStoreGuy
Copy link
Contributor

It looks like the issue #6929 is related to this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants