-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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
proposal: cmd/go: add a flag to stop embedding VCS information into the binaries #37693
Comments
As for the build process I mentioned in #37475 (comment), we are using A single flag we could use that was something like |
Let's please discuss this on #37475. I can't see any reason to make this a separate issue. Thanks. |
@ianlancetaylor, I would prefer to keep this as a separate issue. Given that we already do embed some version information, we can consider whether to add a flag to omit that information separately from whether we expand that information. (#37475 is about expanding the existing version information, and this issue is about redacting it.) |
Module version information is going to become more and more critical to Go programs, as it is exposed in APIs like runtime/debug.BuildInfo and will be consumed by vulnerability checks and other supply chain security issues. It is also very small compared to the rest of the binary. I don't believe it makes much sense at all to provide a flag to strip that information from the binaries. I do see the point of having a flag to stop embedding VCS info into the binary. If and when we implement that feature, I think we can easily commit to being able to turn it off. |
Module version information is not problematic. Retitled to clarify. |
Thanks. I added a note about remembering the flag in #37475 |
Background
Proposal #37475 suggests adding a version of git checkout from which the binary is built to the binary itself.
Comments #37475 (comment) and #37475 (comment) describe a workflow which will be broken by this change, as it relies on binaries' checksum stability.
This stability is already slightly compromised, as versions of dependencies are embedded in the final binary. However, it works pretty well in practice: when a dependency changes, it usually brings new code, because nobody is updating dependencies constantly, only to get a new feature or a bugfix.
OTOH, when a checkout version changes, often it does not bring new code, especially for monorepo. As an anecdotic data point, the project I'm working in regularly sees binaries staying stable over hundreds of revisions of source code. #37475 would increase the number of produced Docker images 100x and force upgrades of all components needlessly (unless a scheme equivalent to removing version information from binaries is employed).
Proposal
This proposal suggests adding a flag that will disable embedding version information completely (including the version of Go).
This will solve the dependencies-induced checksum stability compromise as well.
Practical considerations
I'd like to ask to make sure #37475 and this proposal are considered together, to avoid releasing a version of Go where the workflow described in that proposal is broken.
The text was updated successfully, but these errors were encountered: