-
Notifications
You must be signed in to change notification settings - Fork 39.8k
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
Bump Go version to 1.8.3 #46429
Bump Go version to 1.8.3 #46429
Conversation
@ixdy - I'm getting this from bazel:
Do you know how to fix it? |
/lgtm |
|
@@ -33,7 +33,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_repositories") | |||
load("@io_bazel_rules_docker//docker:docker.bzl", "docker_repositories") | |||
|
|||
go_repositories( | |||
go_version = "1.8.1", | |||
go_version = "1.8.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.
need to update the rules_go dependency to https://github.com/bazelbuild/rules_go/archive/a9df110cf04e167b33f10473c7e904d780d921e6.tar.gz for this, along with updating the sha256.
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.
Specifically,
$ sha256sum a9df110cf04e167b33f10473c7e904d780d921e6.tar.gz
64294fd0e74d2aafa03ec3a1f2f9c167e27d17c9a5cf393e8bf79e43258de73d a9df110cf04e167b33f10473c7e904d780d921e6.tar.gz
So change L1-6 to
http_archive(
name = "io_bazel_rules_go",
sha256 = "64294fd0e74d2aafa03ec3a1f2f9c167e27d17c9a5cf393e8bf79e43258de73d",
strip_prefix = "rules_go-a9df110cf04e167b33f10473c7e904d780d921e6",
urls = ["https://github.com/bazelbuild/rules_go/archive/a9df110cf04e167b33f10473c7e904d780d921e6.tar.gz"],
)
(explanation: the rules_go repo added 1.8.3 in that commit - bazel-contrib/rules_go@a9df110)
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.
Done.
@ixdy - PTAL |
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.
LGTM
@cblecker etcd shouldn't use v1.8 yet. @wojtek-t I think we could use a release note for this both given the possible crypto issue and the removal of the patch. Agree? |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: luxas, timothysc, wojtek-t
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
@cblecker Both https://github.com/kubernetes/kubernetes/releases/tag/v1.7.0-alpha.3 and https://github.com/kubernetes/kubernetes/releases/tag/v1.7.0-alpha.4 have been cut since. |
lgtm2 |
@k8s-bot pull-kubernetes-node-e2e test this |
@k8s-bot pull-kubernetes-node-e2e test this |
/release-note |
@wojtek-t: The following test(s) failed:
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. I understand the commands that are listed here. |
Automatic merge from submit-queue (batch tested with PRs 46429, 46308, 46395, 45867, 45492) |
This PR also removed this patched version of Go 1.8.1 which we used to use to workaround performance problem of Go 1.8.1.
Fix #45216
Ref #46391
@timothysc @bradfitz