Skip to content

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Nov 18, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.google.cloud:google-cloud-spanner 6.102.1 -> 6.103.0 age adoption passing confidence

Release Notes

googleapis/java-spanner (com.google.cloud:google-cloud-spanner)

v6.103.0

Compare Source

Features
  • Add grpc.xds.resource_type label to xDS client metrics (#​4222) (97bed3c)
  • Exposing AutoscalingConfig in InstancePartition (22edecf)
Bug Fixes
  • Add env var to allow disabling directpath bound token (#​4189) (0ca9541)
  • Allow DML THEN RETURN with retryAbortsInternally=false (#​4225) (f49cc47)
  • deps: Update the Java code generator (gapic-generator-java) to 2.64.1 (22edecf)
  • Remove URL encoding in project name (#​4188) (abba0c1)
Dependencies
  • Update actions/checkout action to v5 (#​4166) (50a56f7)
  • Update all tracing and telemetry dependencies (#​4230) (d60124c)
  • Update dependency com.google.api.grpc:proto-google-cloud-trace-v1 to v2.79.0 (#​4172) (3a329fd)
  • Update dependency com.google.auto.value:auto-value-annotations to v1.11.1 (#​4216) (84150c7)
  • Update dependency com.google.cloud:google-cloud-trace to v2.79.0 (#​4174) (3e93ca0)
  • Update dependency com.google.cloud:sdk-platform-java-config to v3.54.1 (#​4193) (ad235cf)
  • Update dependency commons-cli:commons-cli to v1.11.0 (#​4218) (33449ba)
  • Update dependency commons-io:commons-io to v2.21.0 (#​4198) (1f31169)
  • Update dependency net.bytebuddy:byte-buddy to v1.18.1 (#​4214) (0c1d843)
  • Update dependency net.bytebuddy:byte-buddy-agent to v1.18.1 (#​4215) (76ce01b)
  • Update opentelemetry.version to v1.56.0 (#​4167) (a24f219)

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 review from a team as code owners November 18, 2025 02:37
@product-auto-label product-auto-label bot added size: xs Pull request size is extra small. api: spanner Issues related to the googleapis/java-spanner API. labels Nov 18, 2025
@dpebot
Copy link
Contributor

dpebot commented Nov 18, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 18, 2025
@gemini-code-assist
Copy link

Summary of Changes

Hello @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 updates the google-cloud-spanner dependency to its latest minor version, 6.103.0. This update brings a set of new features and crucial bug fixes, enhancing the library's functionality and stability. The changes are limited to updating the version number in the project's pom.xml files.

Highlights

  • Dependency Update: The com.google.cloud:google-cloud-spanner dependency has been updated from version 6.102.1 to 6.103.0.
  • New Features: The updated google-cloud-spanner library introduces new features, including the addition of grpc.xds.resource_type label to xDS client metrics and the exposure of AutoscalingConfig in InstancePartition.
  • Bug Fixes: Several bug fixes are included in the new version, such as allowing DML THEN RETURN with retryAbortsInternally=false, removing URL encoding in project names, and an environment variable to disable directpath bound tokens.
Using Gemini Code Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 18, 2025
Copy link

@gemini-code-assist gemini-code-assist bot left a 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.cloud:google-cloud-spanner dependency to version 6.103.0. While the version bump is correct, I've identified a maintainability improvement in benchmarks/pom.xml. The dependency version is explicitly defined, but it's already managed by the parent POM. I've suggested removing this redundant version declaration to rely on the centralized management in the parent, which simplifies future updates and prevents potential version conflicts.

<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner</artifactId>
<version>6.102.1</version>
<version>6.103.0</version>

Choose a reason for hiding this comment

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

medium

The version for the google-cloud-spanner dependency is managed by the parent pom.xml (google-cloud-spanner-parent). Specifying the version here is redundant and can make future dependency management more difficult. To improve maintainability, please remove this <version> tag and let Maven inherit the version from the parent's dependencyManagement section.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

api: spanner Issues related to the googleapis/java-spanner API. size: xs Pull request size is extra small.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants