-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
packaging+docker: Outdated go.mod used in images and tarball #60297
Comments
Although it's the docker image that I noticed this in, it looks like it's the upstream tarball that's the issue. The Dockerfile does
If we check that
|
For completeness, this affects the Mac and Windows packages too
|
Oh, doh.... they're psuedo-versions.
So, I guess I've jumped the gun and the fix I'm after won't be until 1.20.5 then |
Hey @seankhliao - quick follow up: it doesn't look like it's in the list for 1.20.5 either: https://github.com/golang/go/issues?q=milestone%3AGo1.20.5+ Just wanted to make sure the fix itself hadn't been overlooked - there isn't a PR on the github side, because it was created directly in Gerrit: https://go-review.googlesource.com/c/net/+/486156 |
typically we will not backport, our policy is at https://github.com/golang/go/wiki/MinorReleases |
Thanks! I think this probably meets the criteria, so I'll raise a cherrypick request so that it can be assessed there |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Started a Go docker container -
docker run -it --rm -v $PWD:/src golang:1.20.4 bash
and built a project in order to confirm the fix in golang/net@82780d6 took effectWhat did you expect to see?
The fix should exist in the h2 bundle (
/usr/local/go/src/net/http/h2_bundle.go
)What did you see instead?
It does not (and the issue still repros) because
h2_bundle.go
is still based onx/net v.4.1
Extra
To try and dig into it a bit further, I figured I'd manually update the bundle and see whether that pulled the changes down
The file regenerated on disk, but the fix still wasn't in there.
The reason for this was in
/usr/local/go/src/go.mod
:The docker container is referencing a really old version.
I updated to use
v0.10.0
(as here) and updatedvendor/modules.txt
) accordingly.The bundle then updated correctly and I was able to build my project with the expected fix in place
The text was updated successfully, but these errors were encountered: