Releases: bazel-contrib/rules_kotlin
v1.9.3
Release notes for v1.9.3
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_kotlin", version = "1.9.3")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_kotlin",
sha256 = "b3eac09c6385e3a79f3c260314c4bfb82c288d3947869b2406b11bf1ef450cc2",
url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.9.3/rules_kotlin-v1.9.3.tar.gz",
)What's Changed
- [Bcr] Add Bazel versions to BCR presubmit by @Bencodes in #1121
- Support user.bazelrc by @Bencodes in #1119
- Add support for -Xcontext-receivers by @Bencodes in #1117
- Refactor KotlinBuilderJvmJdepsTest to do exact dep assertions by @Bencodes in #1116
- Revert android.bzl changes introduced by #842 by @Bencodes in #1122
- Build rules_kotlin using rules_kotlin by @restingbull in #1081
- Improve jdeps logic to find more explicit and implicit dependencies by @scosenza in #1118
- Add user.bazelrc to .gitignore by @Bencodes in #1123
- [kt_compiler_plugin] Add kt_plugin_cfg for reusable and composable options by @restingbull in #1105
- [bzlmod] Stop relying on initialize.release.bzl by @restingbull in #1127
- Revert "[kt_compiler_plugin] Add kt_plugin_cfg for reusable and composable options" by @Bencodes in #1131
- [testing] Switch to junit5 by @restingbull in #1128
- Update Bazel to 7.1.0 by @Bencodes in #1136
- Use maven lock-file by @scaiper in #1134
- Remove leading . from package inference by @restingbull in #1142
- Pass -Djava.security.manager=allow in kt_rules_test by @Bencodes in #1132
- [testing] Revert to JUnit4. by @restingbull in #1145
- Remove unnecessary use of
ctx.resolve_tools. by @tjgq in #1147 - Reapply "[kt_compiler_plugin] Add kt_plugin_cfg for reusable and comp… …osable op…" (#1131) by @restingbull in #1135
- Support -Xsuppress-version-warnings by @Bencodes in #1146
New Contributors
Full Changelog: v1.9.1...v1.9.3
v1.9.2
Release notes for v1.9.2
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_kotlin", version = "1.9.2")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_kotlin",
sha256 = "48e69a22c7098a2bb36bcab3bec3355a0ea1190a285c64216cf4eba3c08bba89",
url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.9.2/rules_kotlin-v1.9.2.tar.gz",
)What's Changed
- [Bcr] Add Bazel versions to BCR presubmit by @Bencodes in #1121
- Support user.bazelrc by @Bencodes in #1119
- Add support for -Xcontext-receivers by @Bencodes in #1117
- Refactor KotlinBuilderJvmJdepsTest to do exact dep assertions by @Bencodes in #1116
- Revert android.bzl changes introduced by #842 by @Bencodes in #1122
- Build rules_kotlin using rules_kotlin by @restingbull in #1081
- Improve jdeps logic to find more explicit and implicit dependencies by @scosenza in #1118
- Add user.bazelrc to .gitignore by @Bencodes in #1123
Full Changelog: v1.9.1...v1.9.2
v1.9.1
Release notes for v1.9.1
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_kotlin", version = "1.9.1")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_kotlin",
sha256 = "d9898c3250e0442436eeabde4e194c30d6c76a4a97f517b18cefdfd4e345725a",
url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.9.1/rules_kotlin-v1.9.1.tar.gz",
)What's Changed
- Fix release notes generation by @Bencodes in #1057
- Fix missing jdeps by consistently calling
collectTypeReferencesby @scosenza in #1045 - Update Kotlin to 1.9.20 by @Bencodes in #1067
- Update release_prep.sh to have correct WORKSPACE download URL by @Bencodes in #1066
- Add javac_option to pass release flag to javac by @cheister in #1064
- Include more tests in the root test suite by @Bencodes in #1050
- Update release_prep.sh by @Bencodes in #1070
- [options] Add exports and fix readme by @restingbull in #1068
- Add add-opens for JDK 21 java.lang.IllegalAccessError by @cheister in #1069
- Update README.md by @AlexBeggs in #1073
- Use launcher stub template from bazel by @illicitonion in #1082
- Fix 'x_no_source_debug_extension' inverted behavior by @oliviernotteghem in #1078
- Update Bazel version to 6.4.0 by @Bencodes in #1085
- Update rules_java to 7.2.0 by @Bencodes in #1084
- Add CI jobs for 5.x and 6.x releases by @Bencodes in #1087
- Support Kotlin 2.0 target and language levels by @Bencodes in #1086
- Add missing KotlinJvmTaskExecutorTest to the test suite by @raghulvelusamy in #1089
- Build rules_kotlin using Bazel 7.0.0 by @Bencodes in #1090
- Update name of experimental_prune_transitive_deps flag. by @plobsing in #1101
- Allow setting jvm_target up to Java 21 by @josephglanville in #1099
- Add manifest files generated from ksp into final jar by @raghulvelusamy in #1094
- Add bzl_library targets to released artifacts by @stevebarrau in #1093
- Update default Kotlin language levels to 1.9 by @Bencodes in #1111
- Update Bazel to 7.0.2 by @Bencodes in #1108
- Update Kotlin to 1.9.22 by @Bencodes in #1109
- Fix README installation's string formatting code by @marcoss in #1114
New Contributors
- @scosenza made their first contribution in #1045
- @cheister made their first contribution in #1064
- @AlexBeggs made their first contribution in #1073
- @raghulvelusamy made their first contribution in #1089
- @plobsing made their first contribution in #1101
- @josephglanville made their first contribution in #1099
- @stevebarrau made their first contribution in #1093
- @marcoss made their first contribution in #1114
Full Changelog: v1.9.0...v1.9.1
v1.9.0
This release of rules_kotlin comes with some breaking changes:
- The
build_bazel_rules_androidrepository namespace has been renamed torules_android. Please update your WORKSPACE files to avoid downloading these rules multiple times! #1047 - In order to support Bzlmod, the Kotlin and KSP targets have been moved out of the
io_bazel_rules_kotlinrepository and intorules_kotlin. If you are referencing any targets under@com_github_jetbrains_kotlin//...in your build files you will need to replace them with@rules_kotlin//kotlin/compiler:.... #1014
Using Bzlmod with Bazel 6+
Note: Bzlmod support inside of rules_kotlin is still very much considered experimental. Please report any issues that you run into!
- Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_kotlin", version = "1.9.0")Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_kotlin",
sha256 = "5766f1e599acf551aa56f49dab9ab9108269b03c557496c54acaf41f98e2b8d6",
url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.9.0/rules_kotlin-v1.9.0.tar.gz",
)What's Changed
- Move the KSP and compiler target definitions into rules_kotlin by @Bencodes in #1014
- Add support for Bzlmod by @Bencodes in #1006
- Enables compiling against direct dependencies only - kotlin by @nkoroste in #842
- Add support for -Xno-source-debug-extension by @Bencodes in #1025
- Include Bzlmod files into release binary by @Bencodes in #1026
- Enable Bzlmod for examples/android by @Bencodes in #1031
- Update and align rules_python versions on 0.23.1 by @Bencodes in #1029
- Update buildifier to 6.3.3 by @Bencodes in #1027
- Update MODULE.bazel rules_jvm_external to 5.3 by @Bencodes in #1028
- Enable Bzlmod for examples/multiplex by @Bencodes in #1030
- Load JavaInfo and java_common from rules_java by @comius in #1037
- Fix the nouse_workers_with_dexbuilder error by @sgowroji in #1040
- Rename build_bazel_rules_android to rules_android by @Bencodes in #1047
- Remove copy/pasted BUILD files that call kt_configure_toolchains by @Bencodes in #1053
- Add BUILD.release.bazel file for src/main/starlark/core/repositories/kotlin/ by @Bencodes in #1052
- Update bazel_skylib 1.3.0 -> 1.4.1 by @Bencodes in #1049
- Fix Android support when running the entire test suite by @Bencodes in #1051
- [bazel-bsp-aspect] extract more generated jars by @xuansontrinh in #1046
- Add Android Platforms build flags. by @katre in #1054
- Add support for Kotlin 1.9 by @agluszak in #996
- Add BCR configurations for publishing releases to the central registry by @Bencodes in #1038
New Contributors
- @sgowroji made their first contribution in #1040
- @xuansontrinh made their first contribution in #1046
- @katre made their first contribution in #1054
- @agluszak made their first contribution in #996
Full Changelog: v1.8.1...v1.9.0
Kotlin rules for Bazel - v1.8.1
Note: These rules are maintained externally by volunteers (with Google's approval)
SHA256: a630cda9fdb4f56cf2dc20a4bf873765c41cf00e9379e8d59cd07b24730f4fde
What's Changed
- Update README with KSP support by @Bencodes in #983
- fix readme about kotlinc_opts and javac_opts by @asinbow in #984
- update stardoc to 0.5.6 by @restingbull in #986
- Rename dev_io_bazel_rules_kotlin -> io_bazel_rules_kotlin by @Bencodes in #973
- Fail CI if the docs are outdated by @Bencodes in #961
- Bump quick guide to use v1.8 by @hanneskaeufler in #987
- Expose ksp_version by @zalewskise in #989
- Remove unnecessary Java runtime dependencies by @fmeum in #1000
- Migrate usages of deprecated
JavaInfofields by @hvadehra in #1005 - Update rules_jvm_external to 5.3 by @Bencodes in #1009
- Update Bazel to 6.3.2 by @Bencodes in #1007
- Add rules_java 6.4.0 by @Bencodes in #1010
- Group the all_tests jobs together in presubmit.yml by @Bencodes in #1008
- Disable strict deps for Android example by @Bencodes in #1013
- Update kt_java_stub_template to 6.2.1 by @Bencodes in #992
- Avoid running java_common#compile against KSP generated outputs by @Bencodes in #990
New Contributors
- @asinbow made their first contribution in #984
- @zalewskise made their first contribution in #989
- @hvadehra made their first contribution in #1005
Full Changelog: v1.8...v1.8.1
Kotlin rules for Bazel - v1.8
Note: These rules are maintained externally by volunteers (with Google's approval)
SHA256: 01293740a16e474669aba5b5a1fe3d368de5832442f164e4fbfc566815a8bc3a
What's Changed
- Convert strings to label with the correct repository by @comius in #896
- Add missing rules_proto calls for deps, etc. by @restingbull in #904
- Revert "Enable new jarfs for multiplex workers." by @Bencodes in #906
- Updated debug instructions by @pettermahlen in #882
- What binaries do you speak of? by @restingbull in #905
- Use rules_kotlin 1.7.1 in readme install instructions by @hanneskaeufler in #909
- Update Dagger from 2.43.2 -> 2.44.2 by @Bencodes in #911
- Update Anvil 2.4.1 -> 2.4.3 by @Bencodes in #912
- Use placeholders in progress messages by @fmeum in #895
- Update README with Bazel compatibility messaging by @Bencodes in #914
- Fix reference to java_infos in compile.bzl by @avarun42 in #915
- Support Kotlin 1.8 by @Bencodes in #910
- Update AutoValue 1.6.5 -> 1.10.1 by @Bencodes in #918
- Remove unused commonArgs function from CompilationTask.kt by @Bencodes in #921
- Add missing 1.8 language_version to toolchains.bzl by @Bencodes in #923
- Update Kotlin compiler to 1.8.10 by @Bencodes in #932
- Add -Xdebug option added in 1.8 to make debugging better by @chancila in #936
- WIP Clean up user defined flag settings by @chancila in #937
- Add
src/{main,test}/javaas conventional resource prefix by @fmeum in #927 - Get rid of duplicates in the --processors and --processorpath arguments. by @tjgq in #940
- Remove unused MAVEN_PROTO versions by @Bencodes in #949
- Update rules_kotlin to Kotlin 1.8.20 by @Bencodes in #943
- Remove unused bazel_deps repository by @Bencodes in #948
- Update KtLint to 0.48.2 by @Bencodes in #947
- Update rules_proto to 5.3.0-21.7 by @Bencodes in #946
- Update buildifier to 6.1.0 by @Bencodes in #945
- Update Bazel to 6.1.1 by @Bencodes in #944
- Remove kt_jvm_plugin_aspect now that all versions of Bazel support JavaPluginInfo by @Bencodes in #953
- Support passing data attribute to android_local_test by @Bencodes in #954
- Align the anvil workspace versions by @Bencodes in #952
- Update the Jetpack Compose compiler to 1.8.10 by @Bencodes in #951
- Update rules_python version by @comius in #958
- Switch to bazel runfiles by @restingbull in #956
- Add support for KSP annotation processing via KspCompile by @Bencodes in #955
- Update the Kotlin docs by @Bencodes in #959
- Ensure that KSP plugins are included in the action inputs by @Bencodes in #964
- Fix order of repository loads by @comius in #965
- Update android.bzl to call into the repo rules by @Bencodes in #966
- Check all dependency jars before marking unused by @mauriciogg in #967
- Move to options capabilities to kotlinc repository by @restingbull in #963
- Update to Kotlin 1.8.21 by @Bencodes in #969
- Support -Xenable-incremental-compilation by @Bencodes in #971
- Add support for -Xuse-fir-lt by @Bencodes in #972
- Update KtLint to 0.49.1 by @Bencodes in #970
- Use the mnemonic for worker keys by @Bencodes in #976
- Restore neverlink on compiler. by @restingbull in #977
- Generate koltinc options by @restingbull in #962
- Normalize label by @mauriciogg in #968
- Avoid creating duplicate android_sdk_repositories by @Bencodes in #978
- Remove print warning from kt_download_local_dev_dependencies by @Bencodes in #974
- Remove opts.release.bzl which is no longer being used by @Bencodes in #982
- Update the README.md with the latest dev override config by @Bencodes in #981
- Regenerate the docs by @Bencodes in #980
New Contributors
- @avarun42 made their first contribution in #915
- @chancila made their first contribution in #936
- @tjgq made their first contribution in #940
Full Changelog: v1.7.1...v1.8
Kotlin rules for Bazel - v1.8-RC-12
Note: These rules are maintained externally by volunteers (with Google's approval)
SHA256: 8e5c8ab087e0fa3fbb58e1f6b99d8fe40f75bac44994c3d208eba723284465d6
What's Changed
- Update Kotlin compiler to 1.8.10 by @Bencodes in #932
- Add -Xdebug option added in 1.8 to make debugging better by @chancila in #936
- WIP Clean up user defined flag settings by @chancila in #937
- Add
src/{main,test}/javaas conventional resource prefix by @fmeum in #927 - Get rid of duplicates in the --processors and --processorpath arguments. by @tjgq in #940
- Remove unused MAVEN_PROTO versions by @Bencodes in #949
- Update rules_kotlin to Kotlin 1.8.20 by @Bencodes in #943
- Remove unused bazel_deps repository by @Bencodes in #948
- Update KtLint to 0.48.2 by @Bencodes in #947
- Update rules_proto to 5.3.0-21.7 by @Bencodes in #946
- Update buildifier to 6.1.0 by @Bencodes in #945
- Update Bazel to 6.1.1 by @Bencodes in #944
- Remove kt_jvm_plugin_aspect now that all versions of Bazel support JavaPluginInfo by @Bencodes in #953
- Support passing data attribute to android_local_test by @Bencodes in #954
- Align the anvil workspace versions by @Bencodes in #952
- Update the Jetpack Compose compiler to 1.8.10 by @Bencodes in #951
- Update rules_python version by @comius in #958
- Switch to bazel runfiles by @restingbull in #956
- Add support for KSP annotation processing via KspCompile by @Bencodes in #955
- Update the Kotlin docs by @Bencodes in #959
- Ensure that KSP plugins are included in the action inputs by @Bencodes in #964
- Fix order of repository loads by @comius in #965
New Contributors
Full Changelog: v1.8-RC-1...v1.8-RC-12
Kotlin rules for Bazel - v1.8-RC-1
Note: These rules are maintained externally by volunteers (with Google's approval)
SHA256: 1779628569eb3b0fe97a3fb5c3ed8090e6503e425600b401c7b1afb6b23a3098
What's Changed
- Convert strings to label with the correct repository by @comius in #896
- Add missing rules_proto calls for deps, etc. by @restingbull in #904
- Revert "Enable new jarfs for multiplex workers." by @Bencodes in #906
- Updated debug instructions by @pettermahlen in #882
- What binaries do you speak of? by @restingbull in #905
- Use rules_kotlin 1.7.1 in readme install instructions by @hanneskaeufler in #909
- Update Dagger from 2.43.2 -> 2.44.2 by @Bencodes in #911
- Update Anvil 2.4.1 -> 2.4.3 by @Bencodes in #912
- Use placeholders in progress messages by @fmeum in #895
- Update README with Bazel compatibility messaging by @Bencodes in #914
- Fix reference to java_infos in compile.bzl by @avarun42 in #915
- Support Kotlin 1.8 by @Bencodes in #910
- Update AutoValue 1.6.5 -> 1.10.1 by @Bencodes in #918
- Remove unused commonArgs function from CompilationTask.kt by @Bencodes in #921
- Add missing 1.8 language_version to toolchains.bzl by @Bencodes in #923
New Contributors
Full Changelog: v1.7.0...v1.8-RC-1
Kotlin rules for Bazel - v1.7.1
Note: These rules are maintained externally by volunteers (with Google's approval)
SHA256: fd92a98bd8a8f0e1cdcb490b93f5acef1f1727ed992571232d33de42395ca9b3
Built from the https://github.com/bazelbuild/rules_kotlin/tree/release-v1.7.0 release branch with a few small fixes.
What's Changed
- Add missing rules_proto calls for deps, etc. #904
- Revert "Enable new jarfs for multiplex workers. #906
Full Changelog: v1.7.0...v1.7.1
Kotlin rules for Bazel - v1.7.0
Note: These rules are maintained externally by volunteers (with Google's approval)
SHA256: 15afe2d727f0dba572e0ce58f1dac20aec1441422ca65f7c3f7671b47fd483bf
What's Changed
- Update Bazel from 5.1.1 -> 5.2.0 by @Bencodes in #766
- Remove deprecated friends attribute in favor of associates by @Bencodes in #768
- Support -Xreport-perf by @rockwotj in #775
- Add support for -Xbackend-threads by @rockwotj in #773
- Update -Xuse-fir to -Xuse-k2 by @rockwotj in #776
- Add no-optimize flag by @rockwotj in #774
- Update doc for v1.6.0 by @utzcoz in #779
- Bump bazel to 5.0.0 by @utzcoz in #780
- Bump Robolectric to 4.8.1 for android example by @utzcoz in #781
- Allow resources to be passed to kt_android_library by @sugarmanz in #786
- Fix typo in error by @hanneskaeufler in #783
- Support using --jvmopt with kt_jvm_test by @mai93 in #782
- Remove dead code branch by @hanneskaeufler in #784
ktlint_testwindows support by @hanneskaeufler in #785- Fix repository mapping to be compliant with Bazel 6 by @restingbull in #777
- Support multiple
kt_android_librarytargets with same package name. by @arunkumar9t2 in #790 - Bump ktlint to 0.46.1, but make the version configurable by @hanneskaeufler in #789
- Remove unused build_java attribute by @Bencodes in #788
- Update to Kotlin 1.7.0 by @Bencodes in #769
- Remove @jin from CODEOWNERS by @jin in #792
- Check if
default_jvm_optsexists inctx.fragments.javaby @mai93 in #793 - Fix some compiler warnings in JdepsGenExtension by @Bencodes in #795
- Add release badges from
shields.ioby @arunkumar9t2 in #799 - Add kt_kotlinc_options for additional bytecode generation options by @brettwooldridge in #802
- Remove -Xuse-experimental from legacy opts by @Bencodes in #767
- Update the workspace to use the prebuilt image over rbe autoconfig. by @restingbull in #744
- pass exec_properties to underlying android_local_test macro by @Augustyniak in #810
- Add instructions to attach debugger to debug java/kt actions by @oliviernotteghem in #814
- Mark receiver parameter type as referenced. by @aeremin in #807
- Fix jdeps tracking case for class extension by @oliviernotteghem in #812
- Fix RBE builds on master by @Bencodes in #818
- Update Dagger from 2.41 -> 2.43.2 by @Bencodes in #817
- Update compose example to Kotlin 1.7.10 by @Bencodes in #820
- Update rules_kotlin to Kotlin 1.7.10 by @Bencodes in #821
- Cleanup bunch of small issues in JdepsGetExtension.kt by @aeremin in #819
- Update kotlin.bzl by @SebastianHelzer in #816
- [KtLint] Support --android and --experimental by @Bencodes in #824
- update rules_nodejs by @aranguyen in #830
- Bump bazel to 5.3.0 by @hanneskaeufler in #833
- [KtLint] Run ktlint format against all Kotlin sources by @Bencodes in #828
- Fix blankline printed for each action when executing on RBE by @bduffany in #831
- Update KtLint from 0.46.1 -> 0.47.1 by @Bencodes in #825
- [KtLint] Add CI job for enforcing Kotlin formatting by @Bencodes in #826
- [KtLint] Append editorconfig to the ktlint_fix runfiles by @Bencodes in #827
- [KtLint] Add ktlint.check and ktlint.fix make commands by @Bencodes in #834
- Add an env attribute to kt_jvm_test by @meastham in #837
- update rules_nodejs & bazel_skylib by @aranguyen in #835
- Move versioned repositories to top level
srcdir by @restingbull in #838 - Support testing both k2 and old compiler for Jdeps by @rockwotj in #845
- Update rules_kotlin to Kotlin 1.7.20 by @rockwotj in #844
- Add -XX:-MaxFDLimit to builder binaries by @Bencodes in #848
- [CI] Update buildifier from 5.0.0 to 5.1.0 by @Bencodes in #847
- Improve missing strict deps warnings by @lukaciko in #851
- [CI] Update Bazel from 5.3.0 to 5.3.1 by @Bencodes in #846
- Bazel 6.0: Fix config_setting visibility failure on bazel CI by @gregestren in #853
- Add option to enable/disable jdeps generation by @nkoroste in #852
- Remove unused dependency in example by @hanneskaeufler in #862
- Fix AbstractMethodError in JdepsGenCommandLineProcessor by @Bencodes in #859
- Do not auto refresh archive_repository on windows by @restingbull in #861
- Pass nocompress_extensions to base android_local_test rule by @pswaminathan in #873
- Update Kotlin to 1.7.21 by @Bencodes in #872
- Fix misattributed compiler argument. by @restingbull in #876
- Support setting kotlin_jvm_target at the target level by @Bencodes in #865
- Bug: No compilation occurs when module only contains resources + no sources by @EdbertChan in #875
- Update Bazel from 5.3.1 -> 5.3.2 by @Bencodes in #867
- Pass runfiles paths more robustly by @comius in #860
- Update Kotlin from 1.7.21 -> 1.7.22 by @Bencodes in #886
- Update Ktlint 0.47.1 -> 0.48.0 by @Bencodes in #887
- Update Bazel to 6.0.0-pre.20221020.1 by @Bencodes in #889
- Bump express from 4.16.3 to 4.17.3 in /examples/node by @dependabot in #879
- Remove Jetpack Compose hacks now that we are on Bazel 6 by @Bencodes in #890
- Update rules_jvm_external from 4.2 -> 4.4.2 by @Bencodes in #866
- Add sample app to tests how many targets were rebuilt by @nkoroste in #840
- More Bazel 6.0 cleanup by @Bencodes in #891
- Enable new jarfs for multiplex workers. by @restingbull in #888
- Upgrade dependencies by @comius in #901
- Bump the Bazel version to Bazel 6 official by @Bencodes in #898
New Contributors
- @hanneskaeufler made their first contribution in #783
- @brettwooldridge made their first contribution in #802
- @Augustyniak made their first contribution in #810
- @aeremin made their first contribution in #807
- @SebastianHelzer made their first contribution in #816
- @aranguyen made their first contribution in #830
- @bduffany made their first contribution in #831
- @meastham made their first contribution in #837
- @lukaciko made their first contribution in #851
- @gregestren made their first contribution in #853
- @pswam...