Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bazel 8.0.0 compatibility #1652

Open
gergelyfabian opened this issue Nov 25, 2024 · 30 comments · May be fixed by #1710
Open

Bazel 8.0.0 compatibility #1652

gergelyfabian opened this issue Nov 25, 2024 · 30 comments · May be fixed by #1710

Comments

@gergelyfabian
Copy link
Contributor

When testing Bazel 8.0.0 RC versions I discovered rules_scala may be incompatible with the latest rules_java (that you in turn my need for Bazel 8.0.0).

This came out when testing a Bazel bug's solution: bazelbuild/bazel#24235.

After upgrading rules_java to 8.5.0+ rules_scala reported errors:

# Using https://github.com/gergelyfabian/bazel-scala-example/tree/bazel-8.0.0rc1
$ USE_BAZEL_VERSION=8.0.0rc3 bazel build //...
INFO: Invocation ID: b8abf68e-49c2-48ee-a5e4-f0d8710f759d
ERROR: Traceback (most recent call last):
	File "/home/user/.cache/bazel/_bazel_user/64527517dacf7170f7d914889f83481c/external/io_bazel_rules_scala/scala/private/rules/scala_doc.bzl", line 52, column 37, in <toplevel>
		_scaladoc_transitive_aspect = aspect(
Error in aspect: Illegal argument: element in 'required_aspect_providers' is of unexpected type. Either all elements should be providers, or all elements should be lists of providers, but got list with an element of type NoneType.
ERROR: Error computing the main repository mapping: at /home/user/.cache/bazel/_bazel_user/64527517dacf7170f7d914889f83481c/external/io_bazel_rules_scala/scala/scala.bzl:20:5: initialization of module 'scala/private/rules/scala_doc.bzl' failed

# Or another one:

$ USE_BAZEL_VERSION=8.0.0rc3 bazel build //...
INFO: Invocation ID: 117a90d7-da17-400c-9f83-908c7ddd7317
WARNING: WORKSPACE support will be removed in Bazel 9 (late 2025), please migrate to Bzlmod, see https://bazel.build/external/migration.
ERROR: Traceback (most recent call last):
	File "/home/user/.cache/bazel/_bazel_user/64527517dacf7170f7d914889f83481c/external/io_bazel_rules_scala/scala/private/common_attributes.bzl", line 18, column 28, in <toplevel>
		"deps": attr.label_list(
Error in label_list: Illegal argument: element in 'providers' is of unexpected type. Either all elements should be providers, or all elements should be lists of providers, but got list with an element of type NoneType.
ERROR: Error computing the main repository mapping: at /home/user/.cache/bazel/_bazel_user/64527517dacf7170f7d914889f83481c/external/io_bazel_rules_scala/scala/scala.bzl:37:5: at /home/user/.cache/bazel/_bazel_user/64527517dacf7170f7d914889f83481c/external/io_bazel_rules_scala/scala/private/rules/scala_repl.bzl:5:5: initialization of module 'scala/private/common_attributes.bzl' failed

Please note, that rules_cc version is also too "old" for Bazel 8.0.0, so I upgraded it on my branch too explicitly. It may need to be updated in rules_scala.

@mbland
Copy link
Contributor

mbland commented Nov 26, 2024

I noted in #1625, based on copious notes from cd22d88 (under Bump to rules_java 7.9.0 for Bazel 7 compatibility), why we're stuck at rules_java 7.9.0 for now.

But, the good news is, Bzlmod builds aren't affected by that particular problem, and Bzlmodification is in the home stretch. Once that lands, we can bump up the rules_java version.

FWIW, I've been using rules_java 7.11.1 in my bzlmod working branch. I'll try to bump it to the latest 8.5.1 and see what happens.

@mbland
Copy link
Contributor

mbland commented Nov 26, 2024

Ah. We have a continuation of the protobuf + ScalaPB saga from #1647.

If I bump to rules_java 8.5.1 (and rules_cc 0.1.0), and stick with protobuf 21.7 (the current rules_scala version, via single_version_override) or protobuf 24.4 (the latest Bazel Central Registry protobuf module compatible with ScalaPB 0.11.17), I get:

$ bazel build //src/... //test/... //third_party/... //scala_proto/...

ERROR: Skipping '//src/...': error loading package under directory 'src':
  error loading package 'src/java/io/bazel/rulesscala/io_utils':
  at .../external/rules_java~/java/defs.bzl:16:6:

Label '@@protobuf~//bazel:java_lite_proto_library.bzl' is invalid because
  'bazel' is not a package; perhaps you meant to put the colon here:
  '@@protobuf~//:bazel/java_lite_proto_library.bzl'?

ERROR: error loading package under directory 'src':
  error loading package 'src/java/io/bazel/rulesscala/io_utils':
  at .../external/rules_java~/java/defs.bzl:16:6:
  
Label '@@protobuf~//bazel:java_lite_proto_library.bzl' is invalid because 
  'bazel' is not a package; perhaps you meant to put the colon here:
  '@@protobuf~//:bazel/java_lite_proto_library.bzl'?

The //bazel package doesn't appear until Protobuf v25.0, and //bazel:java_lite_proto_library.bzl doesn't appear until Protobuf v27.0. Per #1647, there's no version of ScalaPB that works with Protobuf v27.

However, bumping ScalaPB to 1.0.0-alpha.1 and Protobuf v28.3 did work. But as noted in #1647, committing the ScalaPB 1.0.0-alpha.1 bump would mean effectively forcing rules_scala users to upgrade to at least Protobuf v28.2 immediately.

Maybe that's what we ought to do anyway, because clearly we don't want to block anyone from upgrading to Bazel 8. But we'd have to shout it from the rooftops—at the same time we try to persuade folks to switch from depending on rules_scala via WORKSPACE to Bzlmod.

Even so, rules_cc 0.0.9 and rules_java 7.9.0 still work with Protobuf v28.3 and ScalaPB 1.0.0-alpha.1. That means we wouldn't leave Bazel 6 or 7 WORKSPACE users behind entirely, so long as Protobuf v28.3 works for them, if they insist on holding onto WORKSPACE for now.

@mbland
Copy link
Contributor

mbland commented Nov 26, 2024

Ah, more info. The results from my last comment were from building with Bazel 7.4.1. Building with 8.0.0rc4 is not yet possible.

First, I had to update to the highest versions of all dependencies in the Bazel module graph:

bazel_dep(name = "rules_cc", version = "0.1.0")
bazel_dep(name = "rules_java", version = "8.5.1")
bazel_dep(name = "rules_proto", version = "7.0.2")
bazel_dep(name = "protobuf", version = "29.0-rc3", repo_name = "com_google_protobuf")
bazel_dep(name = "rules_python", version = "0.40.0", dev_dependency = True)

I also bumped the following in scripts/create_repository.py and ran it:

PROTOBUF_JAVA_VERSION = "4.29.0-RC3"

I had to add one, the other, or both of these lines to the *.bzl files that needed them:

load("@rules_java//java/common:java_common.bzl", "java_common")
load("@rules_java//java/common:java_info.bzl", "JavaInfo")

But sadly, ScalaPB 1.0.0-alpha.1 and protobuf-java:4.29.0-RC3 aren't compatible:

$ bazel build //src/... //test/... //third_party/... //scala_proto/...

ERROR: .../test/proto/BUILD:184:14:
  ProtoScalaPBRule test/proto/nested_proto_jvm_extra_protobuf_generator_scalapb.srcjar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target //test/proto:nested_proto)
  bazel-out/.../bin/src/scala/scripts/scalapb_worker ...
    (remaining 2 arguments skipped)

--jvm_extra_protobuf_generator_out: java.lang.ExceptionInInitializerError
  at scalapb.options.compiler.Scalapb$.registerAllExtensions(Scalapb.scala:8)
  at scalarules.test.extra_protobuf_generator.ExtraProtobufGenerator$.run(ExtraProtobufGenerator.scala:53)
  at protocbridge.frontend.PluginFrontend$.$anonfun$runWithBytes$1(PluginFrontend.scala:51)
  at scala.util.Try$.apply(Try.scala:217)
  at protocbridge.frontend.PluginFrontend$.runWithBytes(PluginFrontend.scala:51)
  at protocbridge.frontend.PluginFrontend$.runWithInputStream(PluginFrontend.scala:121)
  at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$2(PosixPluginFrontend.scala:40)
  at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.scala:18)
  at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1$$anon$2.block(ExecutionContextImpl.scala:60)
  at java.base/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3118)
  at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1.blockOn(ExecutionContextImpl.scala:71)
  at scala.concurrent.package$.blocking(package.scala:124)
  at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$1(PosixPluginFrontend.scala:38)
  at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.scala:18)
  at scala.concurrent.Future$.$anonfun$apply$1(Future.scala:687)
  at scala.concurrent.impl.Promise$Transformation.run(Promise.scala:467)
  at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1426)
  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)

Caused by: com.google.protobuf.RuntimeVersion$ProtobufRuntimeVersionException:
  Detected mismatched Protobuf Gencode/Runtime version suffixes when loading
  scalapb.options.Scalapb: gencode 4.28.2, runtime 4.29.0-rc3.
  Version suffixes must be the same.

  at com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersionImpl(RuntimeVersion.java:126)
  at com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(RuntimeVersion.java:71)
  at scalapb.options.Scalapb.<clinit>(Scalapb.java:11)
  ... 22 more

java.lang.RuntimeException: Exit with code 1
  at scala.sys.package$.error(package.scala:27)
  at scripts.ScalaPBWorker$.work(ScalaPBWorker.scala:44)
  at io.bazel.rulesscala.worker.Worker.persistentWorkerMain(Worker.java:96)
  at io.bazel.rulesscala.worker.Worker.workerMain(Worker.java:49)
  at scripts.ScalaPBWorker$.main(ScalaPBWorker.scala:39)
  at scripts.ScalaPBWorker.main(ScalaPBWorker.scala)

