-
Notifications
You must be signed in to change notification settings - Fork 211
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
Migrate usages of deprecated JavaInfo
fields
#1005
Conversation
transitive_deps was an alias for transitive_compile_time_jars transitive_runtime_deps was an alias for transitive_runtime_jars The fields were deprecated in 2021, and are dropped in Bazel@HEAD Fixes bazelbuild#1003
JavaInfo
fieldsJavaInfo
fields
Hi @Bencodes, There are many Downstream projects which are using rules_kotlin are failing with Bazel@HEAD. Can you please initiate a release. 1. bazelbuild/examples#303 2.protocolbuffers/protobuf#13830. 3. bazel-contrib/rules_jvm_external#946. 4.google/flogger#361 |
@Bencodes Can you please help creating a new release for rules_kotlin so that we can fix other dependent projects? |
@meteorcloudy a 1.8.1 release has been published with the fixes for the deprecated provider methods included. |
Awesome, thank you! |
Sure, Thank you!! |
…idanceKotlin_upstream * upstream/master: Move the KSP and compiler target definitions into rules_kotlin (bazelbuild#1014) Avoid running java_common#compile against KSP generated outputs (bazelbuild#990) Update kt_java_stub_template to 6.2.1 (bazelbuild#992) Disable strict deps for Android example (bazelbuild#1013) Group the all_tests jobs together in presubmit.yml (bazelbuild#1008) Add rules_java 6.4.0 (bazelbuild#1010) Update Bazel to 6.3.2 (bazelbuild#1007) Update rules_jvm_external to 5.3 (bazelbuild#1009) Migrate usages of deprecated `JavaInfo` fields (bazelbuild#1005) Remove unnecessary Java runtime dependencies (bazelbuild#1000)
transitive_deps
was an alias fortransitive_compile_time_jars
transitive_runtime_deps
was an alias fortransitive_runtime_jars
The fields were deprecated in 2021, and are dropped in Bazel@HEAD
Fixes #1003