Skip to content
Open
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
1 change: 0 additions & 1 deletion .bcr/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
matrix:
bazel:
- 7.x
- 8.x
- 9.x
tasks:
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,6 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
bazel: '7.x'
disable_workspace: 'false'
extra_flags: ''
- os: ubuntu-latest
bazel: '7.x'
disable_workspace: 'false'
extra_flags: '--incompatible_disable_native_repo_rules'
- os: ubuntu-latest
bazel: '8.x'
disable_workspace: 'true'
Expand All @@ -121,8 +113,6 @@ jobs:
bazel: '9.x'
disable_workspace: 'true'
extra_flags: '--incompatible_disable_native_repo_rules'
# Skip Windows + Bazel 7.x due to protobuf compilation issues on MSVC
# Windows is tested with Bazel 8.x and 9.x which are more current
- os: windows-latest
bazel: '8.x'
disable_workspace: 'true'
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bazel_dep(name = "rules_kotlin", version = "2.3.0")
bazel_dep(name = "rules_jvm_external", version = "6.10")

# Add protobuf and grpc for Bazel 9 compatibility
bazel_dep(name = "protobuf", version = "33.4")
bazel_dep(name = "protobuf", version = "35.0")
bazel_dep(name = "stardoc", version = "0.7.2")

single_version_override(
Expand Down
854 changes: 848 additions & 6 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This approach was inspired by the [following BazelConf talk](https://www.youtube
## Prerequisites

* Git
* Bazel 3.3.0 or higher
* Bazel 8.x or higher
* Java 8 JDK or higher (Bazel requires this)

## Getting Started
Expand Down
6 changes: 3 additions & 3 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ def bazel_diff_dependencies(
_maybe(
http_archive,
name = "com_google_protobuf",
integrity = "sha256-T8X/Gywzn7hs06JfC1MRR4qwgeZa0ljGeJNZzYTUIfg=",
strip_prefix = "protobuf-26.1",
integrity = "sha256-4Sfqad175OiKvdlYRftsMNJdlpcdlYJ+krcOLpENRqE=",
strip_prefix = "protobuf-35.0",
urls = [
"https://github.com/protocolbuffers/protobuf/archive/v26.1.tar.gz",
"https://github.com/protocolbuffers/protobuf/archive/v35.0.tar.gz",
],
)

Expand Down
2 changes: 1 addition & 1 deletion tools/readme_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This approach was inspired by the [following BazelConf talk](https://www.youtube
## Prerequisites

* Git
* Bazel 3.3.0 or higher
* Bazel 8.x or higher
* Java 8 JDK or higher (Bazel requires this)

## Getting Started
Expand Down
Loading