Compatibility
- Support for Go 1.10 has been removed.
objc = True
and related Objective C attributes have been removed.go_library
can build Objective C code directly.
See the deprecation schedule for rationale and migration information. Nothing else is currently deprecated.
Changes
This release contains no significant user facing changes. Several bugs are fixed, and dependencies are updated.
Updated dependencies
bazel_skylib
is updated to1.0.2
.org_golang_x_tools
is updated tomaster
as of 2019-10-05.com_github_golang_protobuf
is updated tov1.3.2
, latest as of 2019-10-05.com_github_mwitkow_proto_validators
is updated tov0.2.0
, latest as of 2019-10-05.com_github_gogo_protobuf
is updated tov1.3.0
, latest as of 2019-10-05.org_golang_google_genproto
is updated tomaster
as of 2019-10-05.go_googleapis
is updated tomaster
as of 2019-10-05.
WORKSPACE code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
urls = [
"https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/v0.20.0/rules_go-v0.20.0.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.20.0/rules_go-v0.20.0.tar.gz",
],
sha256 = "078f2a9569fa9ed846e60805fb5fb167d6f6c4ece48e6d409bf5fb2154eaf0d8",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()