firrtl
firrtl copied to clipboard
Update protobuf-java to 3.15.8
Updates com.google.protobuf:protobuf-java from 3.15.6 to 3.15.8. GitHub Release Notes - Version Diff
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below.
Configure Scala Steward for your repository with a .scala-steward.conf
file.
Have a fantastic day writing Scala!
Ignore future updates
Add this to your .scala-steward.conf
file to ignore future updates of this dependency:
updates.ignore = [ { groupId = "com.google.protobuf", artifactId = "protobuf-java" } ]
labels: library-update, semver-patch
sbt is still using protocjar
from os72
, which seems not being actively maintained anymore.
lazy val protobufSettings = Seq(
sourceDirectory in ProtobufConfig := baseDirectory.value / "src" / "main" / "proto",
protobufRunProtoc in ProtobufConfig := (args =>
com.github.os72.protocjar.Protoc.runProtoc("-v351" +: args.toArray)
)
)
How should we resolve this? I think writing sbt script like what I did in mill should be a good idea, but I don't know how to get sbt work.