Skip to content

Commit db85b7f

Browse files
hvadehrarules_java Copybara
authored andcommitted
Release rules_java v8.3.2
- Update skylib dep for WORKSPACE - Lower the minimim Bazel compatibility version to `6.3.0` PiperOrigin-RevId: 695281310 Change-Id: Ib131bfe0b651e1da707a040bd66f981f6416f4be
1 parent 20fc864 commit db85b7f

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.bazelci/presubmit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ tasks:
8585
# Bazel 6.x
8686
ubuntu2004_bazel6:
8787
name: "Bazel 6.x"
88-
bazel: 6.5.0
88+
bazel: 6.3.0
8989
platform: ubuntu2004
9090
build_targets: *build_targets_bazel6
9191
ubuntu2004_integration_bazel6:
9292
name: "Bazel 6.x Integration"
93-
bazel: "6.5.0"
93+
bazel: 6.3.0
9494
platform: ubuntu2004
9595
working_directory: "test/repo"
9696
shell_commands:
@@ -101,11 +101,11 @@ tasks:
101101
- "-//:MyTest"
102102
macos_bazel6:
103103
name: "Bazel 6.x"
104-
bazel: 6.5.0
104+
bazel: 6.3.0
105105
platform: macos
106106
build_targets: *build_targets_bazel6
107107
windows_bazel6:
108108
name: "Bazel 6.x"
109-
bazel: 6.5.0
109+
bazel: 6.3.0
110110
platform: windows
111111
build_targets: *build_targets_bazel6

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module(
22
name = "rules_java",
3-
version = "8.3.1",
4-
bazel_compatibility = [">=7.3.2"],
3+
version = "8.3.2",
4+
bazel_compatibility = [">=6.3.0"],
55
compatibility_level = 1,
66
)
77

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
44

55
http_archive(
66
name = "bazel_skylib",
7-
sha256 = "9f38886a40548c6e96c106b752f242130ee11aaa068a56ba7e56f4511f33e4f2",
7+
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
88
urls = [
9-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
10-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
9+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
10+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
1111
],
1212
)
1313

java/repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -384,10 +384,10 @@ def bazel_skylib_repo():
384384
maybe(
385385
http_archive,
386386
name = "bazel_skylib",
387-
sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728",
387+
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
388388
urls = [
389-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
390-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
389+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
390+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
391391
],
392392
)
393393

0 commit comments

Comments
 (0)