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

Support go1.15.5 #212

Merged
merged 3 commits into from
Nov 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions load.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ def repositories():
if not native.existing_rule("bazel_toolchains"):
http_archive(
name = "bazel_toolchains",
sha256 = "4fb3ceea08101ec41208e3df9e56ec72b69f3d11c56629d6477c0ff88d711cf7",
strip_prefix = "bazel-toolchains-3.6.0",
sha256 = "8e0633dfb59f704594f19ae996a35650747adc621ada5e8b9fb588f808c89cb0",
strip_prefix = "bazel-toolchains-3.7.0",
urls = [
"https://github.com/bazelbuild/bazel-toolchains/releases/download/3.6.0/bazel-toolchains-3.6.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/3.6.0.tar.gz",
"https://github.com/bazelbuild/bazel-toolchains/releases/download/3.7.0/bazel-toolchains-3.7.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/3.7.0.tar.gz",
],
)

Expand All @@ -58,15 +58,15 @@ def repositories():
)

# Check https://github.com/bazelbuild/rules_go/releases for new releases
# v0.23.12 supports Golang 1.15.3
# v0.23.15 supports Golang 1.15.5
# If this is updated, please ensure that bazel-toolchains is also updated
if not native.existing_rule("io_bazel_rules_go"):
http_archive(
name = "io_bazel_rules_go",
sha256 = "df76f2a947aef03979ea0b6b9551d55ecc1821e4097f86a8422fdeac80b9ecd4",
sha256 = "e3f4c9aef825c2ac023d0d78f74f7bc22b4b918a329b2d1b888b2978ff5ac154",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.12/rules_go-v0.23.12.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.23.12/rules_go-v0.23.12.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.15/rules_go-v0.23.15.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.23.15/rules_go-v0.23.15.tar.gz",
],
)

Expand Down
4 changes: 2 additions & 2 deletions repos.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def repo_infra_go_repositories():
# 4. Note the "Sum" value (NOT "GoModSum") and update the "sum" parameter below
# 5. Run ./hack/update-bazel.sh
def repo_infra_patches():
# Up-to-date as of 10/21/2020
# Up-to-date as of 11/13/2020
go_repository(
name = "com_github_golang_protobuf",
build_file_generation = "on",
Expand All @@ -78,7 +78,7 @@ def repo_infra_patches():
version = "v1.4.1",
)

# Up-to-date as of 10/21/2020
# Up-to-date as of 11/13/2020
go_repository(
name = "org_golang_x_tools",
build_file_generation = "on",
Expand Down