-
Notifications
You must be signed in to change notification settings - Fork 124
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
bump: grpc 1.58.0 #1856
bump: grpc 1.58.0 #1856
Changes from 4 commits
5ad4f63
3421f39
faae6c1
9743d3f
1adb40e
57ccbb6
2f77991
2a540af
ecd67b1
ed712e3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,15 @@ object Dependencies { | |
val akkaHttp = "10.6.0-M2" | ||
val akkaHttpBinary = "10.6" | ||
|
||
val grpc = "1.54.2" // checked synced by VersionSyncCheckPlugin | ||
val grpc = "1.58.0" // checked synced by VersionSyncCheckPlugin | ||
// FIXME should be same as `grpc` but due to https://github.com/scalapb/ScalaPB/issues/1557 | ||
// we are testing with an older version that doesn't expose that problem. | ||
val grpcInterop = "1.54.2" | ||
|
||
// Even referenced explicitly in the sbt-plugin's sbt-tests | ||
// If changing this, remember to update protoc plugin version to align in | ||
// maven-plugin/src/main/maven/plugin.xml and akka.grpc.sbt.AkkaGrpcPlugin | ||
val googleProtobuf = "3.21.12" // checked synced by VersionSyncCheckPlugin | ||
val googleProtobuf = "3.24.0" // checked synced by VersionSyncCheckPlugin | ||
val googleApi = "2.23.0" | ||
|
||
val scalaTest = "3.2.12" | ||
|
@@ -57,7 +61,7 @@ object Dependencies { | |
|
||
// Excluding grpc-alts works around a complex resolution bug | ||
// Details are in https://github.com/akka/akka-grpc/pull/469 | ||
val grpcInteropTesting = ("io.grpc" % "grpc-interop-testing" % Versions.grpc) | ||
val grpcInteropTesting = ("io.grpc" % "grpc-interop-testing" % Versions.grpcInterop) | ||
.exclude("io.grpc", "grpc-alts") | ||
.exclude("io.grpc", "grpc-xds") | ||
|
||
|
@@ -155,6 +159,5 @@ object Dependencies { | |
Test.scalaTest, | ||
Test.scalaTestPlusJunit, | ||
Test.akkaTestkitTyped, | ||
Protobuf.googleCommonProtos, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is somewhat weird. I saw the |
||
GrpcApi.googleApiProtos) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem was the
type EnumType = EnumType
scalapb/ScalaPB#1557We also saw that in #1841 so it's something new that is brought in from proto-google-common-protos
Workaround is to test with old grpc-interop-testing until there is a new release of ScalaPB
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still some tests failing because of this. I was somewhat worried that this would be a showstopper for updating, but I have a tried a snapshot with various gprc projects and it seems to work fine.