Skip to content
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

chore(deps): update googleapis/java-cloud-bom action to v26.50.0 #11286

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Oct 31, 2024

This PR contains the following updates:

Package Type Update Change
googleapis/java-cloud-bom action minor v26.49.0 -> v26.50.0

Release Notes

googleapis/java-cloud-bom (googleapis/java-cloud-bom)

v26.50.0

Compare Source

GCP Libraries BOM 26.50.0

Here are the differences from the previous version (26.49.0)

The group ID of the following artifacts is com.google.cloud.

Notable Changes

Protobuf-Java v4.28.3

This version of Libraries-Bom is upgrading the Protobuf Java (PBJ) Runtime version to v4.28.3. The Java SDK aims to use the latest Protobuf version to utilize the latest stable features and to mitigate vulnerabilities (CVEs).

Potential PBJ Runtime 4.28.3 Upgrade Issues

There are a few potential compatibility issues that may arise for users following the PBJ Runtime upgrade to v4.28.3. Details about these potential issues are outlined below.

Note: The following issues may not be exhaustive and users may encounter additional issues.

Source Compatibility Issues

PBJ 4.26.x removed some methods from runtime. Users may see source compilation issues when compiling their application. If you do not use any of the following removed methods, you should not see these issues.

Removed Method Suggested Alternative
TextFormat.print(...) TextFormat.printer().print(...)
TextFormat.printUnicode(...) TextFormat.printer().escapingNonAscii(false).print(...)
TextFormat.shortDebugString(...) TextFormat.printer().shortDebugString(...)
TextFormat.printToString(...) TextFormat.printer().printToString(...)
TextFormat.printToUnicodeString(...) TextFormat.printer().escapingNonAscii(false).printToString(...)
TextFormat.printField(...) TextFormat.printer().printField(...)
TextFormat.printFieldToString(...) TextFormat.printer().printFieldToString(...)
TextFormat.printUnicodeFieldValue(...) TextFormat.printer().escapingNonAscii(false).printFieldValue(...)
TextFormat.printFieldValue(...) TextFormat.printer().printFieldValue(...)
Binary Compatibility Issues

PBJ 4.26.x removed a few overloaded methods from runtime. Users may see binary compilation issues during runtime. If you do not use any of the following Protobuf-Java’s removed methods, you should not see the following issues.

Note: The binary compatibility errors will show as NoMethodFound: {Class}.{Method}

Removed Method Suggested Fix
DescriptorProtos$FieldOptions.getExtension(GeneratedExtension)

Note: Method parameter is of type GeneratedExtension

Cast the parameter to ExtensionLite
DescriptorProtos$FieldOptions.getExtension((ExtensionLite<?,?>) ...)

See this PR for an example of a fix

DescriptorProtos$FieldOptions.hasExtension(GeneratedExtension)

Note: Method parameter is of type GeneratedExtension

Cast the parameter to ExtensionLite
DescriptorProtos$FieldOptions.hasExtension((ExtensionLite<?,?>) ...)

See this PR for an example of a fix

DescriptorProtos$FieldOptions$Builder.setExtension(GeneratedExtension, …)

Note: Method parameter is of type GeneratedExtension

Use setOptions in FieldOptions.Builder. Use setField() to replace setExtension()
Message.Builder messageBuilder = FieldOptions.newBuilder();
messageBuilder.setField(...);

DescriptorProtos$FieldOptions$Builder.setOptions((FieldOptions) messageBuilder.build());

See this PR for an example of a fix

Protoc Gen Code Compatibility Issues (Protoc 21.x - 25.x)

This section is for users who have additional protos defined alongside Java client libraries. If users do not define any additional protos, they should not see the following compatibility issue.

Protoc 21.6 and Earlier

Users that have Protoc 21.6 and earlier generated Java files will experience a compilation error from the generated makeExtensionsImmutable method. The Java compiler will complain that the method cannot be found:

[ERROR] /home/runner/work/google-cloud-java/google-cloud-java/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResult.java:[137,7] cannot find symbol
[ERROR]   symbol:   method makeExtensionsImmutable()

Note: This method was removed in Protobuf-Java v3.21.7+ as part of a disclosed vulnerability.

Resolution: Users will need to regenerate their protos with Protoc 25.x or 27.4+.

Protoc 21.7 - 24.x

Starting with Protoc 21.7, Protobuf no longer generates code that calls makeExtensionsImmutable. However, users may experience additional compatibility issues and may need to regenerate their protos with Protoc 25.x or 27.4+.

Protoc 25.x

Protos generated with Protoc 25.x should be fully compatible with PBJ Runtime 4.28.3.

ErrorProne Errors

Users with ErrorProne enabled may see an ImpossibleNullComparison error. The Java SDK contained a few legacy null checks on fields from a Protobuf message.

Prior to the upgrade, the SDK contained code similar to:

public Iterable<EchoResponse> extractResources(PagedExpandResponse payload) {
	return payload.getResponsesList() == null
		? ImmutableList.<EchoResponse>of()
		: payload.getResponsesList();
}

The code has been updated to:

public Iterable<EchoResponse> extractResources(PagedExpandResponse payload) {
	return payload.getResponsesList();
}

Resolution: Remove the unnecessary null checks on Protobuf fields.

Deprecation Warnings

Users may see new deprecation warnings from Protobuf-Java when compiling their application. These new warnings may occur for users that use the following classes and methods:

  • GeneratedMessageV3
  • JsonFormat.includingDefaultValueFields()
GeneratedMessageV3

Users who interface directly with the GeneratedMessageV3 class in application code will see this deprecation warning: com.google.protobuf.GeneratedMessageV3 in com.google.protobuf has been deprecated.

Below is an example of code (CustomClass is a Protoc generated class from Java-Speech) that will trigger a deprecation warning:

GeneratedMessageV3 messageV3 = CustomClass.newBuilder().build();

Explicitly casting any proto generated class to GeneratedMessageV3 will cause the Java compiler flagging a deprecation warning.

Resolution: Avoid using GeneratedMessageV3 directly. Use Message or AbstractMessage if a generic Message type is required.

includingDefaultValueFields()

Users who have similar code in their application:

JsonFormat.printer().includingDefaultValueFields();

Will see this warning: includingDefaultValueFields() in com.google.protobuf.util.JsonFormat.Printer has been deprecated.

Resolution: Use JsonFormat.printer().alwaysPrintFieldsWithNoPresence() instead.

How can I upgrade to PBJ Runtime 4.28.3?

This Libraries-Bom version has been updated to use PBJ Runtime v4.28.3. As part of future releases, Libraries-Bom will continue to upgrade to the latest Protobuf Runtime version in the 4.x branch.

Users that do not use the Libraries-Bom will need to manually upgrade to PBJ Runtime 4.28.3. Older versions of client libraries may be generated with older versions of Protoc. To ensure full compatibility with the latest PBJ Runtime version, use the Libraries-Bom v26.28.0+ to manage the client library versions.

FAQ
Why not upgrade with PBJ Runtime v4.26.x?

In early 2024, Protobuf released a new major version (v4.26.0) for Protobuf-Java (PBJ) that was not backwards compatible with v3.25.x. Upgrading to PBJ v4.26.0 required regenerating all protos and releasing a new major version. Additionally, users with their own protos would be forced to either downgrade the runtime version to 3.25.x or regenerate their protos with Protoc 26.x.

Why not upgrade with PBJ Runtime v4.27.4 - v4.28.2?

As of the date of testing, PBJ Runtime 4.28.3 was the latest version of Protobuf released. The Java SDK planned to be updated with the latest version compatible with Protoc 25.x.

Why is only the PBJ Runtime version being updated in this release?

Protoc 26.x’s Protobuf generated messages extend from GeneratedMessage instead of GeneratedMessageV3. Upgrading to use Protoc 26.0 would require regeneration of all proto files and would not be backwards compatible for users on PBJ 3.x.

Upgrading to use Protoc 27.4+ would not be backwards compatible for users on PBJ 3.x. The Java SDK aims to be compatible with both PBJ 3.x and 4.x.

Can I keep my protos generated with Protoc 25.x and still use the latest Google Cloud Java Bom?

Protobuf runtime 4.28.3+ is fully compatible with messages generated with Protoc 25.x. Users will not be forced to regenerate their protos with the latest Protoc if messages were generated with Protoc 25.x+.

Can I regenerate my protos with Protoc 27.4+ and still use the latest Google Cloud Java Bom?

The Java SDK is generated with Protoc 25.x. Users will be able to use protos from Protoc 25.x and 27.4+ with PBJ Runtime 4.27.4+.

Can I use an older version of Libraries-Bom with PBJ Runtime 4.x?

If you use Libraries-Bom v26.28.0+, you should not see any compatibility issues from Java client libraries. Starting with Libraries-Bom v26.28.0, protos in the Java SDK are generated with Protoc 25.x.

If you use Libraries-Bom v26.27.0 or earlier, you may see compatibility issues. If possible, try to upgrade to Libraries-Bom v26.28.0+.

How can I use PBJ Runtime 3.25.x?

The Java SDK released a modified version of the Libraries-Bom under a different Maven Artifact: com.google.cloud:libraries-bom-protobuf3. This BOM contains PBJ Runtime 3.25.x and is updated to use the latest Protobuf Runtime version in the 3.25.x branch.

The only difference between libraries-bom and libraries-bom-protobuf3 is the PBJ Runtime version. Both BOMs update together, contain the same libraries and versions, and share the same BOM versions (v26.x).

How can I check for additional Binary Compatibility Issues in application?

To test binary code compatibility, your application should be compiled with Protobuf-Java v3.x. Update the PBJ Runtime dependency to v4.x and run your unit and integration tests. Coverage of your application’s binary compatibility depends on your test coverage and the code paths hit.

If you do not use any Protobuf-Java runtime methods directly inside your application, then you should not see any binary compatibility issues stemming from your application code. However, it is possible to see binary compatibility issues from your dependencies if they are built with PBJ 3.x.

Java SDK and the dependencies brought in by Libraires-Bom should have complete binary compatibility.

Libraries

google-cloud-bigquerystorage 3.10.2 (prev: 3.9.3)

  • Add experimental ArrowData type and arrow_data field within AppendRowsRequest (18faebd)

  • Add stream name to every request when connection is created during multiplexing (#​2699) (c53a77c)

  • Update BigQuerySchemaUtil to use non-deprecated hasExtension (#​2732) (b97b234)

  • BQTableSchemaToProtoDescriptor setting of FieldOption. (#​2743) (fb57909)

google-cloud-bigtable 2.46.0 (prev: 2.45.1)

google-cloud-firestore 3.28.0 (prev: 3.27.2)

google-cloud-pubsub 1.134.1 (prev: 1.133.1)

  • Add IngestionFailureEvent to the external proto (6c67798)
  • Track batch size using serialized size of PublishRequest (#​2113) (be78e64)

google-cloud-spanner 6.80.1 (prev: 6.79.0)

google-cloud-spanner-jdbc 2.24.1 (prev: 2.23.0)

  • Auto_batch_dml methods + combination with JDBC batching (#​1795) (98f01bb)

google-cloud-storage 2.44.1 (prev: 2.43.2)

Other libraries

  • [aiplatform] add text field for Grounding metadata support chunk output (492696e)

  • [aiplatform] add audio_timestamp to GenerationConfig (492696e)

  • [aiplatform] add new PscInterfaceConfig field to custom_job.proto (492696e)

  • [aiplatform] Introduce DefaultRuntime to PipelineJob (492696e)

  • [alloydb] add new PSC instance configuration setting and output the PSC DNS name (492696e)

  • [analytics-data] add SamplingLevel type to Data API v1alpha (492696e)

  • [artifact-registry] Add Artifact Registry attachment API (492696e)

  • [asset] add more longrunnning operation support (492696e)

  • [cloudbuild] Add PrivateServiceConnect option to WorkerPool (492696e)

  • [container] add an effective_cgroup_mode field in node config (492696e)

  • [dataproc] Add ProvisioningModelMix to support mixing of spot and standard instances for secondary workers (492696e)

  • [discoveryengine] Add GroundedGenerationService API (492696e)

  • [discoveryengine] add lite search API to allow public website search with API key (492696e)

  • [dlp] discovery of BigQuery snapshots (492696e)

  • [document-ai] Updated the exponential backoff settings for the Document AI ProcessDocument and BatchProcessDocuments methods (492696e)

  • [document-ai] Updated the exponential backoff settings for the Document AI ProcessDocument and BatchProcessDocuments methods (492696e)

  • [gdchardwaremanagement] add a DeleteSite method (492696e)

  • [network-management] add messages and fields related to Redis Instances (492696e)

  • [parallelstore] Generate libraries for Parallelstore V1 API (492696e)

  • [parallelstore] new module for parallelstore v1 (#​11272) (ea1ab21)

  • [securesourcemanager] Add branch rule APIs (492696e)

  • [securesourcemanager] Add field instance to message .google.cloud.securesourcemanager.v1.ListRepositoriesRequest (492696e)

  • [shopping-css] A new field headline_offer_installment is added to message .google.shopping.css.v1.Attributes (492696e)

  • [texttospeech] Add brand voice lite (492696e)

  • [texttospeech] add brand voice lite, which lets you clone a voice with just 10 seconds of audio (492696e)

  • [texttospeech] Add low latency journey option to proto (492696e)

  • [texttospeech] Add low latency journey option to proto (492696e)

  • [texttospeech] add multi-speaker markup, which allows generating dialogue between multiple speakers (492696e)

  • [discoveryengine] fix the location type annotation (492696e)

Version Upgrades

Minor Version Upgrades

  • google-cloud-apigee-registry:0.53.0 (prev:0.52.0; Release Notes: v0.53.0)
  • google-cloud-video-intelligence:2.52.0 (prev:2.51.0; Release Notes: v2.52.0)
  • google-cloud-assured-workloads:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-speech:4.48.0 (prev:4.47.0; Release Notes: v4.47.1, v4.48.0)
  • google-cloud-eventarc-publishing:0.53.0 (prev:0.52.0; Release Notes: v0.53.0)
  • google-cloud-workstations:0.41.0 (prev:0.40.0; Release Notes: v0.41.0)
  • google-cloud-alloydb-connectors:0.31.0 (prev:0.30.0; Release Notes: v0.31.0)
  • google-cloud-network-security:0.56.0 (prev:0.55.0; Release Notes: v0.56.0)
  • google-cloud-bare-metal-solution:0.53.0 (prev:0.52.0; Release Notes: v0.53.0)
  • google-cloud-chat:0.17.0 (prev:0.16.0; Release Notes: v0.17.0)
  • google-cloud-domains:1.50.0 (prev:1.49.0; Release Notes: v1.50.0)
  • google-cloud-advisorynotifications:0.42.0 (prev:0.41.0; Release Notes: v0.42.0)
  • google-cloud-recommendations-ai:0.60.0 (prev:0.59.0; Release Notes: v0.60.0)
  • google-cloud-gke-multi-cloud:0.52.0 (prev:0.51.0; Release Notes: v0.52.0)
  • google-cloud-accessapproval:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-service-management:3.51.0 (prev:3.50.0; Release Notes: v3.51.0)
  • google-cloud-contact-center-insights:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-shell:2.52.0 (prev:2.51.0; Release Notes: v2.52.0)
  • google-cloud-policy-troubleshooter:1.52.0 (prev:1.51.0; Release Notes: v1.52.0)
  • google-cloud-translate:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-recommender:2.55.0 (prev:2.54.0; Release Notes: v2.55.0)
  • google-cloud-privilegedaccessmanager:0.7.0 (prev:0.6.0; Release Notes: v0.7.0)
  • google-cloud-compute:1.63.0 (prev:1.62.0; Release Notes: v1.63.0)
  • google-cloud-bigtable-emulator-core:0.183.0 (prev:0.182.1; Release Notes: v0.183.0)
  • google-cloud-datacatalog:1.59.0 (prev:1.58.0; Release Notes: v1.59.0)
  • google-cloud-automl:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-binary-authorization:1.52.0 (prev:1.51.0; Release Notes: v1.52.0)
  • google-cloud-vpcaccess:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-language:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-publicca:0.50.0 (prev:0.49.0; Release Notes: v0.50.0)
  • google-cloud-biglake:0.41.0 (prev:0.40.0; Release Notes: v0.41.0)
  • google-cloud-api-gateway:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-run:0.53.0 (prev:0.52.0; Release Notes: v0.53.0)
  • google-cloud-service-usage:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-dataflow:0.57.0 (prev:0.56.0; Release Notes: v0.57.0)
  • google-cloud-connectgateway:0.5.0 (prev:0.4.0; Release Notes: v0.5.0)
  • google-cloud-securesourcemanager:0.23.0 (prev:0.22.0; Release Notes: v0.23.0)
  • google-cloud-vertexai:1.13.0 (prev:1.12.0; Release Notes: v1.13.0)
  • google-cloud-contentwarehouse:0.49.0 (prev:0.48.0; Release Notes: v0.49.0)
  • google-cloud-vision:3.51.0 (prev:3.50.0; Release Notes: v3.51.0)
  • google-cloud-apphub:0.17.0 (prev:0.16.0; Release Notes: v0.17.0)
  • google-cloud-storageinsights:0.38.0 (prev:0.37.0; Release Notes: v0.38.0)
  • google-cloud-pubsub:1.134.1 (prev:1.133.1; Release Notes: v1.134.0, v1.134.1)
  • google-cloud-bigquerydatapolicy:0.50.0 (prev:0.49.0; Release Notes: v0.50.0)
  • google-cloud-dialogflow:4.59.0 (prev:4.58.0; Release Notes: v4.59.0)
  • google-cloud-dataform:0.52.0 (prev:0.51.0; Release Notes: v0.52.0)
  • google-cloud-tpu:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-eventarc:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)
  • google-cloud-live-stream:0.55.0 (prev:0.54.0; Release Notes: v0.55.0)
  • google-cloud-firestore:3.28.0 (prev:3.27.2; Release Notes: v3.27.3, v3.27.4, v3.28.0)
  • google-cloud-securityposture:0.18.0 (prev:0.17.0; Release Notes: v0.18.0)
  • google-cloud-bigquery-data-exchange:2.48.0 (prev:2.47.0; Release Notes: v2.48.0)
  • google-cloud-notebooks:1.51.0 (prev:1.50.0; Release Notes: v1.51.0)
  • google-cloud-cloudquotas:0.21.0 (prev:0.20.0; Release Notes: v0.21.0)
  • google-cloud-analyticshub:0.50.0 (prev:0.49.0; Release Notes: v0.50.0)
  • google-cloud-os-login:2.52.0 (prev:2.51.0; Release Notes: v2.52.0)
  • google-cloud-servicehealth:0.20.0 (prev:0.19.0; Release Notes: v0.20.0)
  • google-cloud-vmwareengine:0.47.0 (prev:0.46.0; Release Notes: v0.47.0)
  • google-cloud-discoveryengine:0.49.0 (prev:0.48.0; Release Notes: v0.49.0)
  • google-cloud-gdchardwaremanagement:0.8.0 (prev:0.7.0; Release Notes: v0.8.0)
  • google-cloud-optimization:1.51.0 (prev:1.50.0; Release Notes: v1.51.0)
  • google-cloud-texttospeech:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-rapidmigrationassessment:0.36.0 (prev:0.35.0; Release Notes: v0.36.0)
  • google-cloud-confidentialcomputing:0.39.0 (prev:0.38.0; Release Notes: v0.39.0)
  • google-cloud-appengine-admin:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-container:2.56.0 (prev:2.55.0; Release Notes: v2.56.0)
  • google-cloud-enterpriseknowledgegraph:0.49.0 (prev:0.48.0; Release Notes: v0.49.0)
  • google-cloud-batch:0.53.0 (prev:0.52.0; Release Notes: v0.53.0)
  • google-cloud-profiler:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-bigtable-emulator:0.183.0 (prev:0.182.1; Release Notes: v0.183.0)
  • google-cloud-talent:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-dataplex:1.51.0 (prev:1.50.0; Release Notes: v1.51.0)
  • google-cloud-billingbudgets:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-security-private-ca:2.55.0 (prev:2.54.0; Release Notes: v2.55.0)
  • google-cloud-life-sciences:0.55.0 (prev:0.54.0; Release Notes: v0.55.0)
  • google-cloud-dataproc-metastore:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-managed-identities:1.51.0 (prev:1.50.0; Release Notes: v1.51.0)
  • google-cloud-memcache:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-servicedirectory:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-networkservices:0.9.0 (prev:0.8.0; Release Notes: v0.9.0)
  • google-cloud-vmmigration:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)
  • google-cloud-redis:2.56.0 (prev:2.55.0; Release Notes: v2.56.0)
  • google-iam-admin:3.48.0 (prev:3.47.0; Release Notes: v3.48.0)
  • google-cloud-bigqueryreservation:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-dataproc:4.50.0 (prev:4.49.0; Release Notes: v4.50.0)
  • google-cloud-parallelstore:0.16.0 (prev:0.15.0; Release Notes: v0.16.0)
  • google-cloud-containeranalysis:2.54.0 (prev:2.53.0; Release Notes: v2.54.0)
  • google-cloud-build:3.55.0 (prev:3.54.0; Release Notes: v3.55.0)
  • google-cloud-backupdr:0.12.0 (prev:0.11.0; Release Notes: v0.12.0)
  • google-cloud-datalabeling:0.173.0 (prev:0.172.0; Release Notes: v0.173.0)
  • google-cloud-spanner:6.80.1 (prev:6.79.0; Release Notes: v6.80.0, v6.80.1)
  • google-cloud-storage-transfer:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)
  • google-cloud-iot:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-orgpolicy:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-beyondcorp-appgateways:0.51.0 (prev:0.50.0; Release Notes: v0.51.0)
  • google-cloud-cloudsupport:0.37.0 (prev:0.36.0; Release Notes: v0.37.0)
  • google-cloud-policysimulator:0.32.0 (prev:0.31.0; Release Notes: v0.32.0)
  • google-identity-accesscontextmanager:1.54.0 (prev:1.53.0; Release Notes: v1.54.0)
  • google-cloud-essential-contacts:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-gke-connect-gateway:0.54.0 (prev:0.53.0; Release Notes: v0.54.0)
  • google-cloud-notification:0.171.0-beta (prev:0.170.0-beta; Release Notes: v0.171.0-beta)
  • google-cloud-resourcemanager:1.55.0 (prev:1.54.0; Release Notes: v1.55.0)
  • google-cloud-artifact-registry:1.52.0 (prev:1.51.0; Release Notes: v1.52.0)
  • google-cloud-cloudcontrolspartner:0.17.0 (prev:0.16.0; Release Notes: v0.17.0)
  • google-cloud-filestore:1.54.0 (prev:1.53.0; Release Notes: v1.54.0)
  • google-cloud-storage-control:2.44.1 (prev:2.43.2; Release Notes: v2.44.0, v2.44.1)
  • google-cloud-infra-manager:0.30.0 (prev:0.29.0; Release Notes: v0.30.0)
  • google-cloud-kms:2.56.0 (prev:2.55.0; Release Notes: v2.56.0)
  • google-cloud-debugger-client:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)
  • google-cloud-beyondcorp-clientconnectorservices:0.51.0 (prev:0.50.0; Release Notes: v0.51.0)
  • google-cloud-apikeys:0.51.0 (prev:0.50.0; Release Notes: v0.51.0)
  • google-cloud-beyondcorp-clientgateways:0.51.0 (prev:0.50.0; Release Notes: v0.51.0)
  • google-cloud-document-ai:2.57.0 (prev:2.56.0; Release Notes: v2.57.0)
  • google-cloud-monitoring-metricsscope:0.47.0 (prev:0.46.0; Release Notes: v0.47.0)
  • google-cloud-webrisk:2.52.0 (prev:2.51.0; Release Notes: v2.52.0)
  • google-cloud-monitoring:3.54.0 (prev:3.53.0; Release Notes: v3.54.0)
  • google-cloud-migrationcenter:0.35.0 (prev:0.34.0; Release Notes: v0.35.0)
  • google-cloud-recaptchaenterprise:3.50.0 (prev:3.49.0; Release Notes: v3.50.0)
  • google-cloud-gsuite-addons:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-bigqueryconnection:2.55.0 (prev:2.54.0; Release Notes: v2.55.0)
  • google-cloud-monitoring-dashboard:2.55.0 (prev:2.54.0; Release Notes: v2.55.0)
  • google-cloud-ids:1.52.0 (prev:1.51.0; Release Notes: v1.52.0)
  • google-cloud-secretmanager:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-spanner-jdbc:2.24.1 (prev:2.23.0; Release Notes: v2.24.0, v2.24.1)
  • google-cloud-workflows:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-bigquerystorage:3.10.2 (prev:3.9.3; Release Notes: v3.10.0, v3.10.1, v3.10.2)
  • google-cloud-dialogflow-cx:0.64.0 (prev:0.63.0; Release Notes: v0.64.0)
  • google-cloud-iamcredentials:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-private-catalog:0.55.0 (prev:0.54.0; Release Notes: v0.55.0)
  • google-cloud-errorreporting:0.174.0-beta (prev:0.173.0-beta; Release Notes: v0.174.0-beta)
  • google-cloud-kmsinventory:0.42.0 (prev:0.41.0; Release Notes: v0.42.0)
  • google-cloud-beyondcorp-appconnectors:0.51.0 (prev:0.50.0; Release Notes: v0.51.0)
  • google-cloud-cloudcommerceconsumerprocurement:0.51.0 (prev:0.50.0; Release Notes: v0.51.0)
  • google-cloud-securitycenter:2.61.0 (prev:2.60.0; Release Notes: v2.60.1, v2.61.0)
  • google-cloud-billing:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-redis-cluster:0.25.0 (prev:0.24.0; Release Notes: v0.25.0)
  • google-cloud-tasks:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-certificate-manager:0.56.0 (prev:0.55.0; Release Notes: v0.56.0)
  • google-cloud-bigquerymigration:0.56.0 (prev:0.55.0; Release Notes: v0.56.0)
  • google-cloud-iap:0.9.0 (prev:0.8.0; Release Notes: v0.9.0)
  • google-cloud-mediatranslation:0.59.0 (prev:0.58.0; Release Notes: v0.59.0)
  • google-cloud-beyondcorp-appconnections:0.51.0 (prev:0.50.0; Release Notes: v0.51.0)
  • google-cloud-gkehub:1.53.0 (prev:1.52.0; Release Notes: v1.52.1, v1.53.0)
  • google-cloud-datastore:2.24.1 (prev:2.23.0; Release Notes: v2.24.1)
  • google-cloud-deploy:1.51.0 (prev:1.50.0; Release Notes: v1.51.0)
  • google-cloud-datastream:1.52.0 (prev:1.51.0; Release Notes: v1.52.0)
  • google-cloud-firestore-admin:3.28.0 (prev:3.27.2; Release Notes: v3.27.3, v3.27.4, v3.28.0)
  • google-cloud-workspaceevents:0.17.0 (prev:0.16.0; Release Notes: v0.17.0)
  • google-cloud-developerconnect:0.10.0 (prev:0.9.0; Release Notes: v0.10.0)
  • google-cloud-apihub:0.6.0 (prev:0.5.0; Release Notes: v0.6.0)
  • google-cloud-phishingprotection:0.84.0 (prev:0.83.0; Release Notes: v0.84.0)
  • google-cloud-telcoautomation:0.23.0 (prev:0.22.0; Release Notes: v0.23.0)
  • google-cloud-aiplatform:3.54.0 (prev:3.53.0; Release Notes: v3.54.0)
  • google-cloud-resource-settings:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)
  • google-cloud-datalineage:0.45.0 (prev:0.44.0; Release Notes: v0.45.0)
  • google-iam-policy:1.51.0 (prev:1.50.0; Release Notes: v1.51.0)
  • google-cloud-channel:3.57.0 (prev:3.56.0; Release Notes: v3.57.0)
  • google-cloud-dns:2.51.0 (prev:2.50.0; Release Notes: v2.51.0)
  • google-cloud-video-transcoder:1.52.0 (prev:1.51.0; Release Notes: v1.52.0)
  • google-cloud-securitycentermanagement:0.21.0 (prev:0.20.0; Release Notes: v0.21.0)
  • google-cloud-apigee-connect:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-network-management:1.54.0 (prev:1.53.0; Release Notes: v1.54.0)
  • google-cloud-distributedcloudedge:0.50.0 (prev:0.49.0; Release Notes: v0.50.0)
  • google-cloud-dlp:3.57.0 (prev:3.56.0; Release Notes: v3.56.1, v3.57.0)
  • google-cloud-dms:2.52.0 (prev:2.51.0; Release Notes: v2.52.0)
  • google-cloud-bigquerydatatransfer:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-visionai:0.10.0 (prev:0.9.0; Release Notes: v0.10.0)
  • google-cloud-gke-backup:0.52.0 (prev:0.51.0; Release Notes: v0.52.0)
  • google-cloud-edgenetwork:0.21.0 (prev:0.20.0; Release Notes: v0.21.0)
  • google-cloud-asset:3.57.0 (prev:3.56.0; Release Notes: v3.57.0)
  • google-cloud-meet:0.20.0 (prev:0.19.0; Release Notes: v0.20.0)
  • google-cloud-video-stitcher:0.53.0 (prev:0.52.0; Release Notes: v0.53.0)
  • google-cloud-bigtable:2.46.0 (prev:2.45.1; Release Notes: v2.46.0)
  • google-cloud-oracledatabase:0.2.0 (prev:0.1.0; Release Notes: v0.2.0)
  • google-cloud-alloydb:0.42.0 (prev:0.41.0; Release Notes: v0.42.0)
  • google-cloud-securitycenter-settings:0.56.0 (prev:0.55.0; Release Notes: v0.56.0)
  • google-cloud-netapp:0.32.0 (prev:0.31.0; Release Notes: v0.32.0)
  • google-cloud-orchestration-airflow:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)
  • google-cloud-networkconnectivity:1.52.0 (prev:1.51.0; Release Notes: v1.52.0)
  • google-cloud-retail:2.55.0 (prev:2.54.0; Release Notes: v2.55.0)
  • google-cloud-os-config:2.55.0 (prev:2.54.0; Release Notes: v2.55.0)
  • google-cloud-storage:2.44.1 (prev:2.43.2; Release Notes: v2.44.0, v2.44.1)
  • google-cloud-trace:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-managedkafka:0.9.0 (prev:0.8.0; Release Notes: v0.9.0)
  • google-cloud-workflow-executions:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-functions:2.55.0 (prev:2.54.0; Release Notes: v2.55.0)
  • google-cloud-scheduler:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-websecurityscanner:2.53.0 (prev:2.52.0; Release Notes: v2.53.0)
  • google-cloud-data-fusion:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)
  • google-cloud-service-control:1.53.0 (prev:1.52.0; Release Notes: v1.53.0)

