Skip to content

Commit

Permalink
chore: update dependencies for --incompatible_disable_starlark_host_t…
Browse files Browse the repository at this point in the history
…ransitions (#5633)
  • Loading branch information
shahms committed May 15, 2023
1 parent dfa2532 commit e63b2cc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.1.1
6.2.0
11 changes: 6 additions & 5 deletions external.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1137,13 +1137,14 @@ def _go_dependencies():
)
http_archive(
name = "org_golang_x_tools",
# v0.1.12, latest as of 2022-09-10
# Must be kept in sync with rules_go or the patches may fail.
# v0.7.0, latest as of 2023-03-27
urls = [
"https://mirror.bazel.build/github.com/golang/tools/archive/refs/tags/v0.1.12.zip",
"https://github.com/golang/tools/archive/refs/tags/v0.1.12.zip",
"https://mirror.bazel.build/github.com/golang/tools/archive/refs/tags/v0.7.0.zip",
"https://github.com/golang/tools/archive/refs/tags/v0.7.0.zip",
],
sha256 = "4e3d94e7bf8dde5dad681c5ddddda6e634f8c8c500683fdf3d2f77a9c086702d",
strip_prefix = "tools-0.1.12",
sha256 = "9f20a20f29f4008d797a8be882ef82b69cf8f7f2b96dbdfe3814c57d8280fa4b",
strip_prefix = "tools-0.7.0",
patches = [
"@io_kythe//third_party/go:add_export_license.patch",
# deletegopls removes the gopls subdirectory. It contains a nested
Expand Down
12 changes: 6 additions & 6 deletions setup.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ def kythe_rule_repositories():
maybe(
http_archive,
name = "io_bazel_rules_go",
sha256 = "ae013bf35bd23234d1dea46b079f1e05ba74ac0321423830119d3e787ec73483",
sha256 = "6dc2da7ab4cf5d7bfc7c949776b1b7c733f05e56edc4bcd9022bb249d2e2a996",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.36.0/rules_go-v0.36.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.36.0/rules_go-v0.36.0.zip",
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip",
],
)

Expand Down Expand Up @@ -90,9 +90,9 @@ def kythe_rule_repositories():
maybe(
http_archive,
name = "rules_jvm_external",
sha256 = "8c3b207722e5f97f1c83311582a6c11df99226e65e2471086e296561e57cc954",
strip_prefix = "rules_jvm_external-5.1",
urls = ["https://github.com/bazelbuild/rules_jvm_external/releases/download/5.1/rules_jvm_external-5.1.tar.gz"],
sha256 = "f86fd42a809e1871ca0aabe89db0d440451219c3ce46c58da240c7dcdc00125f",
strip_prefix = "rules_jvm_external-5.2",
urls = ["https://github.com/bazelbuild/rules_jvm_external/releases/download/5.2/rules_jvm_external-5.2.tar.gz"],
)

maybe(
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
MIN_VERSION = "6.0.0"

# Maximum supported Bazel version. Should match .bazelversion file.
MAX_VERSION = "6.1.1"
MAX_VERSION = "6.2.0"

def _tuplicate(value, delim):
rv = ()
Expand Down

0 comments on commit e63b2cc

Please sign in to comment.