Skip to content

chore(deps): Update Go SDK to v1.61.0 [WIP]#4452

Open
krishnamd-jkp wants to merge 3 commits intoGoogleCloudPlatform:masterfrom
krishnamd-jkp:multistream_rel
Open

chore(deps): Update Go SDK to v1.61.0 [WIP]#4452
krishnamd-jkp wants to merge 3 commits intoGoogleCloudPlatform:masterfrom
krishnamd-jkp:multistream_rel

Conversation

@krishnamd-jkp
Copy link
Copy Markdown
Collaborator

Description

Pre-release PR for cloud.google.com/go/storage update to v1.61.0

Link to the issue in case of a bug fix.

Testing details

  1. Manual - NA
  2. Unit tests - NA
  3. Integration tests - Run as presubmits in this PR

Any backward incompatible change? If so, please explain.

@krishnamd-jkp krishnamd-jkp requested a review from a team as a code owner March 9, 2026 14:52
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, 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, primarily upgrading the Go language version and several key Google Cloud Go SDK modules. This ensures the project remains current with the latest library versions, benefiting from performance improvements, bug fixes, and new features provided by these updates, without introducing any explicitly backward incompatible changes.

Highlights

  • Go Language Version Update: The project's Go language version has been upgraded from 1.24.11 to 1.25.0, ensuring compatibility with the latest Go features and improvements.
  • Google Cloud Storage SDK Update: The cloud.google.com/go/storage module has been updated to a pre-release version v1.60.1-0.20260309144548-e57b013eda58, incorporating recent changes and fixes from the Google Cloud Go SDK.
  • Core Dependency Updates: Several other core Go modules have been updated, including github.com/googleapis/gax-go/v2, golang.org/x/oauth2, google.golang.org/api, google.golang.org/grpc, cloud.google.com/go/longrunning, and google.golang.org/genproto to their latest stable or pre-release versions.
Changelog
  • go.mod
    • Updated Go language version from 1.24.11 to 1.25.0.
    • Updated cloud.google.com/go/storage from v1.59.2 to v1.60.1-0.20260309144548-e57b013eda58.
    • Updated github.com/googleapis/gax-go/v2 from v2.16.0 to v2.17.0.
    • Updated golang.org/x/oauth2 from v0.34.0 to v0.35.0.
    • Updated google.golang.org/api from v0.264.0 to v0.265.0.
    • Updated google.golang.org/grpc from v1.79.1 to v1.79.2.
    • Updated cloud.google.com/go/longrunning from v0.7.0 to v0.8.0.
    • Updated google.golang.org/genproto and related googleapis/api and googleapis/rpc indirect dependencies to newer pre-release versions.
  • go.sum
    • Updated checksums for cloud.google.com/go/kms, cloud.google.com/go/longrunning, cloud.google.com/go/storage, go.opentelemetry.io/otel/exporters/stdout/stdoutmetric, golang.org/x/oauth2, google.golang.org/api, google.golang.org/genproto, google.golang.org/genproto/googleapis/api, google.golang.org/genproto/googleapis/rpc, and google.golang.org/grpc to reflect new module versions.
Activity
  • This pull request is marked as a pre-release for the cloud.google.com/go/storage update.
  • Integration tests are configured to run as presubmits for this PR, indicating automated validation of the changes.
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.

@krishnamd-jkp krishnamd-jkp added the execute-perf-test Execute performance test in PR label Mar 9, 2026
Copy link
Copy Markdown
Contributor

@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 several Go dependencies, including upgrading the Go version to 1.25.0. While most dependency updates appear to be routine, I've identified a critical issue with the version specified for cloud.google.com/go/storage. The pseudo-version used contains a timestamp from the future, which is invalid and likely an error. This could lead to problems with dependency resolution and builds. Please see my specific comment for details and a suggested fix.

Comment thread go.mod
@krishnamd-jkp krishnamd-jkp added execute-integration-tests Run only integration tests and removed execute-perf-test Execute performance test in PR execute-integration-tests Run only integration tests labels Mar 9, 2026
@krishnamd-jkp krishnamd-jkp added execute-integration-tests Run only integration tests and removed execute-integration-tests Run only integration tests labels Mar 9, 2026
Comment thread go.mod
@@ -1,6 +1,6 @@
module github.com/googlecloudplatform/gcsfuse/v3

go 1.24.11
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

We are currently in the process of upgrading to Golang 1.26. Would it be possible to release a Golang 1.24 compatible library?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

We have upgraded the Go SDK recently to 1.25.0 so I'm afraid the only option is to cherry pick these changes onto a different release branch without the go upgrade commit which is not the cleanest way.

@krishnamd-jkp krishnamd-jkp changed the title chore(deps): Update Go SDK to v1.61.0 chore(deps): Update Go SDK to v1.61.0 [WIP] Mar 10, 2026
@abhishek10004 abhishek10004 added execute-integration-tests-on-zb To run E2E tests on zonal bucket. and removed execute-integration-tests Run only integration tests labels Mar 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

execute-integration-tests-on-zb To run E2E tests on zonal bucket.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants