Skip to content

chore(deps): update dependency rules_java to v9.8.0 - #81

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bazel-modules
Open

chore(deps): update dependency rules_java to v9.8.0#81
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bazel-modules

Conversation

@renovate

@renovate renovate Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
rules_java bazel_dep minor 9.7.09.8.0

Release Notes

bazelbuild/rules_java (rules_java)

v9.8.0

Compare Source

Changes since 9.7.2
e88b808 Update java_tools to v20.0
4e79508 Update Azul remotejdk versions (#​370)

MODULE.bazel setup

bazel_dep(name = "rules_java", version = "9.8.0")

WORKSPACE setup

With Bazel 8.0.0 and before 8.3.0, add the following to your file:


##### https://github.com/bazelbuild/bazel/pull/26119
common --repositories_without_autoloads=bazel_features_version,bazel_features_globals

In all cases, add the following to your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_java",
    urls = [
        "https://github.com/bazelbuild/rules_java/releases/download/9.8.0/rules_java-9.8.0.tar.gz",
    ],
    sha256 = "88537048d7d07589ff4939c99889300c7063e43480ddd3cfa94d6c2cc899aa2e",
)

http_archive(
    name = "bazel_features",
    sha256 = "a660027f5a87f13224ab54b8dc6e191693c554f2692fcca46e8e29ee7dabc43b",
    strip_prefix = "bazel_features-1.30.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.30.0/bazel_features-v1.30.0.tar.gz",
)

load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

load("@rules_java//java:rules_java_deps.bzl", "rules_java_dependencies")
rules_java_dependencies()

##### note that the following line is what is minimally required from protobuf for the java rules
##### consider using the protobuf_deps() public API from @com_google_protobuf//:protobuf_deps.bzl
load("@com_google_protobuf//bazel/private:proto_bazel_features.bzl", "proto_bazel_features")  # buildifier: disable=bzl-visibility
proto_bazel_features(name = "proto_bazel_features")

##### register toolchains
load("@rules_java//java:repositories.bzl", "rules_java_toolchains")
rules_java_toolchains()

Using the rules
See the source.

Full Changelog: bazelbuild/rules_java@9.7.2...9.8.0

v9.7.2

Compare Source

Changes since 9.7.1
526b170 Remove usages of the Turbine graal native image for darwin_x86_64

MODULE.bazel setup

bazel_dep(name = "rules_java", version = "9.7.2")

WORKSPACE setup

With Bazel 8.0.0 and before 8.3.0, add the following to your file:


##### https://github.com/bazelbuild/bazel/pull/26119
common --repositories_without_autoloads=bazel_features_version,bazel_features_globals

In all cases, add the following to your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_java",
    urls = [
        "https://github.com/bazelbuild/rules_java/releases/download/9.7.2/rules_java-9.7.2.tar.gz",
    ],
    sha256 = "4061f0cbfd556ff885243c600b69be452e26c81ed5b9e5c67d555bf95d37a973",
)

http_archive(
    name = "bazel_features",
    sha256 = "a660027f5a87f13224ab54b8dc6e191693c554f2692fcca46e8e29ee7dabc43b",
    strip_prefix = "bazel_features-1.30.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.30.0/bazel_features-v1.30.0.tar.gz",
)

load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

load("@rules_java//java:rules_java_deps.bzl", "rules_java_dependencies")
rules_java_dependencies()

##### note that the following line is what is minimally required from protobuf for the java rules
##### consider using the protobuf_deps() public API from @com_google_protobuf//:protobuf_deps.bzl
load("@com_google_protobuf//bazel/private:proto_bazel_features.bzl", "proto_bazel_features")  # buildifier: disable=bzl-visibility
proto_bazel_features(name = "proto_bazel_features")

##### register toolchains
load("@rules_java//java:repositories.bzl", "rules_java_toolchains")
rules_java_toolchains()

Using the rules
See the source.

Full Changelog: bazelbuild/rules_java@9.7.1...9.7.2

v9.7.1

Compare Source

Changes since 9.7.0
1ccc4be Pass Java version in Windows launch info.

MODULE.bazel setup

bazel_dep(name = "rules_java", version = "9.7.1")

WORKSPACE setup

With Bazel 8.0.0 and before 8.3.0, add the following to your file:


##### https://github.com/bazelbuild/bazel/pull/26119
common --repositories_without_autoloads=bazel_features_version,bazel_features_globals

In all cases, add the following to your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_java",
    urls = [
        "https://github.com/bazelbuild/rules_java/releases/download/9.7.1/rules_java-9.7.1.tar.gz",
    ],
    sha256 = "2ec42a8b57608bd0f07b111b5e114e464930adca790a6e61bec5cb3109cd7c65",
)

http_archive(
    name = "bazel_features",
    sha256 = "a660027f5a87f13224ab54b8dc6e191693c554f2692fcca46e8e29ee7dabc43b",
    strip_prefix = "bazel_features-1.30.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.30.0/bazel_features-v1.30.0.tar.gz",
)

load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

load("@rules_java//java:rules_java_deps.bzl", "rules_java_dependencies")
rules_java_dependencies()

##### note that the following line is what is minimally required from protobuf for the java rules
##### consider using the protobuf_deps() public API from @com_google_protobuf//:protobuf_deps.bzl
load("@com_google_protobuf//bazel/private:proto_bazel_features.bzl", "proto_bazel_features")  # buildifier: disable=bzl-visibility
proto_bazel_features(name = "proto_bazel_features")

##### register toolchains
load("@rules_java//java:repositories.bzl", "rules_java_toolchains")
rules_java_toolchains()

Using the rules
See the source.

Full Changelog: bazelbuild/rules_java@9.7.0...9.7.1


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Related to dependency updates or issues label Aug 10, 2026
@renovate
renovate Bot requested review from a team and a lite review from Copilot August 10, 2026 02:01
@renovate renovate Bot added the dependencies Related to dependency updates or issues label Aug 10, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.

Updates the Bazel rules_java dependency consistently across the repo’s root module and e2e/benchmark modules.

Changes:

  • Bump rules_java from 9.7.0 to 9.7.1 in root MODULE.bazel
  • Bump rules_java from 9.7.0 to 9.7.1 in e2e module configurations
  • Bump rules_java from 9.7.0 to 9.7.1 for benchmarks module configuration

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.

File Description
e2e/vanilla/MODULE.bazel Aligns e2e vanilla module to rules_java 9.7.1.
e2e/kotlin_builder/MODULE.bazel Updates kotlin-builder e2e module to rules_java 9.7.1.
benchmarks/MODULE.bazel Updates benchmarks module to rules_java 9.7.1.
MODULE.bazel Updates root module to rules_java 9.7.1.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

@codspeed-hq

codspeed-hq Bot commented Aug 10, 2026

Copy link
Copy Markdown

Merging this PR will not alter performance

⚠️ Unknown Walltime execution environment detected

Using the Walltime instrument on standard Hosted Runners will lead to inconsistent data.

For the most accurate results, we recommend using CodSpeed Macro Runners: bare-metal machines fine-tuned for performance measurement consistency.

✅ 9 untouched benchmarks


Comparing renovate/bazel-modules (683934d) with main (13539ef)

Open in CodSpeed

@renovate
renovate Bot force-pushed the renovate/bazel-modules branch from 184c474 to b58f184 Compare August 10, 2026 16:53
@renovate renovate Bot changed the title chore(deps): update dependency rules_java to v9.7.1 chore(deps): update dependency rules_java to v9.7.2 Aug 10, 2026
@renovate
renovate Bot force-pushed the renovate/bazel-modules branch from b58f184 to 683934d Compare August 12, 2026 00:59
@renovate renovate Bot changed the title chore(deps): update dependency rules_java to v9.7.2 chore(deps): update dependency rules_java to v9.8.0 Aug 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Related to dependency updates or issues

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant