Skip to content

v4.10.13

Compare
Choose a tag to compare
@release-please release-please released this 06 Dec 20:27
bba4c0f

4.10.13 (2024-12-06)

Bug Fixes

Dependencies

  • bump com.google.cloud:libraries-bom from 26.49.0 to 26.51.0 (#3396) (cb9f218)

Notable Changes

Libraries-Bom was upgraded from v26.49.0 to v26.51.0. This upgrade bumps the Protobuf-Java Runtime major version (3.x -> 4.x) and Spring-Cloud-GCP now uses Protobuf-Java v4.28.3.

The Google Cloud Java SDK is compatible with both Protobuf-Java 3.25.x and 4.27.4+ runtimes. However, uses may still experience issues related to the Protobuf-Java upgrade. Issues may stem from older dependencies (not managed by libraries-bom) or user defined protos. See these release notes for more information on potential Protobuf-Java issues and how to resolve them.

If you do encounter issues and wish to use Protobuf-Java 3.x, you can revert the Protobuf-Java version:

i.e. In your Maven Pom file:

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.google.protobuf</groupId>
        <artifactId>protobuf-bom</artifactId>
        <version>3.25.5</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
...