-
Notifications
You must be signed in to change notification settings - Fork 138
deps: update dependency com.google.api.grpc:proto-google-cloud-trace-v1 to v2.82.0 #4227
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
deps: update dependency com.google.api.grpc:proto-google-cloud-trace-v1 to v2.82.0 #4227
Conversation
|
/gcbrun |
Summary of ChangesHello @renovate-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request focuses on a routine dependency update, specifically upgrading the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with π and π on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
Summary of ChangesHello @renovate-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request, automatically generated by Renovate, updates the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with π and π on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request updates the com.google.api.grpc:proto-google-cloud-trace-v1 dependency from version 2.79.0 to 2.80.0 in two modules. The update itself appears to be safe. However, I've identified a small opportunity to improve maintainability. The dependency version is hardcoded in two separate pom.xml files. I've added a comment with a suggestion to centralize the version management in the parent POM using a property, which will make future updates easier.
| <groupId>com.google.api.grpc</groupId> | ||
| <artifactId>proto-google-cloud-trace-v1</artifactId> | ||
| <version>2.79.0</version> | ||
| <version>2.80.0</version> |
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.
This version is also hardcoded in google-cloud-spanner/pom.xml. To improve maintainability and avoid inconsistencies, consider defining this version as a property in the parent pom.xml (google-cloud-spanner-parent) and referencing it in both modules. This would centralize the version management for this dependency, requiring only a single change for future updates.
For example, in the parent pom.xml, you could add a property:
<properties>
...
<proto-google-cloud-trace.version>2.80.0</proto-google-cloud-trace.version>
</properties>Then, in this file and google-cloud-spanner/pom.xml, you could use:
<version>${proto-google-cloud-trace.version}</version>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.
Code Review
This pull request, generated by Renovate, updates the com.google.api.grpc:proto-google-cloud-trace-v1 dependency from version 2.79.0 to 2.80.0. The change itself is a straightforward version bump. My review includes a suggestion to improve maintainability by centralizing dependency version management, which will help prevent version conflicts between modules in the future. Apart from this point, the update appears to be correct.
| <version>2.80.0</version> | ||
| <!-- Version will be managed by guava --> |
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 version for proto-google-cloud-trace-v1 is hardcoded here and also in google-cloud-spanner/pom.xml. To improve maintainability and prevent potential version inconsistencies across modules, I recommend managing this dependency's version in the <dependencyManagement> section of the parent pom.xml. This would allow you to define the version in one place and remove the explicit <version> tag from the module POMs.
Additionally, the comment on line 148, <!-- Version will be managed by guava -->, appears to be outdated or incorrect since the version is explicitly set.
f7ae7a0 to
f151c62
Compare
|
/gcbrun |
f151c62 to
738eb2b
Compare
|
/gcbrun |
β¦oud-trace-v1-2.x
|
/gcbrun |
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
22bc6cf
into
googleapis:main
* chore: add release-please config for protobuf-4.x (#4249) * fix: Refine connecitivity metrics to capture RPCs with no response heβ¦ (#4252) * fix: Refine connecitivity metrics to capture RPCs with no response headers * test fix * fix: retry as PDML dit not retry Resource limit exceeded (#4258) Most transactions that exceed the mutation limit for an atomic transaction will fail with the error "The transaction contains too many mutations.". However, it is also possible that the transaction fails with the more generic error message "Transaction resource limits exceeded". This error did not trigger a retry of the statement using a PDML transaction. Fixes #4253 * deps: update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 (#4261) * deps: update googleapis/sdk-platform-java action to v2.64.2 (#4262) * feat: include RequestID in requests and errors (#4263) - Send a RequestID to Spanner for each request - Make sure that the attempt number of the RequestID is increased if the RPC is retried. - Include the RequestID in every error that is thrown due to an error that is returned by Spanner. * feat: make grpc-gcp default enabled (#4239) This PR enables the gRPC-GCP channel pool extension by default for Cloud Spanner Java client. **What's Changing for Customers** **Before this change** - gRPC-GCP extension was disabled by default - Default number of channels: 4 - Channel pooling was handled by GAX **After this change** - gRPC-GCP extension is enabled by default - Default number of channels: 8 - Channel pooling is handled by gRPC-GCP extension **Benefits of gRPC-GCP** - **Improved resilience:** When a network connection fails on a particular channel, operations can be automatically retried on a different gRPC channel - **Better channel management:** gRPC-GCP provides more sophisticated channel affinity and load balancing **How to Disable gRPC-GCP (Switch Back to GAX Channel Pool)** If you need to disable gRPC-GCP and use the previous GAX channel pooling behavior, use the `disableGrpcGcpExtension()` method: ``` SpannerOptions options = SpannerOptions.newBuilder() .setProjectId("my-project") .disableGrpcGcpExtension() .build(); ``` When disabled, the default number of channels reverts to 4 (the previous default). **When You Might Want to Disable gRPC-GCP** - **Maintaining previous behavior:** If you want to keep the exact same behavior as before this change (GAX channel pool with 4 default channels). - **Troubleshooting**: If you experience any unexpected behavior, disabling gRPC-GCP can help isolate whether the issue is related to the channel pooling mechanism. * chore(main): release 6.104.1-SNAPSHOT (#4248) :robot: I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please). * feat: add support of dynamic channel pooling (#4265) * feat: add support of dynamic channel pooling * set initial pool size to 0 make dynamic channel pool work * chore: generate libraries at Tue Dec 16 06:00:50 UTC 2025 * bump grpc-gcp-java version * fix test * incorporate suggestions * chore: generate libraries at Tue Dec 16 09:56:45 UTC 2025 * make dynamic channel pool default disabled * add verifySameChannelId back and fix partitionDML test * support setting GcpChannelPoolOptions directly --------- Co-authored-by: cloud-java-bot <cloud-java-bot@google.com> * chore(main): release 6.105.0 (#4267) * chore(main): release 6.105.0 * chore: generate libraries at Tue Dec 16 17:46:24 UTC 2025 --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: cloud-java-bot <cloud-java-bot@google.com> * chore(main): release 6.105.1-SNAPSHOT (#4268) :robot: I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please). * chore: enable afe latency metric test (#4283) * chore: use graal-sdk-nativeimage.version to manage graal nativeimage versions (#4284) * chore: use graal-sdk-nativeimage.version to manage graal-sdk versions * chore: generate libraries at Thu Jan 1 23:39:12 UTC 2026 --------- Co-authored-by: cloud-java-bot <cloud-java-bot@google.com> * feat: support SHOW DEFAULT_TRANSACTION_ISOLATION for PG databases (#4285) The `SHOW DEFAULT_TRANSACTION_ISOLATION` command can be used in PostgreSQL to query the current default isolation level for a connection. This command was not supported by the Spanner JDBC driver and PGAdapter, which made it difficult for customers to check whether their attempt to set a different default isolation level actually worked. Updates GoogleCloudPlatform/pgadapter#3984 * fix: adjust the initial polling delay for ddl operations (#4275) * fix: adjust the initial polling delay for ddl operations * fix the lint issue * refactor the code * create a separate setting for updateDatabaseDdl * chore: abstract plain text settings into a SpannerOption (#4264) * chore: abstract plain text settings into a SpannerOption * add unit test for plain text scenarios * gemini suggested code changes * updated javadoc * missing space * fixed unit test --------- Co-authored-by: rahul2393 <irahul@google.com> * fix: Retry creation of multiplexed session (#4288) * fix(spanner): Retry creation of multiplexed session * Reduce wait time to run tests faster * chore(main): release 6.106.0 (#4286) * chore(main): release 6.106.0 * chore: generate libraries at Wed Jan 7 15:11:02 UTC 2026 --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: cloud-java-bot <cloud-java-bot@google.com> * chore: Add Clirr exemptions for Protobuf 4.27.4+ runtime (#4297) * feat: Add Dynamic Channel Pooling (DCP) support to Connection API (#4299) * feat: Add Dynamic Channel Pooling (DCP) support to Connection API * incorporate changes * test: skip PGErrorCode assert check for experimental host in ITQueryTest.badquery (#4290) * test: skip PGErrorCode assert check for experimental host * gemini suggested code applied * chore: cleanup release-please config (#4254) * chore: cleanup release-please config - Remove redundant options already declared at the top level.\n- Remove bumpMinorPreMajor for repositories after the first major release. * chore: format release-please.yml --------- Co-authored-by: rahul2393 <irahul@google.com> * deps: update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 (#4302) * deps: update googleapis/sdk-platform-java action to v2.65.1 (#4301) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [googleapis/sdk-platform-java](https://redirect.github.com/googleapis/sdk-platform-java) | action | minor | `v2.64.2` β `v2.65.1` | --- ### Release Notes <details> <summary>googleapis/sdk-platform-java (googleapis/sdk-platform-java)</summary> ### [`v2.65.1`](https://redirect.github.com/googleapis/sdk-platform-java/releases/tag/v2.65.1) [Compare Source](https://redirect.github.com/googleapis/sdk-platform-java/compare/v2.65.0...v2.65.1) ##### Documentation - Update docs for GoogleCredentialsProvider#setScopesToApply ([#​4057](https://redirect.github.com/googleapis/sdk-platform-java/issues/4057)) ([0a9962f](https://redirect.github.com/googleapis/sdk-platform-java/commit/0a9962f9945b6018796a808f89a6a3a309d1ca04)) ### [`v2.65.0`](https://redirect.github.com/googleapis/sdk-platform-java/releases/tag/v2.65.0) [Compare Source](https://redirect.github.com/googleapis/sdk-platform-java/compare/v2.64.2...v2.65.0) ##### Features - add org.json:json to third-party-dependencies pom ([#​4047](https://redirect.github.com/googleapis/sdk-platform-java/issues/4047)) ([ffa432e](https://redirect.github.com/googleapis/sdk-platform-java/commit/ffa432e4e4ae763845afd48b404836c88698bdc0)), closes [#​4046](https://redirect.github.com/googleapis/sdk-platform-java/issues/4046) - remove dependency management of graal-sdk ([#​4033](https://redirect.github.com/googleapis/sdk-platform-java/issues/4033)) ([ad05c34](https://redirect.github.com/googleapis/sdk-platform-java/commit/ad05c34e205c09ad035f469170b0c62b4423b748)) ##### Bug Fixes - add api\_version breadcrumb to client docs ([#​4018](https://redirect.github.com/googleapis/sdk-platform-java/issues/4018)) ([a2b2179](https://redirect.github.com/googleapis/sdk-platform-java/commit/a2b2179874e6a5435001fe201f4eecc2a8e4c531)) - Create a single S2AChannelCredentials per application ([#​3989](https://redirect.github.com/googleapis/sdk-platform-java/issues/3989)) ([3758b43](https://redirect.github.com/googleapis/sdk-platform-java/commit/3758b436d7e80b79ad7d5ea330d8f2bf2f430330)) - provide API to share the same background executor for channel poβ¦ ([#​4030](https://redirect.github.com/googleapis/sdk-platform-java/issues/4030)) ([178182c](https://redirect.github.com/googleapis/sdk-platform-java/commit/178182c76c1b35e702215a88adc3ab511dd35a9e)) ##### Dependencies - update dependencies.txt for grpc-gcp to 1.9.0 ([#​4025](https://redirect.github.com/googleapis/sdk-platform-java/issues/4025)) ([b68791d](https://redirect.github.com/googleapis/sdk-platform-java/commit/b68791d074c02e02a5ccf2f937a5922749a14f56)) - update google api dependencies ([#​3917](https://redirect.github.com/googleapis/sdk-platform-java/issues/3917)) ([480cf13](https://redirect.github.com/googleapis/sdk-platform-java/commit/480cf13148687c53c4af3da9d48490aeb5bf4b88)) - update google.http-client.version to 2.0.3 ([#​4054](https://redirect.github.com/googleapis/sdk-platform-java/issues/4054)) ([b9a8c89](https://redirect.github.com/googleapis/sdk-platform-java/commit/b9a8c8924e7b03bca8a97e476abfd012b86f6d45)) ##### Documentation - Fix retry guide link in javadocs ([#​4029](https://redirect.github.com/googleapis/sdk-platform-java/issues/4029)) ([b43f77c](https://redirect.github.com/googleapis/sdk-platform-java/commit/b43f77c66d93d2423744d0f6d6a0a2a53a06e6d9)) </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/java-spanner). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> * chore: remove explicit grpc-gcp version pinning (#4303) * feat: add SsFormat encoding library (#4292) * feat: add SsFormat encoding library * remove unsigned methods * fix javadoc * refactored appendInt method names + added tests for target range * chore(main): release 6.106.1-SNAPSHOT (#4291) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> * chore: Add gcp resource name span attribute (#4306) * chore: Add gcp resource name span attribute * Update google-cloud-spanner/src/test/java/com/google/cloud/spanner/OpenTelemetrySpanTest.java Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * chore: Add gcp resource name span attribute --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * deps: update dependency net.bytebuddy:byte-buddy to v1.18.4 (#4244) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [net.bytebuddy:byte-buddy](https://bytebuddy.net) | `1.18.1` β `1.18.4` |  |  |  |  | --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/java-spanner). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> * deps: update google.cloud.monitoring.version to v3.83.0 (#4270) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [com.google.cloud:google-cloud-monitoring](https://redirect.github.com/googleapis/google-cloud-java) | `3.81.0` β `3.83.0` |  |  |  |  | | [com.google.api.grpc:grpc-google-cloud-monitoring-v3](https://redirect.github.com/googleapis/google-cloud-java) | `3.81.0` β `3.83.0` |  |  |  |  | | [com.google.api.grpc:proto-google-cloud-monitoring-v3](https://redirect.github.com/googleapis/google-cloud-java) | `3.81.0` β `3.83.0` |  |  |  |  | --- ### 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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/java-spanner). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> * chore(deps): update dependency com.google.cloud:libraries-bom to v26.72.0 (#4234) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://redirect.github.com/googleapis/java-cloud-bom)) | `26.71.0` -> `26.72.0` |  |  |  |  | --- ### Release Notes <details> <summary>googleapis/java-cloud-bom (com.google.cloud:libraries-bom)</summary> ### [`v26.72.0`](https://redirect.github.com/googleapis/java-cloud-bom/blob/HEAD/CHANGELOG.md#26720-2025-11-18) [Compare Source](https://redirect.github.com/googleapis/java-cloud-bom/compare/v26.71.0...v26.72.0) ##### Dependencies - update dependency com.google.cloud:first-party-dependencies to v3.54.1 ([#​7266](https://redirect.github.com/googleapis/java-cloud-bom/issues/7266)) ([2b00ef5](https://redirect.github.com/googleapis/java-cloud-bom/commit/2b00ef51060c6fc8b1b772b352bd0b22f25ee09a)) - update dependency com.google.cloud:gapic-libraries-bom to v1.74.0 ([#​7271](https://redirect.github.com/googleapis/java-cloud-bom/issues/7271)) ([b52b9d9](https://redirect.github.com/googleapis/java-cloud-bom/commit/b52b9d958d2a5f89600b808164f14720dfb56d7f)) - update dependency com.google.cloud:google-cloud-bigquery to v2.56.0 ([#​7279](https://redirect.github.com/googleapis/java-cloud-bom/issues/7279)) ([d7876b6](https://redirect.github.com/googleapis/java-cloud-bom/commit/d7876b6b11bce64d3f62f405da6d9ed928a5ecab)) - update dependency com.google.cloud:google-cloud-bigquerystorage-bom to v3.18.0 ([#​7273](https://redirect.github.com/googleapis/java-cloud-bom/issues/7273)) ([b59ad99](https://redirect.github.com/googleapis/java-cloud-bom/commit/b59ad99edc23294254334d3dae4a181c8e0c25ed)) - update dependency com.google.cloud:google-cloud-bigtable-bom to v2.70.0 ([#​7281](https://redirect.github.com/googleapis/java-cloud-bom/issues/7281)) ([5f79ffc](https://redirect.github.com/googleapis/java-cloud-bom/commit/5f79ffc4d14c510d38d5a019ab5f0d7a711c2e6a)) - update dependency com.google.cloud:google-cloud-datastore-bom to v2.33.0 ([#​7276](https://redirect.github.com/googleapis/java-cloud-bom/issues/7276)) ([52bc904](https://redirect.github.com/googleapis/java-cloud-bom/commit/52bc90484653070c5288312342aac53915ac8973)) - update dependency com.google.cloud:google-cloud-firestore-bom to v3.33.4 ([#​7274](https://redirect.github.com/googleapis/java-cloud-bom/issues/7274)) ([58aa10c](https://redirect.github.com/googleapis/java-cloud-bom/commit/58aa10ca5b7bb81115c6fab3f8719375f2345d84)) - update dependency com.google.cloud:google-cloud-logging-bom to v3.23.8 ([#​7275](https://redirect.github.com/googleapis/java-cloud-bom/issues/7275)) ([6538b89](https://redirect.github.com/googleapis/java-cloud-bom/commit/6538b890fd2c1d966d898cf10ad13cd3d10aeba9)) - update dependency com.google.cloud:google-cloud-logging-logback to v0.132.19-alpha ([#​7277](https://redirect.github.com/googleapis/java-cloud-bom/issues/7277)) ([7c5c2f0](https://redirect.github.com/googleapis/java-cloud-bom/commit/7c5c2f080956a73f22a723fd3d67efca0d8d6967)) - update dependency com.google.cloud:google-cloud-nio to v0.128.8 ([#​7269](https://redirect.github.com/googleapis/java-cloud-bom/issues/7269)) ([0ef2783](https://redirect.github.com/googleapis/java-cloud-bom/commit/0ef2783c1e92cbb90fd9aa9baf9a4749cad87a29)) - update dependency com.google.cloud:google-cloud-pubsub-bom to v1.143.1 ([#​7272](https://redirect.github.com/googleapis/java-cloud-bom/issues/7272)) ([f9c869b](https://redirect.github.com/googleapis/java-cloud-bom/commit/f9c869bd0e4f1a71ff225ca09d6d094434d250d2)) - update dependency com.google.cloud:google-cloud-pubsublite-bom to v1.15.19 ([#​7278](https://redirect.github.com/googleapis/java-cloud-bom/issues/7278)) ([3f9ad11](https://redirect.github.com/googleapis/java-cloud-bom/commit/3f9ad11ecc0683563c3878bee01c6d033f2b4d16)) - update dependency com.google.cloud:google-cloud-spanner-bom to v6.103.0 ([#​7280](https://redirect.github.com/googleapis/java-cloud-bom/issues/7280)) ([0b61648](https://redirect.github.com/googleapis/java-cloud-bom/commit/0b616489685dac70d765778966b00c2523589190)) - update dependency com.google.cloud:google-cloud-spanner-jdbc to v2.34.0 ([#​7265](https://redirect.github.com/googleapis/java-cloud-bom/issues/7265)) ([297f8d5](https://redirect.github.com/googleapis/java-cloud-bom/commit/297f8d505d97bff0dd93ef5dba92d641ccbb7a64)) - update dependency com.google.cloud:google-cloud-storage-bom to v2.60.0 ([#​7267](https://redirect.github.com/googleapis/java-cloud-bom/issues/7267)) ([63b1b4c](https://redirect.github.com/googleapis/java-cloud-bom/commit/63b1b4c765bd019153cfeae3b98d69363e679d6e)) </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/java-spanner). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> * deps: update dependency com.google.api.grpc:proto-google-cloud-trace-v1 to v2.82.0 (#4227) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [com.google.api.grpc:proto-google-cloud-trace-v1](https://redirect.github.com/googleapis/google-cloud-java) | `2.79.0` β `2.82.0` |  |  |  |  | --- ### 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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/java-spanner). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQyLjc0LjUiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> * deps: update dependency com.google.cloud:google-cloud-monitoring to v3.83.0 (#4169) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [com.google.cloud:google-cloud-monitoring](https://redirect.github.com/googleapis/google-cloud-java) | `3.77.0` β `3.83.0` |  |  |  |  | --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/java-spanner). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDMuMSIsInVwZGF0ZWRJblZlciI6IjQyLjc0LjUiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> * chore(main): release 6.107.0 (#4304) * chore(main): release 6.107.0 * chore: generate libraries at Fri Jan 16 17:05:30 UTC 2026 --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: cloud-java-bot <cloud-java-bot@google.com> --------- Co-authored-by: Diego Marquez <diegomarquezp@google.com> Co-authored-by: surbhigarg92 <surbhigarg.92@gmail.com> Co-authored-by: Knut Olav LΓΈite <koloite@gmail.com> Co-authored-by: Mend Renovate <bot@renovateapp.com> Co-authored-by: rahul2393 <irahul@google.com> Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: cloud-java-bot <cloud-java-bot@google.com> Co-authored-by: Mridula <66699525+mpeddada1@users.noreply.github.com> Co-authored-by: Hengfeng Li <hengfeng@google.com> Co-authored-by: Sagnik Ghosh <sagnikghosh@google.com> Co-authored-by: Sakthivel Subramanian <179120858+sakthivelmanii@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This PR contains the following updates:
2.79.0β2.82.0Configuration
π 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.