-
Notifications
You must be signed in to change notification settings - Fork 39.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
Update to go1.10.3 #65726
Update to go1.10.3 #65726
Conversation
/release-note |
@ixdy: the
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
hack/lib/golang.sh
Outdated
@@ -336,7 +336,7 @@ EOF | |||
local go_version | |||
IFS=" " read -ra go_version <<< "$(go version)" | |||
local minimum_go_version | |||
minimum_go_version=go1.10.2 | |||
minimum_go_version=go1.10.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to bump the minimum here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess not. I can revert this, since it'll make CI easier to update.
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cblecker, ixdy The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Automatic merge from submit-queue (batch tested with PRs 65677, 65711, 65150, 65726). If you want to cherry-pick this change to another branch, please follow the instructions here. |
Hi, may I ask what is the policy to update the Go lang compiler? Keep following the latest version? |
@warmchang we generally try to keep up to date with the latest patch release (for example, 1.10.2 -> 1.10.3 here) for the relevant bug fixes. We update to the latest minor release (for example, 1.9 -> 1.10) less aggressively, since there are often bugs or other issues to be worked out first, and we want to ensure enough time to soak test the new release, so we don't update close to the kubernetes release date. This is why kubernetes 1.11 is the first release to use go1.10: while go1.10 was released prior to kubernetes 1.10 being released, it was too close to our cut. |
Got it, thank you @ixdy ! |
/sig release |
What this PR does / why we need it: updates to build with go1.10.3; see list of changes here.
We'll probably want to cherrypick this to release-1.11 as well.
Release note:
/assign @BenTheElder @cblecker