Patch Version Upgrades

  • google-cloud-logging:3.20.6 (prev:3.20.4; Release Notes: v3.20.5, v3.20.6)
  • google-cloud-nio:0.127.26 (prev:0.127.25; Release Notes: v0.127.26)
  • google-cloud-bigquery:2.43.3 (prev:2.43.1; Release Notes: v2.43.2, v2.43.3)
  • google-cloud-pubsublite:1.14.7 (prev:1.14.4; Release Notes: v1.14.5, v1.14.6, v1.14.7)

Core Library Dependencies

These client libraries are built with the following Java libraries:

  • Guava: 33.3.1-jre
  • Protobuf Java: 4.28.3
  • Google Auth Library: 1.29.0
  • Google API Client: 2.7.0
  • gRPC: 1.67.1
  • GAX: 2.57.0
  • Google Cloud Core: 2.47.0

If you encounter compatibility issues with protobuf-java 4.x, please update your codebase and dependencies to ensure compatibility. If this is not feasible, use libraries-bom-protobuf3 as a workaround. libraries-bom-protobuf3 includes the same client libraries and library versions as libraries-bom.

API Reference

You can find the API references of the SDK in Java Cloud Client Libraries


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested a review from a team as a code owner October 31, 2024 22:08
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 31, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants