Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spannerlib/wrappers/spannerlib-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-bom</artifactId>
<version>1.79.0</version>
<version>1.80.0</version>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This gRPC version update introduces a potential risk. The codebase in GrpcSpannerLibraryImpl.java on line 242 uses io.grpc.stub.BlockingClientCall, which is an internal gRPC API and marked as experimental. Internal APIs are not guaranteed to be stable and can change without notice between versions, which could cause this update to break functionality at runtime. It is highly recommended to refactor the code to avoid using internal gRPC APIs and rely only on the public, stable API surface.

<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Loading