ERROR: .../test/proto/BUILD:184:14
  Building source jar test/proto/nested_proto_scalapb-src.jar failed:
  (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target //test/proto:nested_proto)
  bazel-out/.../bin/src/scala/scripts/scalapb_worker ...
    (remaining 2 arguments skipped)

Pinning Protobuf to v28.3 using single_version_override didn't work:

$ bazel build //src/... //test/... //third_party/... //scala_proto/...

ERROR: Skipping '//scala_proto/...':
  error loading package under directory 'scala_proto':
  error loading package 'scala_proto/private':
  Internal error while loading Starlark builtins:
  Failed to autoload external symbols:
  cannot load '@@protobuf+//bazel/private:bazel_cc_proto_library.bzl':
  no such file

ERROR: error loading package under directory 'scala_proto':
  error loading package 'scala_proto/private':
  Internal error while loading Starlark builtins:
  Failed to autoload external symbols:
  cannot load '@@protobuf+//bazel/private:bazel_cc_proto_library.bzl':
  no such file

@protobuf//bazel/private:bazel_cc_proto_library.bzl doesn't appear until v29-dev.

These aren't insurmountable issues; perhaps once Protobuf v29.0 lands, I can try again, and ScalaPB v1.0.0-alpha.1 will be happy with plain protobuf-java:4.29.0. Building with Bazel 8 will be blocked until then, even after Bzlmodification.

However, building with Bazel 8 will require those new load("@rules_java//") statements, and that will break WORKSPACE users for sure.

@mbland
Copy link
Contributor

mbland commented Nov 26, 2024

I spoke too soon: I can get a WORKSPACE build to use rules_java 8.5.1 and the other updated repo versions, and get to the point where it reaches the Detected mismatched Protobuf Gencode/Runtime version suffixes error.

So it seems we could bump to Bazel 8 without abandoning WORKSPACE, but we will abandon Bazel 6 and 7 at that point.

Update: To confirm, I went back to Bazel 7.4.1 to build using the new WORKSPACE config with rules_java 8.5.1, etc., and it died on building the remote_java_tools repo:

$ bazel build //src/... //test/... //third_party/... //scala_proto/...

ERROR: Traceback (most recent call last):
  File ".../external/remote_java_tools/BUILD", line 7, column 60, in <toplevel>
    load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_proto_library")
Error: file '@rules_cc//cc:defs.bzl' does not contain symbol 'cc_proto_library'

ERROR: .../external/remote_java_tools/BUILD:
  no such target '@@remote_java_tools//:TurbineDirect':
  target 'TurbineDirect' not declared in package ''
  defined by .../external/remote_java_tools/BUILD

ERROR: .../test/toolchains/BUILD.bazel:10:23:
  no such target '@@remote_java_tools//:TurbineDirect':
  target 'TurbineDirect' not declared in package ''
  defined by .../external/remote_java_tools/BUILD
  and referenced by '//test/toolchains:java21_toolchain'

ERROR: Analysis of target '//test/toolchains:java21_toolchain' failed;
  build aborted: Analysis failed

mbland added a commit to mbland/rules_scala that referenced this issue Nov 26, 2024
These changes enable both `WORKSPACE` and Bzlmod builds to reach a point
where both fail with the following errors. Part of bazelbuild#1652.

- To use `WORKSPACE`, specify `--enable_workspace --noenable_bzlmod` on
  the command line or add them to `.bazelrc`.

Per that issue, the following breakages may be resolved by a new
`protobuf-java:4.29.0` release (without the `-RC3` suffix. Then we can
try to run the rest of the `rules_scala` test suite.

Also per that issue, adopting Bazel 8 and rules_java 8 compatibility
will necessarily break Bazel 6 and 7 compatibility.

---

Hoisted the `load_rules_dependencies()` macro into the new
`//scala:deps.bzl` file to avoid copying everything into `WORKSPACE`.
Changed the order of `http_archive()` calls as well. Without importing
these repos in this order, the build would break under `WORKSPACE`.
Without the `rules_java_dependencies()` and `protobuf_deps()` calls
where they are, the build also breaks.

---

Under both `WORKSPACE` and Bzlmod, the following build command will fail
with a `mismatched Protobuf Gencode/Runtime version suffixes` error:

```txt
$ bazel build //src/... //test/... //third_party/... //scala_proto/...

ERROR: .../external/protobuf+/src/google/protobuf/BUILD.bazel:130:14:
  ProtoScalaPBRule
  external/protobuf+/src/google/protobuf/wrappers_proto_jvm_extra_protobuf_generator_scalapb.srcjar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@protobuf+//src/google/protobuf:wrappers_proto)
  bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)

--jvm_extra_protobuf_generator_out:
  java.lang.ExceptionInInitializerError
    at scalapb.options.compiler.Scalapb$.registerAllExtensions(Scalapb.scala:8)
    at scalarules.test.extra_protobuf_generator.ExtraProtobufGenerator$.run(ExtraProtobufGenerator.scala:53)
    at protocbridge.frontend.PluginFrontend$.$anonfun$runWithBytes$1(PluginFrontend.scala:51)
    at scala.util.Try$.apply(Try.scala:217)
    at protocbridge.frontend.PluginFrontend$.runWithBytes(PluginFrontend.scala:51)
    at protocbridge.frontend.PluginFrontend$.runWithInputStream(PluginFrontend.scala:121)
    at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$2(PosixPluginFrontend.scala:40)
    at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.scala:18)
    at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1$$anon$2.block(ExecutionContextImpl.scala:60)
    at java.base/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3118)
    at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1.blockOn(ExecutionContextImpl.scala:71)
    at scala.concurrent.package$.blocking(package.scala:124)
    at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$1(PosixPluginFrontend.scala:38)
    at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.scala:18)
    at scala.concurrent.Future$.$anonfun$apply$1(Future.scala:687)
    at scala.concurrent.impl.Promise$Transformation.run(Promise.scala:467)
    at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1426)
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)

Caused by:
  com.google.protobuf.RuntimeVersion$ProtobufRuntimeVersionException:
  Detected mismatched Protobuf Gencode/Runtime version suffixes when
  loading scalapb.options.Scalapb: gencode 4.28.2, runtime 4.29.0-rc3.
  Version suffixes must be the same.

    at com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersionImpl(RuntimeVersion.java:126)
    at com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(RuntimeVersion.java:71)
    at scalapb.options.Scalapb.<clinit>(Scalapb.java:11)
    ... 22 more

java.lang.RuntimeException: Exit with code 1
    at scala.sys.package$.error(package.scala:27)
    at scripts.ScalaPBWorker$.work(ScalaPBWorker.scala:44)
    at io.bazel.rulesscala.worker.Worker.persistentWorkerMain(Worker.java:96)
    at io.bazel.rulesscala.worker.Worker.workerMain(Worker.java:49)
    at scripts.ScalaPBWorker$.main(ScalaPBWorker.scala:39)
    at scripts.ScalaPBWorker.main(ScalaPBWorker.scala)

ERROR: .../external/protobuf+/src/google/protobuf/BUILD.bazel:130:14
  scala @@protobuf+//src/google/protobuf:wrappers_proto
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@protobuf+//src/google/protobuf:wrappers_proto)
  bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)
```

Later builds then fail with `java.lang.NoClassDefFoundError: Could not
initialize class scalapb.options.Scalapb`:

```txt
$ bazel build //src/... //test/... //third_party/... //scala_proto/...

ERROR: .../third_party/test/proto/BUILD.bazel:4:14:
  ProtoScalaPBRule
  third_party/test/proto/proto_jvm_extra_protobuf_generator_scalapb.srcjar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target //third_party/test/proto:proto)
  bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)

--jvm_extra_protobuf_generator_out:
  java.lang.NoClassDefFoundError:
  Could not initialize class scalapb.options.Scalapb
    at scalapb.options.compiler.Scalapb$.registerAllExtensions(Scalapb.scala:8)
    at scalarules.test.extra_protobuf_generator.ExtraProtobufGenerator$.run(ExtraProtobufGenerator.scala:53)
    at protocbridge.frontend.PluginFrontend$.$anonfun$runWithBytes$1(PluginFrontend.scala:51)
    at scala.util.Try$.apply(Try.scala:217)
    at protocbridge.frontend.PluginFrontend$.runWithBytes(PluginFrontend.scala:51)
    at protocbridge.frontend.PluginFrontend$.runWithInputStream(PluginFrontend.scala:121)
    at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$2(PosixPluginFrontend.scala:40)
    at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.scala:18)
    at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1$$anon$2.block(ExecutionContextImpl.scala:60)
    at java.base/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3118)
    at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1.blockOn(ExecutionContextImpl.scala:71)
    at scala.concurrent.package$.blocking(package.scala:124)
    at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$1(PosixPluginFrontend.scala:38)
    at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.scala:18)
    at scala.concurrent.Future$.$anonfun$apply$1(Future.scala:687)
    at scala.concurrent.impl.Promise$Transformation.run(Promise.scala:467)
    at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1426)
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)

java.lang.RuntimeException: Exit with code 1
    at scala.sys.package$.error(package.scala:27)
    at scripts.ScalaPBWorker$.work(ScalaPBWorker.scala:44)
    at io.bazel.rulesscala.worker.Worker.persistentWorkerMain(Worker.java:96)
    at io.bazel.rulesscala.worker.Worker.workerMain(Worker.java:49)
    at scripts.ScalaPBWorker$.main(ScalaPBWorker.scala:39)
    at scripts.ScalaPBWorker.main(ScalaPBWorker.scala)

ERROR: .../third_party/test/proto/BUILD.bazel:4:14
  Building source jar third_party/test/proto/proto_scalapb-src.jar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target //third_party/test/proto:proto)
  bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)
```
@mbland
Copy link
Contributor

mbland commented Nov 26, 2024

I've created the bazel-8-compatibility working branch in my rules_scala fork with the commit message for mbland@ebe714d describing the current build breakages, which are the same under WORKSPACE and Bzlmod.

Note that this branch/commit is based on my bzlmod working branch, not the current upstream master branch.

@hvadehra
Copy link
Member

I believe the original issue in the description (#1652 (comment)) is because the scala/scala.bzl file exports helper macros for WORKSPACE setup (such as scala_repositories.bzl) but also transitively loads bzl files not intended for WORKSPACE evaluation - for eg scala_library.bzl. The latter refer to BUILD/bzl symbols such as JavaInfo, and this breaks with Bazel 8 / Bazel@HEAD as these symbols have been removed.

Historically, this has only worked by accident, as the Starlark environment for WORKSPACE evaluation also (incorrectly) included these symbols. See bazelbuild/bazel#17713 for when this first occurred while moving some of these symbols to Starlark (but still embedded in Bazel).

The right fix would to partition the rules_scala bzl load graph into non-overlapping WORKSPACE & BUILD/bzl subsets.

(cc @comius, @meteorcloudy)
However, it may also be possible to make Bazel 8 fully backwards-compatibile by also injecting the relocated symbols in the WORKSPACE environment here . Another alternative could be to fix this by replacing the symbols with non-functional but type-compatible ones (i.e. a dummy Provider instead of Starlark.NONE for JavaInfo).

@meteorcloudy
Copy link
Member

I think it's better to do the right thing here instead of implementing more hacks that would be remove anyway in future.

@hvadehra
Copy link
Member

However, it may also be possible to make Bazel 8 fully backwards-compatibile by also injecting the relocated symbols in the WORKSPACE environment here.

As it turns out, this can't actually work (at least not easily), as WORKSPACE evaluation is itself needed before these symbols are available for injection.

Another alternative could be to fix this by replacing the symbols with non-functional but type-compatible ones (i.e. a dummy Provider instead of Starlark.NONE for JavaInfo).

This seems doable and I might end up doing this for Bazel@HEAD, if only to turn our downstream CI green. However, (if it does happen) cherry-picking the fix to Bazel 8 will only occur if we end up needing a new RC for other reasons.

copybara-service bot pushed a commit to bazelbuild/bazel that referenced this issue Nov 29, 2024
Context: bazelbuild/rules_scala#1652 (comment)

This will fix the issue in Bazel@HEAD, and the primary motivation is to turn downstream CI green.

On the off-chance we are making a new Bazel 8 RC, we can include this. Otherwise, maybe this can go in 8.1.0

PiperOrigin-RevId: 701260369
Change-Id: If62eb015b5220b574ce34a26a194d2722021082f
mbland added a commit to mbland/rules_scala that referenced this issue Nov 29, 2024
Moves functions out of `//scala:scala.bzl` and updates `WORKSPACE` to
load `//scala:toolchains.bzl` to avoid importing macros that depend on
`JavaInfo` and `java_common` during `WORKSPACE` evaluation. Based on
advice from @hvadehra in bazelbuild#1652.

I haven't tried this under Bzlmod yet, and it still fails with the
following error. This is due to bumping to Protobuf v29.0 and
protobuf-java:4.29.0, and I believe I can update
`ExtraProtobufGenerator.scala` to fix this. But the point is that I do
_not_ have to `load()` files from `@rules_java` after all.

```txt
ERROR: .../external/com_google_protobuf/src/google/protobuf/BUILD.bazel:23:14:
  ProtoScalaPBRule external/com_google_protobuf/src/google/protobuf/any_proto_jvm_extra_protobuf_generator_scalapb.srcjar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@com_google_protobuf//src/google/protobuf:any_proto)
  bazel-out/.../bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)

--jvm_extra_protobuf_generator_out:
  java.lang.NoSuchMethodError:
  'java.lang.Object com.google.protobuf.DescriptorProtos$FieldOptions.getExtension(com.google.protobuf.GeneratedMessage$GeneratedExtension)'
    at scalapb.compiler.DescriptorImplicits$ExtendedFieldDescriptor.fieldOptions(DescriptorImplicits.scala:329)
    at scalapb.compiler.DescriptorImplicits$ExtendedFieldDescriptor.scalaName(DescriptorImplicits.scala:207)
    at scalapb.compiler.ProtoValidation.validateField(ProtoValidation.scala:121)
    at scalapb.compiler.ProtoValidation.$anonfun$validateMessage$3(ProtoValidation.scala:56)
    at scalapb.compiler.ProtoValidation.$anonfun$validateMessage$3$adapted(ProtoValidation.scala:56)
    at scala.collection.Iterator.foreach(Iterator.scala:943)
    at scala.collection.Iterator.foreach$(Iterator.scala:943)
    at scala.collection.AbstractIterator.foreach(Iterator.scala:1431)
    at scala.collection.IterableLike.foreach(IterableLike.scala:74)
    at scala.collection.IterableLike.foreach$(IterableLike.scala:73)
    at scala.collection.AbstractIterable.foreach(Iterable.scala:56)
    at scalapb.compiler.ProtoValidation.validateMessage(ProtoValidation.scala:56)
    at scalapb.compiler.ProtoValidation.$anonfun$validateFile$2(ProtoValidation.scala:17)
    at scalapb.compiler.ProtoValidation.$anonfun$validateFile$2$adapted(ProtoValidation.scala:17)
    at scala.collection.Iterator.foreach(Iterator.scala:943)
    at scala.collection.Iterator.foreach$(Iterator.scala:943)
    at scala.collection.AbstractIterator.foreach(Iterator.scala:1431)
    at scala.collection.IterableLike.foreach(IterableLike.scala:74)
    at scala.collection.IterableLike.foreach$(IterableLike.scala:73)
    at scala.collection.AbstractIterable.foreach(Iterable.scala:56)
    at scalapb.compiler.ProtoValidation.validateFile(ProtoValidation.scala:17)
    at scalapb.compiler.ProtoValidation.$anonfun$validateFiles$1(ProtoValidation.scala:10)
    at scalapb.compiler.ProtoValidation.$anonfun$validateFiles$1$adapted(ProtoValidation.scala:10)
    at scala.collection.immutable.Stream.foreach(Stream.scala:533)
    at scalapb.compiler.ProtoValidation.validateFiles(ProtoValidation.scala:10)
    at scalarules.test.extra_protobuf_generator.ExtraProtobufGenerator$.handleCodeGeneratorRequest(ExtraProtobufGenerator.scala:86)
    at scalarules.test.extra_protobuf_generator.ExtraProtobufGenerator$.run(ExtraProtobufGenerator.scala:55)
    at protocbridge.frontend.PluginFrontend$.$anonfun$runWithBytes$1(PluginFrontend.scala:51)
    at scala.util.Try$.apply(Try.scala:213)
    at protocbridge.frontend.PluginFrontend$.runWithBytes(PluginFrontend.scala:51)
    at protocbridge.frontend.PluginFrontend$.runWithInputStream(PluginFrontend.scala:121)
    at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$2(PosixPluginFrontend.scala:40)
    at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)
    at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1$$anon$2.block(ExecutionContextImpl.scala:75)
    at java.base/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3118)
    at scala.concurrent.impl.ExecutionContextImpl$DefaultThreadFactory$$anon$1.blockOn(ExecutionContextImpl.scala:87)
    at scala.concurrent.package$.blocking(package.scala:146)
    at protocbridge.frontend.PosixPluginFrontend$.$anonfun$prepare$1(PosixPluginFrontend.scala:38)
    at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)
    at scala.concurrent.Future$.$anonfun$apply$1(Future.scala:659)
    at scala.util.Success.$anonfun$map$1(Try.scala:255)
    at scala.util.Success.map(Try.scala:213)
    at scala.concurrent.Future.$anonfun$map$1(Future.scala:292)
    at scala.concurrent.impl.Promise.$anonfun$transform$1(Promise.scala:42)
    at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:74)
    at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1426)
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)

java.lang.RuntimeException: Exit with code 1
    at scala.sys.package$.error(package.scala:30)
    at scripts.ScalaPBWorker$.work(ScalaPBWorker.scala:44)
    at io.bazel.rulesscala.worker.Worker.persistentWorkerMain(Worker.java:96)
    at io.bazel.rulesscala.worker.Worker.workerMain(Worker.java:49)
    at scripts.ScalaPBWorker$.main(ScalaPBWorker.scala:39)
    at scripts.ScalaPBWorker.main(ScalaPBWorker.scala)

ERROR: .../external/com_google_protobuf/src/google/protobuf/BUILD.bazel:23:14
  Building source jar external/com_google_protobuf/src/google/protobuf/any_proto_scalapb-src.jar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@com_google_protobuf//src/google/protobuf:any_proto)
  bazel-out/darwin_arm64-opt-exec-ST-a828a81199fe/bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)
```
@mbland
Copy link
Contributor

mbland commented Nov 29, 2024

@hvadehra Thanks for the hint about partitioning the .bzl files. I've done so successfully in my new bazel-8-compatibility-split-files branch, specifically in commit mbland@cdfec73, building under Bazel 8.0.0rc6. I didn't have to load() any @rules_java symbols at all.

As noted in the commit message, I haven't tried it under Bzlmod yet. , and there's still a Protobuf related breakage. But, I don't think there'll be any problem under Bzlmod , and now that Protobuf v29 and protobuf-java:4.29.0 are out (as of two days ago, after I ran my initial experiment), I think I can actually fix this breakage on the rules_scala side.

Update: Ah, I forgot to bump the ScalaPB version to 1.0.0-alpha.1. Once I did that, success! bazel build //src/... //test/... //third_party/... //scala_proto/... builds!

I can actually begin to land the .bzl file partitioning as I land more of my changes from #1482, and land the protobuf-java:4.29.0 update on the side. Unless the Protobuf v29 bump is an absolute requirement for Bazel 8 and/or rules_java 8, we might be able ensure Bazel 8 compatibility without requiring a separate major version bump just for that (we're already planning a bump for the Bzlmod changes).

Going to play with this some more in the coming days to see what I find out. @simuons and @liucijus Here's a heads-up that I may start sending pull requests related to these findings.

mbland added a commit to mbland/rules_scala that referenced this issue Nov 29, 2024
Every Scala version now uses com.google.protobuf:protobuf-java:4.29.0.
Part of bazelbuild#1482 and bazelbuild#1652.

This is necessary, but not sufficient, to make `rules_scala` Bazel 8
compatible by enabling an update to `protobuf` v29.0. Building with
Bazel 6.5.0 and `protobuf` v21.7 continues to pass all tests after this
change.
mbland added a commit to mbland/rules_scala that referenced this issue Nov 29, 2024
Ensures we get all the versions of dependencies we want in `WORKSPACE`,
while providing a new API to consumers. Part of bazelbuild#1652.
mbland added a commit to mbland/rules_scala that referenced this issue Nov 30, 2024
Ensures we get all the versions of dependencies we want in `WORKSPACE`,
while providing a new API to consumers. Part of bazelbuild#1652.
mbland added a commit to mbland/rules_scala that referenced this issue Nov 30, 2024
Ensures we get all the versions of dependencies we want in `WORKSPACE`,
while providing a new API to consumers. Part of bazelbuild#1652.
dkashyn-sfdc added a commit to dkashyn-sfdc/intellij that referenced this issue Nov 30, 2024
mbland added a commit to mbland/rules_scala that referenced this issue Nov 30, 2024
Ensures we get all the versions of dependencies we want in `WORKSPACE`,
while providing a new API to consumers. Part of bazelbuild#1652.

Bumps several packages as high as they can go and still be compatible
with Bazel 6 and 7:

- `bazel_skylib`: 1.4.1 => 1.7.1
- `rules_cc`: 0.0.6 => 0.0.9
- `rules_python`: 0.36.0 => 0.38.0
- `rules_go`: 0.50.1

The following packages are at the maximum version to prevent breakages
under Bazel 6.5.0.

---

`abseil-cpp` and `protobuf` have to stay at 20220623.1 and v27.1,
respectively, for Bazel 6 compatibility per bazelbuild#1647. `protobuf` up to
v25.5 is compatible with Bazel 6 provided users set the compiler flags
mentioned in that issue.

---

`rules_python` 0.38.0 => 0.39.0 requires at least `rules_cc` 0.0.10,
which introduced `cc/common/cc_info.bzl`:

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

[ ...snip... ]
ERROR: error loading package under directory 'test':
  error loading package 'test':
  at .../external/rules_python/python/defs.bzl:17:6:
  at .../external/rules_python/python/py_binary.bzl:18:6:
  at .../external/rules_python/python/private/py_binary_macro.bzl:16:6:
  at .../external/rules_python/python/private/common_bazel.bzl:19:6:
  Label '@rules_cc//cc/common:cc_info.bzl' is invalid
    because 'cc/common' is not a package;
    perhaps you meant to put the colon here:
    '@rules_cc//cc:common/cc_info.bzl'?
```

---

`rules_cc` 0.0.9 => 0.10.0 requires Bazel 7, which defines
`CcSharedLibraryHintInfo`:

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

ERROR: .../external/rules_cc/cc/private/rules_impl/native.bzl:40:33:
  name 'CcSharedLibraryHintInfo' is not defined (did you mean
  'CcSharedLibraryInfo'?)

[ ...snip... ]

ERROR: error loading package under directory 'test':
  error loading package 'test':
  at .../external/rules_python/python/defs.bzl:17:6:
  at .../external/rules_python/python/py_binary.bzl:18:6:
  at .../external/rules_python/python/private/py_binary_macro.bzl:16:6:
  at .../external/rules_python/python/private/common_bazel.bzl:18:6:
  at .../external/rules_cc/cc/common/cc_common.bzl:17:6:
  compilation of module 'cc/private/rules_impl/native.bzl' failed
```

---

`rules_java` remains at 7.9.0 due to the more complicated situation it
presents. The current version that could be compatible with Bazel 6 and
7 is 7.12.2.

As it turns out, we could include `rules_java` versions up to and
including 7.12.2 if we don't call the following in `WORKSPACE`:

```py
load("@rules_java//java:repositories.bzl", "rules_java_dependencies",
"rules_java_toolchains")
rules_java_dependencies()
rules_java_toolchains()
```

In fact, __we don't do that today__. When we do, Bazel 7.4.1 builds
successfully, but Bazel 6.5.2 fails with:

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

ERROR:
  .../external/rules_java/toolchains/java_toolchain_alias.bzl:83:34:
  Use of Starlark transition without allowlist attribute
  '_allowlist_function_transition'.
  See Starlark transitions documentation for details and usage:
  @rules_java//toolchains:java_toolchain_alias.bzl NORMAL

ERROR:
  .../src/java/io/bazel/rulesscala/coverage/instrumenter/BUILD:3:12:
  While resolving toolchains for target
  //src/java/io/bazel/rulesscala/coverage/instrumenter:instrumenter:
  invalid registered toolchain '//toolchains:all':
  while parsing '//toolchains:all':
  error loading package '@rules_java//toolchains':
  initialization of module 'toolchains/java_toolchain_alias.bzl' failed

ERROR: Analysis of target
  '//src/java/io/bazel/rulesscala/coverage/instrumenter:instrumenter'
  failed; build aborted:
```

When we bump to rules_java 7.10.0, which contains
bazelbuild/rules_java#210, Bazel 7.4.1 fails
with:

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

ERROR: .../external/rules_java_builtin/toolchains/BUILD:254:14:
  While resolving toolchains for target
  @@rules_java_builtin//toolchains:platformclasspath (096dcc8):
  No matching toolchains found for types
  @@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type.

To debug, rerun with
  --toolchain_resolution_debug='@@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type'
If platforms or toolchains are a new concept for you, we'd encourage
  reading https://bazel.build/concepts/platforms-intro.

ERROR: Analysis of target '//test/toolchains:java21_toolchain' failed;
  build aborted: Analysis failed
```

This is the error I described in bazelbuild#1619, under "Bump to rules_java 7.9.0
for Bazel 7 compatibility" in the message for
commit cd22d88.

Today I rediscovered:

- bazelbuild/rules_java: Regression with
  @@rules_java//toolchains:bootstrap_runtime_toolchain_type in 7.10.0
  bazelbuild/rules_java#214

But even worse, Bazel 6.5.0 fails with:

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

[ ...snip... ]

ERROR: .../test/src/main/resources/java_sources/BUILD:5:14:
  Building test/src/main/resources/java_sources/CompiledWithJava8_java.jar
  (1 source file) failed: Worker process did not return a WorkResponse:

---8<---8<--- Start of log, file at .../bazel-workers/multiplex-worker-18-Javac.log ---8<---8<---
Error thrown by worker thread, shutting down worker.
java.lang.NoSuchMethodError:
  'java.lang.Iterable
   com.google.devtools.build.buildjar.javac.BlazeJavacMain$ClassloaderMaskingFileManager.getJavaFileObjectsFromPaths(java.util.Collection)'
    at com.google.devtools.build.buildjar.javac.BlazeJavacMain.compile(BlazeJavacMain.java:142)
    at com.google.devtools.build.buildjar.ReducedClasspathJavaLibraryBuilder.compileSources(ReducedClasspathJavaLibraryBuilder.java:57)
    at com.google.devtools.build.buildjar.SimpleJavaLibraryBuilder.compileJavaLibrary(SimpleJavaLibraryBuilder.java:110)
    at com.google.devtools.build.buildjar.SimpleJavaLibraryBuilder.run(SimpleJavaLibraryBuilder.java:118)
    at com.google.devtools.build.buildjar.BazelJavaBuilder.build(BazelJavaBuilder.java:111)
    at com.google.devtools.build.buildjar.BazelJavaBuilder.parseAndBuild(BazelJavaBuilder.java:91)
    at com.google.devtools.build.buildjar.BazelJavaBuilder.lambda$main$0(BazelJavaBuilder.java:52)
    at com.google.devtools.build.lib.worker.WorkRequestHandler$WorkRequestCallback.apply(WorkRequestHandler.java:252)
    at com.google.devtools.build.lib.worker.WorkRequestHandler.respondToRequest(WorkRequestHandler.java:480)
    at com.google.devtools.build.lib.worker.WorkRequestHandler.lambda$startResponseThread$1(WorkRequestHandler.java:433)
    at java.base/java.lang.Thread.run(Thread.java:829)
---8<---8<--- End of log ---8<---8<---

ERROR: .../test/src/main/resources/java_sources/BUILD:11:14:
  Building test/src/main/resources/java_sources/CompiledWithJava11_java.jar
  (1 source file) failed: Worker process did not return a WorkResponse:

---8<---8<--- Start of log, file at .../bazel-workers/multiplex-worker-18-Javac.log ---8<---8<---
Error thrown by worker thread, shutting down worker.
java.lang.NoSuchMethodError:
  'java.lang.Iterable
   com.google.devtools.build.buildjar.javac.BlazeJavacMain$ClassloaderMaskingFileManager.getJavaFileObjectsFromPaths(java.util.Collection)'
    at com.google.devtools.build.buildjar.javac.BlazeJavacMain.compile(BlazeJavacMain.java:142)
    at com.google.devtools.build.buildjar.ReducedClasspathJavaLibraryBuilder.compileSources(ReducedClasspathJavaLibraryBuilder.java:57)
    at com.google.devtools.build.buildjar.SimpleJavaLibraryBuilder.compileJavaLibrary(SimpleJavaLibraryBuilder.java:110)
    at com.google.devtools.build.buildjar.SimpleJavaLibraryBuilder.run(SimpleJavaLibraryBuilder.java:118)
    at com.google.devtools.build.buildjar.BazelJavaBuilder.build(BazelJavaBuilder.java:111)
    at com.google.devtools.build.buildjar.BazelJavaBuilder.parseAndBuild(BazelJavaBuilder.java:91)
    at com.google.devtools.build.buildjar.BazelJavaBuilder.lambda$main$0(BazelJavaBuilder.java:52)
    at com.google.devtools.build.lib.worker.WorkRequestHandler$WorkRequestCallback.apply(WorkRequestHandler.java:252)
    at com.google.devtools.build.lib.worker.WorkRequestHandler.respondToRequest(WorkRequestHandler.java:480)
    at com.google.devtools.build.lib.worker.WorkRequestHandler.lambda$startResponseThread$1(WorkRequestHandler.java:433)
    at java.base/java.lang.Thread.run(Thread.java:829)
---8<---8<--- End of log ---8<---8<---
```

In bazelbuild#1619, I thought we wanted to keep `@bazel_tools//tools/jdk:` as the
canonical Java toolchains package, instead of
`@rules_java//toolchains:`. But based on this comment from @fmeum, I'm
inclined to believe switching to `@rules_java//toolchains:` actually is
the preferred, futureproof approach:

- bazelbuild/rules_java#214 (comment)

---

Bazel 8 requires `rules_java` 8, per bazelbuild#1652. We can't update to
`rules_java` 8 right now, unless we decided to do the following:

- Tell Bazel 6 users to add C++ compiler flags to support the newer
  `abseil-cpp` versions required by newer `protobuf` versions.

- Abandon Bazel 6 support in favor of supporting Bazel 7 at a minimum.

- In addition to either of the above cases, update ScalaPB to
  1.0.0-alpha.1 or higher to support `protobuf` v28.

Here are the details explaining why `rules_java` 8 currently breaks.

`rules_java` 8.0.0 requires Bazel >= 7.3.2, which provides the `subrule`
API. Compatibility with Bazel >= 6.3.0 isn't restored until `rules_java`
8.3.2.

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

ERROR:
  .../external/rules_java/java/common/rules/android_lint.bzl:142:24:
  name 'subrule' is not defined (did you mean 'rule'?)

ERROR: Error computing the main repository mapping:
  at .../scala/private/extensions/dev_deps.bzl:8:6:
  at .../external/rules_java/java/repositories.bzl:20:6:
  at .../external/rules_java/toolchains/local_java_repository.bzl:17:6:
  at .../external/rules_java/java/defs.bzl:18:6:
  at .../external/rules_java/java/java_library.bzl:16:6:
  at .../external/rules_java/java/bazel/rules/bazel_java_library.bzl:21:6:
  compilation of module 'java/common/rules/android_lint.bzl' failed
```

`rules_java` 8.3.0 is broken, as it can't find its own
`@compatibility_proxy` repo:

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

ERROR: error loading package under directory 'src':
  error loading package 'src/protobuf/io/bazel/rules_scala':
  at .../external/rules_java/java/defs.bzl:22:6:
  at .../external/rules_java/java/java_test.bzl:16:6:
  Unable to find package for @compatibility_proxy//:proxy.bzl:
  The repository '@compatibility_proxy' could not be resolved:
  Repository '@compatibility_proxy' is not defined.
```

`rules_java` 8.3.1 seems to fix this, presumably by importing the
`protobuf` repo as `com_google_protobuf`. However, it now requires at
least `protobuf` v27.0, which adds `bazel/java/lite_proto_library.bzl`.
Per bazelbuild#1647, we'd have to update to ScalaPB 1.0.0-alpha.1 to support
`protobuf` v28, abandoning users of previous `protobuf` versions or
forcing them to upgrade.

```txt
$ bazel build //{src,test,third_party,scala_proto}/...

[...snip...]
ERROR: error loading package under directory 'src':
  error loading package 'src/java/io/bazel/rulesscala/worker':
  at .../external/rules_java/java/defs.bzl:16:6:
  Label '@com_google_protobuf//bazel:java_lite_proto_library.bzl'
  is invalid because 'bazel' is not a package;
  perhaps you meant to put the colon here:
  '@com_google_protobuf//:bazel/java_lite_proto_library.bzl'?
```
mbland added a commit to mbland/rules_scala that referenced this issue Nov 30, 2024
Updates almost all dependencies on `@bazel_tools//tools/jdk:` toolchain
targets and `.bzl` files to corresponding targets and files in
`@rules_java//toolchains:`. Part of bazelbuild#1482 and bazelbuild#1652.

All dependencies on `@bazel_tools//tools/jdk:toolchain_type` remain,
however, as there is not yet a corresponding target in
`@rules_java//toolchains:`.

Adds the `WORKSPACE` stanza recommended in the `rules_java` release
notes, and removes our own calls to instantiate `rules_java` repos and
to register `rules_java` toolchains.

These changes are required to avoid build breakages when updating to
`rules_scala` 7.10.0 and higher. All targets build and all tests pass
under Bazel 6.5.0 and 7.4.1.

---

I was on the right track in my analysis from bazelbuild#1619 ("Bump to
rules_java 7.9.0 for Bazel 7 compatibility" in the message for
commit cd22d88). However, I thought we
_shouldn't_ update any targets from `@bazel_tools//tools/jdk:` to
`@rules_java//toolchains:`. That's why I thought we were stuck on
`rules_java` 7.9.0.

However, this comment from @fmeum made me think switching to
`@rules_java//toolchains:` actually is the preferred approach:

- bazelbuild/rules_java#214 (comment)

So this is a potentially breaking change, but in the good kind of way,
in that it requires an easy, future proof update.
mbland added a commit to mbland/rules_scala that referenced this issue Dec 1, 2024
It's not just `rules_java` in the new preamble, but that's what's
precipitating the change. This preamble also works under Bazel 8, per my
investigation in bazelbuild#1652.
mbland added a commit to mbland/rules_scala that referenced this issue Dec 1, 2024
Removes this symbol from `scala/scala.bzl` as well as
`setup_scala_testing_toolchain`, and deletes
`scala/private/macros/toolchains.bzl`. Part of bazelbuild#1482 and bazelbuild#1652.

This is required for Bazel 8 and `rules_java` 8 compatibility, but is
also compatible with Bazel 6 and 7. In bazelbuild#1652, @hvadehra suggested
partitioning the `.bzl` files such that `WORKSPACE` doesn't `load` a
file that tries to `load` symbols from `rules_java`. I successfully did
so in a separate branch, and along with other minor changes, got
`rules_scala` to build with `rules_java` 8.5.1.

The other changes will come in separate pull requests, but it makes
sense to land this change now before adding any other toolchains to
`scala_toolchains`.

---

Arguably, we should remove all macros exported from `scala/scala.bzl`
that only instantiate toolchain dependencies and define toolchains. That
may be a breaking change for some users, but will ultimately be
necessary for these macros to remain compatible with Bazel 8.
mbland added a commit to mbland/rules_scala that referenced this issue Dec 1, 2024
Adds the jmh toolchain to `scala_toolchains()` and moves
`jmh_repositories()` to `jmh/toolchain/toolchain.bzl` for `rules_java` 8
compatibility. Part of bazelbuild#1482 and bazelbuild#1652.
mbland added a commit to mbland/rules_scala that referenced this issue Dec 1, 2024
This is the last of the toolchain to receive the "toolchainization"
treatment prior to Bzlmodification, and moves `twitter_scrooge()` to
`twitter_scrooge/toolchain/toolchain.bzl` for `rules_java` 8
compatibility. Part of bazelbuild#1482 and bazelbuild#1652.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 19, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place. The following files
thoroughly test the helpers from `scala/private/macros/bzlmod.bzl` in
specifically:

- scala/private/macros/test/BUILD.bzlmod_test
- scala/private/macros/test/MODULE.bzlmod_test
- scala/private/macros/test/bzlmod_test_ext.bzl
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring. Adding
`test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 19, 2025
Works around breakages when building under `WORKSPACE` with Bazel 8.1.0,
as described in bazelbuild/bazel#25286. Part of bazelbuild#1652.

PR bazelbuild#1694 added support for `rctx.original_name` after the implementation
of bazelbuild/bazel#24467 landed in 8.1.0rc2. However, I hadn't tested
`WORKSPACE` builds with 8.1.0rc2 before 8.1.0 came out.

This resolves the breakage until a Bazel 8 release containing a fix for
bazelbuild/bazel#25286 becomes available (possibly Bazel 8.2.0).
mbland added a commit to mbland/rules_scala that referenced this issue Feb 19, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place. The following files
thoroughly test the helpers from `scala/private/macros/bzlmod.bzl` in
specifically:

- scala/private/macros/test/BUILD.bzlmod_test
- scala/private/macros/test/MODULE.bzlmod_test
- scala/private/macros/test/bzlmod_test_ext.bzl
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring. Adding
`test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 20, 2025
Works around breakages when building under `WORKSPACE` with Bazel 8.1.0,
as described in bazelbuild/bazel#25286. Part of bazelbuild#1652.

PR bazelbuild#1694 added support for `rctx.original_name` after the implementation
of bazelbuild/bazel#24467 landed in 8.1.0rc2. However, I hadn't tested
`WORKSPACE` builds with 8.1.0rc2 before 8.1.0 came out.

This resolves the breakage until a Bazel 8 release containing a fix for
bazelbuild/bazel#25286 becomes available (possibly Bazel 8.2.0).
mbland added a commit to mbland/rules_scala that referenced this issue Feb 20, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place. The following files
thoroughly test the helpers from `scala/private/macros/bzlmod.bzl` in
specifically:

- scala/private/macros/test/BUILD.bzlmod_test
- scala/private/macros/test/MODULE.bzlmod_test
- scala/private/macros/test/bzlmod_test_ext.bzl
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring. Adding
`test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
@mbland
Copy link
Contributor

mbland commented Feb 20, 2025

#1482 weekly update

Getting very close!

mbland added a commit to mbland/rules_scala that referenced this issue Feb 22, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place. The following files
thoroughly test the helpers from `scala/private/macros/bzlmod.bzl` in
specifically:

- scala/private/macros/test/BUILD.bzlmod_test
- scala/private/macros/test/MODULE.bzlmod_test
- scala/private/macros/test/bzlmod_test_ext.bzl
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring. Adding
`test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 24, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place, plus the new
`examples/overridden_artifacts` repo. The following files thoroughly
test the helpers from `scala/private/macros/bzlmod.bzl` specifically:

- scala/private/macros/test/...
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring.

Adding `test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.
`test/shell/test_helper.sh` also introduces a mechanism for
automatically finding and skipping tests, documented in the comment at
the bottom of the file.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 24, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place, plus the new
`examples/overridden_artifacts` repo. The following files thoroughly
test the helpers from `scala/private/macros/bzlmod.bzl` specifically:

- scala/private/macros/test/...
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring.

Adding `test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.
`test/shell/test_helper.sh` also introduces a mechanism for
automatically finding and skipping tests, documented in the comment at
the bottom of the file.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 25, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place, plus the new
`examples/overridden_artifacts` repo. The following files thoroughly
test the helpers from `scala/private/macros/bzlmod.bzl` specifically:

- scala/private/macros/test/...
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring.

Adding `test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.
`test/shell/test_helper.sh` also introduces a mechanism for
automatically finding and skipping tests, documented in the comment at
the bottom of the file.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 26, 2025
Describes the new `scala_toolchains()` API, breaking changes, Bazel
compatibility matrix, and breaking of the `io_bazel_rules_scala` repo
name dependency. Part of bazelbuild#1482, bazelbuild#1647, bazelbuild#1652, and bazelbuild#1699, it also removes
obsolete `WORKSPACE` APIs in favor of `scala_toolchains()`, et. al.

Much of the README text regarding `WORKSPACE` configuration, Bazel
compatibility, and breaking changes comes from:

- bazelbuild#1482 (comment)

The "Breaking changes in `rules_scala` 7.x" section of `README.md`
describes the removed `WORKSPACE` macros, and provides guidance for
adopting the `scala_toolchains()` API. Also includes information about
the upcoming Bzlmod implementation (bazelbuild#1482) and the Bazel 8 compatibility
changes for `rules_scala` 8.x (bazelbuild#1652).

Contains a light editing pass over almost every Markdown file to resolve
`markdownlint` warnings when editing in VSCode. Also added
`.markdownlint.json` to silence rule `MD033/no-inline-html`, since
several docs contain `<br/>` and/or `<table>` elements.

- https://github.com/DavidAnson/vscode-markdownlint?tab=readme-ov-file#markdownlintconfig

Performed other opportunistic grammar edits and added new information,
including:

- `docs/coverage.md`: Describes how to determine the default JaCoCo
  version used by `rules_java`

- `scripts/README.md`: Updates `create_repository.py` docs extensively,
  and adds a section for `sync_bazelversion.sh`

- Replaces `starlark` code fences with `py`, since the syntax is
  identical and editors seem to support it better.

---

Since the next major release is imminent, ensuring the documentation
accurately reflects all the changes since v6.6.0 has become an urgent
priority.

Rather than leave the old `WORKSPACE` APIs in place, which could lead to
surprising failures, this change removes all of them. This also changes
some code that still depended on some of these obsolete macros,
including `scala_toolchains()`. Since all the toolchainization changes
led to the entire project already using `scala_toolchains()` and
`scala_register_toolchains()` exclusively, this proved a low risk
refactoring.

With some Bzlmod and Bazel 8 information already in place, very little
will need to change when these implementations land. The commits that
contain those implementations will also include their relevant
documentation updates.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 26, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- scala/extensions/config.bzl
- scala/extensions/deps.bzl
- scala/private/extensions/dev_deps.bzl
- scala/private/macros/bzlmod.bzl

The first three files above are already thoroughly tested by existing
tests now that `MODULE.bazel` files are in place, plus the new
`examples/overridden_artifacts` repo. The following files thoroughly
test the helpers from `scala/private/macros/bzlmod.bzl` specifically:

- scala/private/macros/test/...
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring.

Adding `test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.
`test/shell/test_helper.sh` also introduces a mechanism for
automatically finding and skipping tests, documented in the comment at
the bottom of the file.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 27, 2025
Fulfills most of bazelbuild#1482. Compatible with Bazel 6.5.0 and 7.5.0, but not
Bazel 8.

New `MODULE.bazel` files mirroring existing `WORKSPACE` configurations
comprise the bulk of the commit. The empty `WORKSPACE.bzlmod` files
ensure that Bzlmod won't evaluate the existing `WORKSPACE` files.

These new files comprise the most significant part of the change:

- `examples/overridden_artifacts`
- `scala/extensions/config.bzl`
- `scala/extensions/deps.bzl`
- `scala/private/extensions/dev_deps.bzl`
- `scala/private/macros/bzlmod.bzl`

`config.bzl`, `deps.bzl`, and `dev_deps.bzl` are thoroughly tested by
existing tests. The following files thoroughly test the helpers from
`scala/private/macros/bzlmod.bzl` specifically:

- scala/private/macros/test/...
- test/shell/test_bzlmod_macros.sh

The pattern employed throughout the new module extensions is explained
in the `scala/private/macros/bzlmod.bzl` docstring.

Adding `test/shell/test_bzlmod_macros.sh` also precipitated adding a new
`assert_matches` helper to `test/shell/test_helper.sh`.
`test/shell/test_helper.sh` also introduces a mechanism for
automatically finding and skipping tests, documented in the comment at
the bottom of the file.

"Publish to BCR" configuration in the `.bcr` directory comes from:

- https://github.com/bazel-contrib/publish-to-bcr/tree/main/templates

The bazel-contrib/publish-to-bcr README contains further guidance on
configuring the app. Once that's done, we can use the app to publish a
new version to https://registry.bazel.build/ and then close bazelbuild#1482.

Per bazelbuild#1647, `com_google_protobuf` remains at v21.7, and versions up to
v25.5 can work after bumping `com_google_absl` to 20240722.0 and setting
C++17 compiler flags in `.bazelrc`.

This change enables Bazel 6 and 7 users to migrate their `rules_scala`
dependency from `WORKSPACE` to `MODULE.bazel` whenever they're ready.

After the next major version release includes this change, we can update
`com_google_protobuf`, `rules_java`, and related dependencies as part of
enabling Bazel 8 compatibility (bazelbuild#1652). The `rules_jvm_external` update
in that change will effectively end Bzlmod support for Bazel 6.5.0,
requiring another major version release after that.
simuons pushed a commit that referenced this issue Feb 28, 2025
* Update docs for version 7.0.0, remove old APIs

Describes the new `scala_toolchains()` API, breaking changes, Bazel
compatibility matrix, and breaking of the `io_bazel_rules_scala` repo
name dependency. Part of #1482, #1647, #1652, and #1699, it also removes
obsolete `WORKSPACE` APIs in favor of `scala_toolchains()`, et. al.

Much of the README text regarding `WORKSPACE` configuration, Bazel
compatibility, and breaking changes comes from:

- #1482 (comment)

The "Breaking changes in `rules_scala` 7.x" section of `README.md`
describes the removed `WORKSPACE` macros, and provides guidance for
adopting the `scala_toolchains()` API. Also includes information about
the upcoming Bzlmod implementation (#1482) and the Bazel 8 compatibility
changes for `rules_scala` 8.x (#1652).

Contains a light editing pass over almost every Markdown file to resolve
`markdownlint` warnings when editing in VSCode. Also added
`.markdownlint.json` to silence rule `MD033/no-inline-html`, since
several docs contain `<br/>` and/or `<table>` elements.

- https://github.com/DavidAnson/vscode-markdownlint?tab=readme-ov-file#markdownlintconfig

Performed other opportunistic grammar edits and added new information,
including:

- `docs/coverage.md`: Describes how to determine the default JaCoCo
  version used by `rules_java`

- `scripts/README.md`: Updates `create_repository.py` docs extensively,
  and adds a section for `sync_bazelversion.sh`

- Replaces `starlark` code fences with `py`, since the syntax is
  identical and editors seem to support it better.

---

Since the next major release is imminent, ensuring the documentation
accurately reflects all the changes since v6.6.0 has become an urgent
priority.

Rather than leave the old `WORKSPACE` APIs in place, which could lead to
surprising failures, this change removes all of them. This also changes
some code that still depended on some of these obsolete macros,
including `scala_toolchains()`. Since all the toolchainization changes
led to the entire project already using `scala_toolchains()` and
`scala_register_toolchains()` exclusively, this proved a low risk
refactoring.

With some Bzlmod and Bazel 8 information already in place, very little
will need to change when these implementations land. The commits that
contain those implementations will also include their relevant
documentation updates.

* Update GitHub refs, minor grammar error in README

It seems the README won't expand refs like #1482. This updates such refs
to use the repo prefix, e.g., #1482.

* More small README.md improvements

* s/stanza/snippet/g

Thanks to @bartoszkosiorek for pointing out in #1703 that "stanza" isn't
a common word. That was my former English Lit major innie leaking out,
applying a poetry term (a group of lines, like a paragraph) out of
context.

* Add Bzlmod repo scope change, `scala_toolchain`

Explicitly notes that some `rules_scala` APIs may break, specifically
`setup_scala_toolchain`. Part of #1482.

Brought to my attention by @michalbogacz in a `#scala` thread in the
Bazel Slack workspace, which was in the context of
michalbogacz/scala-bazel-monorepo#26.

- https://bazelbuild.slack.com/archives/CDCKJ2KFZ/p1740144886159909

* Update README.md per @grepwood's feedback in #1703

- Updates links not to use code tags, since it gives the appearance of
  multiple adjacent links.

- Updates issue reference missing the `bazelbuild/rules_scala` prefix.

- Moves paragraphs above "Getting started" `WORKSPACE` snippet to a new
  "Important changes in `rules_scala` v7.0.0 configuration" section
  following the snippet.

* Update `scala_toolchains()` docstring

Removes the reference to `@rules_scala_toolchains`, since that's not
really a public interface detail.

Prompted by a ping from @gergelyfabian in a Bazel Slack workspace direct
message, asking about the docstring currently reflected on `master`.

* Fix `WORKSPACE` snippet for `rules_java` 7.x

The `WORKSPACE` snippet in the `README.md` now matches what's currently
in all the other `WORKSPACE` files.

I'd previously included the `rules_java` 8.x statements from my Bazel 8
compatibility branch in the `README.md` changes for `rules_scala` 7.x.
@gergelyfabian tried the previous snippet from #1703, and it broke his
build:

- #1703 (comment)

* Clean up cross-compilation.md, rm deprecated attr

Includes a full editing pass over `docs/cross-compilation.md` and
removes the `incompatible_use_toolchain_transition` attribute, which
has been deprecated since before Bazel 6.5.0.

- https://bazel.build/versions/6.4.0/rules/lib/globals?hl=en#rule

The "Cross-build support tiers" could use extra review by someone more
knowledgable about that aspect of `rules_scala`.

Prompted by a suggestion by @gergelyfabian in #1703 to update a single
line, but turned into a complete overhaul.

* Fix `io_bazel_rules_scala`, version in README

Removes a remaining, incorrect `@io_bazel_rules_scala` reference in
`README.md`, as well as in the `.github/workflows/workspace_snippet.sh` script.
Updates the `README.md` to use `<VERSION>` in place of `7.0.0` in the
`WORKSPACE` snippet under "Getting started".

Prompted by a couple comments by @gergelyfabian in #1703. I used the following
command to confirm no more unintentional `io_bazel_rules_scala` references
remain. (I'm leaving the `test_intellij_aspect.sh` script alone for now.)

```txt
$ git ls-files | xargs grep 'io_bazel_rules_scala[^_]'

.github/workflows/workspace_snippet.sh:    name = "rules_scala",  # Can be "io_bazel_rules_scala" if you still need it.
README.md:    name = "rules_scala",  # Can be "io_bazel_rules_scala" if you still need it.
README.md:- __`rules_scala` no longer requires the `io_bazel_rules_scala` repository
test_intellij_aspect.sh:  bazel test --test_output=errors --override_repository io_bazel_rules_scala="${rules_scala_dir}"  --extra_toolchains=@io_bazel_rules_scala//scala:default_toolchain //aspect/testing/tests/src/com/google/idea/blaze/aspect/scala/...
```

There are still many `io_bazel_rules_scala_.*` references, most of them for
internal toolchain dependency repos. The `@io_bazel_rules_scala_config`
repository is the exception, which is a publicly documented interface. (We
_could_ change it, as another potential known breakage for `rules_scala`
v7.0.0.)

* Remove `testing` parameter from `scala_toolchains`

Removed in favor of using the existing `scalatest`, `junit`, and
`specs2` parameters at @simuons's suggestion in:

- #1482 (comment)

Also updated the `scala_toolchains()` docstring slightly and added `doc`
parameters to the `attrs` for `_scala_toolchains_repo()`.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 28, 2025
Bumps dependencies to versions that are compatible with both Bazel 7.5.0
and 8.0.0. Part of bazelbuild#1482. Closes bazelbuild#1652.

- ScalaPB jars: 0.11.17 => 1.0.0-alpha.1
- `rules_python`: 0.38.0 => 1.2.0
- `rules_cc`: 0.0.9 => 0.1.1
- `abseil-cpp`: 20220623.1 => 20250127.0
- `rules_java`: 7.12.4 => 8.9.0
- `protobuf`: 21.7 => 29.3
- `rules_proto`: 6.0.2 => 7.1.0
- `google-common-protos`: 2.52.0 => 2.53.0

This precipitated the following updates also included in this commit:

- Loads `java_proto_library` from `com_google_protobuf`.
- Bumps `.bazelversion` to 7.5.0.
- Sets `.bazelci/presubmit.yml` to use Bazel 7.5.0 instead of 6.5.0, and
  `last_rc` in place of `7.x`.
- Sets `common --enable_workspace --noenable_bzlmod` in `.bazelrc` and
  `tools/bazel\.rc\.buildkite`.
- Adds `allow_empty = True` to a `glob` expression in
  `//test/semanticdb:lib_with_tempsrc`.
- Removes Scala 2.11 test cases.

Bazel 6 is officially unsupported as of this change and the upcoming
`rules_scala` 7.0.0 release. `WORKSPACE` builds succeed under Bazel
6.5.0 (with C++ compiler flags) for the time being, but are not
guaranteed to continue working. (Bazel 6 Bzlmod builds would break
anyway, because Bazel 6 doesn't provide `use_repo_rule`, required by
`rules_jvm_external` 6.3, which is required by `protobuf` v29.)

The `README` now documents that `scala_proto` or any rules otherwise
depending on `protobuf` are no longer supported out of the box for Scala
2.11. Such users will have to ensure they register their own downgraded
versions, at their own risk of future `rules_scala` 7.x incompatibility.

Version bump related updates to `.bazelversion`,`WORKSPACE`, and
`third_party/repositories` comprise the bulk of this change. Other
small, yet important changes (other than those due to the version bumps
noted above) include:

- Adding a new `examples/overridden_artifacts` repository and the
  `overridden_artifacts_example` test case in
  `test/shell/test_examples.sh`.

- Making `_validate_scalac_srcjar()` and `dt_patched_compiler_setup()` in
  `scala/private/macros/scala_repositories.bzl` more tolerant of
  dictionaries containing keys mapped to `None`. The new
  `overridden_artifacts_example` test covers this.

Bazel 8 and `rules_java` 8 require `protobuf` >= v29. After the
`protobuf` v29 bump, and before the ScalaPB 1.0.0-alpha.1 bump,
`scala_proto` targets would fail with the following error:

```txt
ERROR: .../external/com_google_protobuf/src/google/protobuf/BUILD.bazel:23:14:
  ProtoScalaPBRule
  external/com_google_protobuf/src/google/protobuf/any_proto_jvm_extra_protobuf_generator_scalapb.srcjar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@com_google_protobuf//src/google/protobuf:any_proto)
  bazel-out/.../bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)

--jvm_extra_protobuf_generator_out:
  java.lang.NoSuchMethodError:
  'java.lang.Object com.google.protobuf.DescriptorProtos$FieldOptions.getExtension(com.google.protobuf.GeneratedMessage$GeneratedExtension)'
    at scalapb.compiler.DescriptorImplicits$ExtendedFieldDescriptor.fieldOptions(DescriptorImplicits.scala:329)
  [ ...snip... ]

java.lang.RuntimeException: Exit with code 1
    at scala.sys.package$.error(package.scala:30)
    at scripts.ScalaPBWorker$.work(ScalaPBWorker.scala:44)
    at io.bazel.rulesscala.worker.Worker.persistentWorkerMain(Worker.java:96)
    at io.bazel.rulesscala.worker.Worker.workerMain(Worker.java:49)
    at scripts.ScalaPBWorker$.main(ScalaPBWorker.scala:39)
    at scripts.ScalaPBWorker.main(ScalaPBWorker.scala)

ERROR: .../external/com_google_protobuf/src/google/protobuf/BUILD.bazel:23:14
  Building source jar external/com_google_protobuf/src/google/protobuf/any_proto_scalapb-src.jar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@com_google_protobuf//src/google/protobuf:any_proto)
  bazel-out/darwin_arm64-opt-exec-ST-a828a81199fe/bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)
```

Here's why the other changes were necessary in light of the version
bumps:

- `java_proto_library` from `rules_java` is now officially deprecated,
  hence loading it from `com_google_protobuf`.

- Setting `common --enable_workspace --noenable_bzlmod` (instead of
  `build`) fixes `test_semanticdb_handles_removed_sourcefiles`. This
  test relies on `bazel query`, which is also affected by these flags,
  hence `common` instead of `build`. Bazel 8 defaults to
  `--enable_bzlmod --noenable_workspace`, causing the `WORKSPACE` run of
  this test to fail.

- `glob` requires an explicit `allow_empty = True` parameter now that
  `--incompatible_disallow_empty_glob` defaults to `True` in Bazel 8.

- ScalaPB 0.9.8, the last version compatible with Scala 2.11, does not
  support `protobuf` >= 26.0. For this reason, we must remove the Scala
  2.11 test cases.

We should consider dropping Scala 2.11 support at this point, since
there's no ScalaPB release for it that supports later versions of
`protobuf`. That, and we could remove some of the special case code
added in the following changes, amongst other 2.11 support details:

- bazelbuild#1631
- bazelbuild#1648
- bazelbuild#1687
- bazelbuild#1688

Finally, the motivation for the non-version bump changes:

- The design bug in the upcoming Bzlmod API for `overridden_artifacts`
  reported by @dmivankov precipitated the `examples/overriden_artifacts`
  repo and test. See:
  bazelbuild#1482 (comment)
  bazelbuild#1482 (comment)

- The `_validate_scalac_srcjar()` update maintains the strict checks for
  mutually exclusive values, while preventing client code from having to
  explicitly filter out `None` entries. This pairs with the change in
  `dt_patched_compiler_setup()` that uses the `compiler_srcjar`
  dictionary. These changes helps keep the upcoming module extension a
  bit cleaner.
mbland added a commit to mbland/rules_scala that referenced this issue Feb 28, 2025
Bumps dependencies to versions that are compatible with both Bazel 7.5.0
and 8.0.0. Part of bazelbuild#1482. Closes bazelbuild#1652.

- ScalaPB jars: 0.11.17 => 1.0.0-alpha.1
- `rules_python`: 0.38.0 => 1.2.0
- `rules_cc`: 0.0.9 => 0.1.1
- `abseil-cpp`: 20220623.1 => 20250127.0
- `rules_java`: 7.12.4 => 8.9.0
- `protobuf`: 21.7 => 29.3
- `rules_proto`: 6.0.2 => 7.1.0
- `google-common-protos`: 2.52.0 => 2.53.0

This precipitated the following updates also included in this commit:

- Loads `java_proto_library` from `com_google_protobuf`.
- Bumps `.bazelversion` to 7.5.0.
- Sets `.bazelci/presubmit.yml` to use Bazel 7.5.0 instead of 6.5.0, and
  `last_rc` in place of `7.x`.
- Sets `common --enable_workspace --noenable_bzlmod` in `.bazelrc` and
  `tools/bazel\.rc\.buildkite`.
- Adds `allow_empty = True` to a `glob` expression in
  `//test/semanticdb:lib_with_tempsrc`.
- Removes Scala 2.11 test cases.

Bazel 6 is officially unsupported as of this change and the upcoming
`rules_scala` 7.0.0 release. `WORKSPACE` builds succeed under Bazel
6.5.0 (with C++ compiler flags) for the time being, but are not
guaranteed to continue working. (Bazel 6 Bzlmod builds would break
anyway, because Bazel 6 doesn't provide `use_repo_rule`, required by
`rules_jvm_external` 6.3, which is required by `protobuf` v29.)

The `README` now documents that `scala_proto` or any rules otherwise
depending on `protobuf` are no longer supported out of the box for Scala
2.11. Such users will have to ensure they register their own downgraded
versions, at their own risk of future `rules_scala` 7.x incompatibility.

Version bump related updates to `.bazelversion`,`WORKSPACE`, and
`third_party/repositories` comprise the bulk of this change. Other
small, yet important changes (other than those due to the version bumps
noted above) include:

- Adding a new `examples/overridden_artifacts` repository and the
  `overridden_artifacts_example` test case in
  `test/shell/test_examples.sh`.

- Making `_validate_scalac_srcjar()` and `dt_patched_compiler_setup()` in
  `scala/private/macros/scala_repositories.bzl` more tolerant of
  dictionaries containing keys mapped to `None`. The new
  `overridden_artifacts_example` test covers this.

---

We're no longer planning to support Bazel 6 in the next major release
per @simuons's decision in:

- bazelbuild#1482 (comment)

The plan is now to land the Bazel 7 and 8 compatibility updates first,
then land the Bzlmod change. This enables us to make only one new major
version release, instead of two (the first supporting with Bazel 6, the
second dropping support).

Bazel 8 and `rules_java` 8 require `protobuf` >= v29. After the
`protobuf` v29 bump, and before the ScalaPB 1.0.0-alpha.1 bump,
`scala_proto` targets would fail with the following error:

```txt
ERROR: .../external/com_google_protobuf/src/google/protobuf/BUILD.bazel:23:14:
  ProtoScalaPBRule
  external/com_google_protobuf/src/google/protobuf/any_proto_jvm_extra_protobuf_generator_scalapb.srcjar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@com_google_protobuf//src/google/protobuf:any_proto)
  bazel-out/.../bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)

--jvm_extra_protobuf_generator_out:
  java.lang.NoSuchMethodError:
  'java.lang.Object com.google.protobuf.DescriptorProtos$FieldOptions.getExtension(com.google.protobuf.GeneratedMessage$GeneratedExtension)'
    at scalapb.compiler.DescriptorImplicits$ExtendedFieldDescriptor.fieldOptions(DescriptorImplicits.scala:329)
  [ ...snip... ]

java.lang.RuntimeException: Exit with code 1
    at scala.sys.package$.error(package.scala:30)
    at scripts.ScalaPBWorker$.work(ScalaPBWorker.scala:44)
    at io.bazel.rulesscala.worker.Worker.persistentWorkerMain(Worker.java:96)
    at io.bazel.rulesscala.worker.Worker.workerMain(Worker.java:49)
    at scripts.ScalaPBWorker$.main(ScalaPBWorker.scala:39)
    at scripts.ScalaPBWorker.main(ScalaPBWorker.scala)

ERROR: .../external/com_google_protobuf/src/google/protobuf/BUILD.bazel:23:14
  Building source jar external/com_google_protobuf/src/google/protobuf/any_proto_scalapb-src.jar
  failed: (Exit 1): scalapb_worker failed:
  error executing ProtoScalaPBRule command
  (from target @@com_google_protobuf//src/google/protobuf:any_proto)
  bazel-out/darwin_arm64-opt-exec-ST-a828a81199fe/bin/src/scala/scripts/scalapb_worker
    ... (remaining 2 arguments skipped)
```

Here's why the other changes were necessary in light of the version
bumps:

- `java_proto_library` from `rules_java` is now officially deprecated,
  hence loading it from `com_google_protobuf`.

- Setting `common --enable_workspace --noenable_bzlmod` (instead of
  `build`) fixes `test_semanticdb_handles_removed_sourcefiles`. This
  test relies on `bazel query`, which is also affected by these flags,
  hence `common` instead of `build`. Bazel 8 defaults to
  `--enable_bzlmod --noenable_workspace`, causing the `WORKSPACE` run of
  this test to fail.

- `glob` requires an explicit `allow_empty = True` parameter now that
  `--incompatible_disallow_empty_glob` defaults to `True` in Bazel 8.

- ScalaPB 0.9.8, the last version compatible with Scala 2.11, does not
  support `protobuf` >= 26.0. For this reason, we must remove the Scala
  2.11 test cases.

We should consider dropping Scala 2.11 support at this point, since
there's no ScalaPB release for it that supports later versions of
`protobuf`. That, and we could remove some of the special case code
added in the following changes, amongst other 2.11 support details:

- bazelbuild#1631
- bazelbuild#1648
- bazelbuild#1687
- bazelbuild#1688

Finally, the motivation for the non-version bump changes:

- The design bug in the upcoming Bzlmod API for `overridden_artifacts`
  reported by @dmivankov precipitated the `examples/overriden_artifacts`
  repo and test. See:
  bazelbuild#1482 (comment)
  bazelbuild#1482 (comment)

- The `_validate_scalac_srcjar()` update maintains the strict checks for
  mutually exclusive values, while preventing client code from having to
  explicitly filter out `None` entries. This pairs with the change in
  `dt_patched_compiler_setup()` that uses the `compiler_srcjar`
  dictionary. These changes helps keep the upcoming module extension a
  bit cleaner.
@mbland mbland linked a pull request Feb 28, 2025 that will close this issue
mbland added a commit to mbland/rules_scala that referenced this issue Mar 1, 2025
Registers a precompiled protocol compiler toolchain when
`--incompatible_enable_proto_toolchain_resolution` is `True`.
Part of bazelbuild#1482 and bazelbuild#1652.

Stops `protoc` recompilation, and fixes the build breakage in bazelbuild#1710 due
to `protobuf` include paths exceeding the Visual Studio path length
limit.

The updates to `scala_proto/scala_proto_toolchain.bzl` were inspired by:

- protocolbuffers/protobuf: bazel: Remove hardcoded dependency on
  //:protoc from language runtimes #19679
  protocolbuffers/protobuf#19679

The `proto_lang_toolchain` call was inspired by the `README` from:

- https://github.com/aspect-build/toolchains_protoc/

Adds `scripts/update_protoc_integrity.py` to automatically update
`scala/private/protoc/protoc_integrity.bzl`.

This should make builds of `rules_scala` much faster all around. Given
the fact that this feature depends on recent `protobuf` versions, and
the Windows `protobuf` build breaks without it, we have a catch-22. It
likely can't be separated from the rest of bazelbuild#1710, though I would prefer
that.

It also seems likely that we'd eventually need to do this to continue
supporting Windows, per:

- protocolbuffers/protobuf#12947
- https://protobuf.dev/news/v30/#poison-msvc--bazel
- protocolbuffers/protobuf#20085

More background on proto toolchainization:

- Proto Toolchainisation Design Doc
  https://docs.google.com/document/d/1CE6wJHNfKbUPBr7-mmk_0Yo3a4TaqcTPE0OWNuQkhPs/edit

- bazelbuild/bazel: Protobuf repo recompilation sensitivity
  bazelbuild/bazel#7095

- bazelbuild/rules_proto: Implement proto toolchainisation
  bazelbuild/rules_proto#179

- rules_proto 6.0.0 release notes mentioning Protobuf Toolchainisation
  https://github.com/bazelbuild/rules_proto/releases/tag/6.0.0
@mbland
Copy link
Contributor

mbland commented Mar 4, 2025

Another (not so) weekly update: #1482 (comment)

If #1710 goes in as-is, it will close this issue.

mbland added a commit to mbland/rules_scala that referenced this issue Mar 6, 2025
Dependency version updates that still work with Bazel 6.5.0 and 7.5.0.
Broken out from bazelbuild#1710, and part of bazelbuild#1482 and bazelbuild#1652.

Updates `.bazelversion` files to 7.5.0 and the CI builds in
`.bazelci/presubmit.yml` to use Bazel 7.5.0.

Bumps the following dependencies, which should not cause build breakages
on Windows + MSVC:

- Go: 1.24.0 => 1.24.1
- Scalafmt: 3.9.1 => 3.9.2
- `abseil-cpp`: 20220623.1 => 20250127.0
- `grpc`: 1.70.0 => 1.71.1
- `protobuf-java`: 4.29.3 => 4.30.0
- `sbt-compiler-interface`: 1.10.7 => 1.10.8
- `sbt-compiler-util`: 1.10.7 => 1.10.10
- `google-common-protos`: 2.52.0 => 2.53.0

Defers the following updates, which are already present in bazelbuild#1710:

- `protobuf`: v21.7 => v28.3 (or v30.0)
- `rules_cc`: 0.0.9 => 0.1.1
- `rules_proto`: 6.0.2 => 7.1.0
- `rules_python`: 0.38.0 => 1.2.0
- `scalapb`: 0.11.17 => 1.0.0-alpha1

These deferred updates all need to happen together, as updating only a
subset of them will break the build.

This change is smaller and more focused than bazelbuild#1710, and should
ultimately make that pull request smaller and/or easier to review.
mbland added a commit to mbland/rules_scala that referenced this issue Mar 6, 2025
Updates the `protobuf` version to one that's still compatible with Bazel
6.5.0 and 7.5.0 without updating `scalapb`. Broken out from bazelbuild#1710, and
part of bazelbuild#1482 and bazelbuild#1652.

Like bazelbuild#1711, updates `.bazelversion` files to 7.5.0 and the CI builds in
`.bazelci/presubmit.yml` to use Bazel 7.5.0.

Unlike bazelbuild#1711, contains only these updates:

- `abseil-cpp`: 20220623.1 => 20250127.0
- `protobuf`: v21.7 => v25.6

This change aims make bazelbuild#1710 smaller and more focused, and should
ultimately make that pull request smaller and/or easier to review.

Specifically, this is an attempt to see whether MSVC will build
successfully with `protobuf` v25.6. If it doesn't, I will update this
change to include the protocol compiler toolchainization changes
from bazelbuild#1710.
mbland added a commit to mbland/rules_scala that referenced this issue Mar 7, 2025
Adds the `examples/overridden_artifacts` repository and the
corresponding `overridden_artifacts_example` test case in
`test/shell/test_examples.sh`. Broken out from bazelbuild#1710, and part of bazelbuild#1482
and bazelbuild#1652.

@dmivankov noticed the design bug in the upcoming Bzlmod API for
`overridden_artifacts` that this change addresses. See:

- bazelbuild#1482 (comment)
- bazelbuild#1482 (comment)

Makes `_validate_scalac_srcjar()` and `dt_patched_compiler_setup()` in
`scala/private/macros/scala_repositories.bzl` more tolerant of
dictionaries containing keys mapped to `None`. The new
`overridden_artifacts_example` test covers this.

Sets `.bazelversion` in the new repo to 7.5.0 to match changes in
both bazelbuild#1710 and bazelbuild#1711.

This change is smaller and more focused than bazelbuild#1710, and should
ultimately make that pull request smaller and/or easier to review.
mbland added a commit to mbland/rules_scala that referenced this issue Mar 7, 2025
Contains many editorial improvements to and some extra information in
the README, along with a few small improvements to the code. Broken out
from bazelbuild#1710, and part of bazelbuild#1482 and bazelbuild#1652.

Specifically:

- Adds more info on translating `@rules_scala` to
  `@io_bazel_rules_scala` for dependencies via repo mapping.

- Merges information about the previously planned `rules_scala` 8.0.0
  release into the information for 7.0.0, since it seems we may make
  only one major release.

- Improves information about `protobuf` support for versions before v28,
  Scala 2.11, and the upcoming Bzlmod `compatibility_level` setting.

- In `scala_config.bzl`, changes the private `_default_scala_version()`
  to the public `DEFAULT_SCALA_VERSION`.

- Adds `allow_empty = True` to a `glob` expression in
  `//test/semanticdb:lib_with_tempsrc`.

- Removes Scala 2.11 test cases from `test_thirdparty_version.sh` and
  `test_version.sh`.

This change is smaller and more focused than bazelbuild#1710, and should
ultimately make that pull request smaller and/or easier to review.

The motivations for the individual changes are:

- The public `DEFAULT_SCALA_VERSION` constant makes this value
  accessible to the upcoming module extension.

- `glob` requires an explicit `allow_empty = True` parameter in Bazel 8,
  in which `--incompatible_disallow_empty_glob` defaults to `True`.

- ScalaPB 0.9.8, the last version compatible with Scala 2.11, does not
  support `protobuf` v25.6 or later. For this reason, we must remove the
  Scala 2.11 test cases, as documented in the `README.md` updates. See
  also bazelbuild#1712.

We should consider dropping Scala 2.11 support at this point, since
there's no ScalaPB release for it that supports later versions of
`protobuf`. That, and we could remove some of the special case code
added in the following changes, amongst other 2.11 support details:

- bazelbuild#1631
- bazelbuild#1648
- bazelbuild#1687
- bazelbuild#1688
simuons pushed a commit that referenced this issue Mar 10, 2025
* 7.0.0 README updates and minor code changes

Contains many editorial improvements to and some extra information in
the README, along with a few small improvements to the code. Broken out
from #1710, and part of #1482 and #1652.

Specifically:

- Adds more info on translating `@rules_scala` to
  `@io_bazel_rules_scala` for dependencies via repo mapping.

- Merges information about the previously planned `rules_scala` 8.0.0
  release into the information for 7.0.0, since it seems we may make
  only one major release.

- Improves information about `protobuf` support for versions before v28,
  Scala 2.11, and the upcoming Bzlmod `compatibility_level` setting.

- In `scala_config.bzl`, changes the private `_default_scala_version()`
  to the public `DEFAULT_SCALA_VERSION`.

- Adds `allow_empty = True` to a `glob` expression in
  `//test/semanticdb:lib_with_tempsrc`.

- Removes Scala 2.11 test cases from `test_thirdparty_version.sh` and
  `test_version.sh`.

This change is smaller and more focused than #1710, and should
ultimately make that pull request smaller and/or easier to review.

The motivations for the individual changes are:

- The public `DEFAULT_SCALA_VERSION` constant makes this value
  accessible to the upcoming module extension.

- `glob` requires an explicit `allow_empty = True` parameter in Bazel 8,
  in which `--incompatible_disallow_empty_glob` defaults to `True`.

- ScalaPB 0.9.8, the last version compatible with Scala 2.11, does not
  support `protobuf` v25.6 or later. For this reason, we must remove the
  Scala 2.11 test cases, as documented in the `README.md` updates. See
  also #1712.

We should consider dropping Scala 2.11 support at this point, since
there's no ScalaPB release for it that supports later versions of
`protobuf`. That, and we could remove some of the special case code
added in the following changes, amongst other 2.11 support details:

- #1631
- #1648
- #1687
- #1688

* Tweak `rules_python` and Bazel 6.5.0 `README` info

Provided a better explanation for using `rules_python` 0.38.0 for now.
Improved some of the language in the Bazel 6.5.0 compatibility section.
simuons pushed a commit that referenced this issue Mar 10, 2025
Adds the `examples/overridden_artifacts` repository and the
corresponding `overridden_artifacts_example` test case in
`test/shell/test_examples.sh`. Broken out from #1710, and part of #1482
and #1652.

@dmivankov noticed the design bug in the upcoming Bzlmod API for
`overridden_artifacts` that this change addresses. See:

- #1482 (comment)
- #1482 (comment)

Makes `_validate_scalac_srcjar()` and `dt_patched_compiler_setup()` in
`scala/private/macros/scala_repositories.bzl` more tolerant of
dictionaries containing keys mapped to `None`. The new
`overridden_artifacts_example` test covers this.

Sets `.bazelversion` in the new repo to 7.5.0 to match changes in
both #1710 and #1711.

This change is smaller and more focused than #1710, and should
ultimately make that pull request smaller and/or easier to review.
simuons pushed a commit that referenced this issue Mar 10, 2025
* Bazel 7 and MSVC compatible version updates

Dependency version updates that still work with Bazel 6.5.0 and 7.5.0.
Broken out from #1710, and part of #1482 and #1652.

Updates `.bazelversion` files to 7.5.0 and the CI builds in
`.bazelci/presubmit.yml` to use Bazel 7.5.0.

Bumps the following dependencies, which should not cause build breakages
on Windows + MSVC:

- Go: 1.24.0 => 1.24.1
- Scalafmt: 3.9.1 => 3.9.2
- `abseil-cpp`: 20220623.1 => 20250127.0
- `grpc`: 1.70.0 => 1.71.1
- `protobuf-java`: 4.29.3 => 4.30.0
- `sbt-compiler-interface`: 1.10.7 => 1.10.8
- `sbt-compiler-util`: 1.10.7 => 1.10.10
- `google-common-protos`: 2.52.0 => 2.53.0

Defers the following updates, which are already present in #1710:

- `protobuf`: v21.7 => v28.3 (or v30.0)
- `rules_cc`: 0.0.9 => 0.1.1
- `rules_proto`: 6.0.2 => 7.1.0
- `rules_python`: 0.38.0 => 1.2.0
- `scalapb`: 0.11.17 => 1.0.0-alpha1

These deferred updates all need to happen together, as updating only a
subset of them will break the build.

This change is smaller and more focused than #1710, and should
ultimately make that pull request smaller and/or easier to review.

* Add `abseil-cpp` repo mapping to `protobuf`

This will make sure `protobuf` uses the version of `abseil-cpp` that we
import.

* Set `common --enable_workspace --noenable_bzlmod`

These flags affect `bazel query`, and Bazel 8 defaults to
`--noenable_workspace --enable_bzlmod`. Using `common` ensures `bazel
query` sees the same settings as `bazel build`. This prevents the
`WORKSPACE` run of `test_semanticdb_handles_removed_sourcefiles` from
failing under Bazel 8.

Bazel 6.5.0 doesn't define `--[no]enable_workspace`, so it makes sense
to include it in the change that sets all `.bazelversion` files to
7.5.0.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants