Skip to content

chore: bump cloud.google.com/go/spanner from 1.71.0 to 1.78.0#50

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/cloud.google.com/go/spanner-1.78.0
Closed

chore: bump cloud.google.com/go/spanner from 1.71.0 to 1.78.0#50
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/cloud.google.com/go/spanner-1.78.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2025

Bumps cloud.google.com/go/spanner from 1.71.0 to 1.78.0.

Release notes

Sourced from cloud.google.com/go/spanner's releases.

spanner: v1.78.0

1.78.0 (2025-03-24)

Features

  • spanner/spansql: Add support for tokenlist and create search index (#11522) (cd894f8)
  • spanner: Support multiplexed sessions for ReadWriteStmtBasedTransaction (#11852) (528d9dd)

Bug Fixes

  • spanner/test/opentelemetry/test: Update golang.org/x/net to 0.37.0 (1144978)
  • spanner: Revert the ALTS bound token enablement (#11799) (68cfb38)
  • spanner: Update golang.org/x/net to 0.37.0 (1144978)

aiplatform: v1.78.0

1.78.0 (2025-03-19)

Features

  • aiplatform: Add env variables and agent framework to ReasoningEngineSpec (c2ee207)
  • aiplatform: Add env variables and agent framework to ReasoningEngineSpec in v1beta1 (#11867) (6618039)
  • aiplatform: Add VertexAISearch.engine option (671eed9)

Documentation

  • aiplatform: Add deployment_spec and agent_framework field to ReasoningEngineSpec. (c2ee207)
  • aiplatform: Add deployment_spec and agent_framework field to ReasoningEngineSpec. (6618039)
  • aiplatform: Update comment for package_spec from required to optional in ReasoningEngineSpec. (c2ee207)
  • aiplatform: Update comment for package_spec from required to optional in ReasoningEngineSpec. (6618039)
Commits
  • b6c2b32 chore(main): release spanner 1.78.0 (#11763)
  • 57a62c0 feat(aiplatform): Enable force deletion in ReasoningEngine v1beta1 (#11901)
  • 3fec6ad chore(bigtable): Refactor tests and update emulator (#11892)
  • ac1855b chore(storage): Allow non-default SAs for GCS. (#11878)
  • b139cd1 chore(all): update deps (#11849)
  • a1a2292 fix(storage): force first message on next sendBuffer when nothing sent on cur...
  • 41ef5f0 fix(spanner): snapshot EnableOpenTelemetryMetrics value on client creation (#...
  • 427f448 feat(aiplatform): Update multimodal evaluation (content_map_instance), rubric...
  • 2019ab2 bugfix(bigtable): fix update LV function (#11896)
  • d7af8c5 chore: add row key schema to table info and some more tests. (#11894)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by Sourcery

Upgrade cloud.google.com/go/spanner dependency from version 1.71.0 to 1.78.0

New Features:

  • Add support for tokenlist and create search index
  • Support multiplexed sessions for ReadWriteStmtBasedTransaction

Bug Fixes:

  • Revert ALTS bound token enablement
  • Update dependencies to resolve potential security or compatibility issues

Chores:

  • Update Spanner library to the latest version, including various dependency upgrades

Bumps [cloud.google.com/go/spanner](https://github.com/googleapis/google-cloud-go) from 1.71.0 to 1.78.0.
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@spanner/v1.71.0...spanner/v1.78.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/spanner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 1, 2025
@dependabot dependabot bot requested a review from NxPKG as a code owner April 1, 2025 22:41
@sourcery-ai
Copy link

sourcery-ai bot commented Apr 1, 2025

Reviewer's Guide by Sourcery

This pull request bumps the cloud.google.com/go/spanner dependency from version 1.71.0 to 1.78.0. It also updates other dependencies, including cloud.google.com/go/bigquery, cloud.google.com/go/secretmanager, github.com/google/go-cmp, golang.org/x/crypto, golang.org/x/oauth2, golang.org/x/text, google.golang.org/api, google.golang.org/genproto, google.golang.org/grpc, and google.golang.org/protobuf. Additionally, the Go toolchain version is updated to go1.24.1.

Sequence diagram for ReadWriteStmtBasedTransaction with multiplexed sessions

sequenceDiagram
  participant Client
  participant SessionPool
  participant Spanner

  Client->>Client: Begin ReadWriteStmtBasedTransaction
  Client->>SessionPool: Get Session (Multiplexed)
  SessionPool->>Spanner: Create Session (if needed)
  Spanner-->>SessionPool: Return Session
  SessionPool-->>Client: Return Session
  Client->>Spanner: Execute Statements
  Spanner-->>Client: Return Results
  Client->>Client: Commit Transaction
  Client->>SessionPool: Release Session
Loading

Updated class diagram for spanner client

classDiagram
  class Client {
    -sessionPool *sessionPool
    -database string
    -config ClientConfig
    +Client(ctx context.Context, database string, options ...ClientOption) (*Client, error)
    +ReadOnlyTransaction() (*ReadOnlyTransaction, error)
    +ReadWriteTransaction(ctx context.Context, f func(context.Context, *ReadWriteTransaction) error, opts ...TransactionOption) error
    +Close() error
  }
  note for Client "This class represents a Spanner client."

  class ClientConfig {
    -sessionPoolConfig SessionPoolConfig
    -numChannels int
    +ClientConfig()
  }
  note for ClientConfig "This class represents the configuration for a Spanner client."

  class SessionPoolConfig {
    -minSessions int
    -maxSessions int
    -maxIdle int
    +SessionPoolConfig()
  }
  note for SessionPoolConfig "This class represents the configuration for a Spanner session pool."

  Client o-- ClientConfig : has
  ClientConfig o-- SessionPoolConfig : has
Loading

File-Level Changes

Change Details Files
Bumped the cloud.google.com/go/spanner dependency from version 1.71.0 to 1.78.0.
  • Updated cloud.google.com/go/spanner to v1.78.0 in go.mod.
  • Updated the cloud.google.com/go/spanner checksum in go.sum.
go.mod
go.sum
Bumped the cloud.google.com/go/bigquery dependency from version 1.64.0 to 1.66.2.
  • Updated cloud.google.com/go/bigquery to v1.66.2 in go.mod.
  • Updated the cloud.google.com/go/bigquery checksum in go.sum.
go.mod
go.sum
Bumped the cloud.google.com/go/secretmanager dependency from version 1.14.2 to 1.14.5.
  • Updated cloud.google.com/go/secretmanager to v1.14.5 in go.mod.
  • Updated the cloud.google.com/go/secretmanager checksum in go.sum.
go.mod
go.sum
Bumped the github.com/google/go-cmp dependency from version 0.6.0 to 0.7.0.
  • Updated github.com/google/go-cmp to v0.7.0 in go.mod.
  • Updated the github.com/google/go-cmp checksum in go.sum.
go.mod
go.sum
Bumped the golang.org/x/crypto dependency from version 0.28.0 to 0.36.0.
  • Updated golang.org/x/crypto to v0.36.0 in go.mod.
  • Updated the golang.org/x/crypto checksum in go.sum.
go.mod
go.sum
Bumped the golang.org/x/oauth2 dependency from version 0.23.0 to 0.28.0.
  • Updated golang.org/x/oauth2 to v0.28.0 in go.mod.
  • Updated the golang.org/x/oauth2 checksum in go.sum.
go.mod
go.sum
Bumped the golang.org/x/text dependency from version 0.19.0 to 0.23.0.
  • Updated golang.org/x/text to v0.23.0 in go.mod.
  • Updated the golang.org/x/text checksum in go.sum.
go.mod
go.sum
Bumped the google.golang.org/api dependency from version 0.204.0 to 0.227.0.
  • Updated google.golang.org/api to v0.227.0 in go.mod.
  • Updated the google.golang.org/api checksum in go.sum.
go.mod
go.sum
Bumped the google.golang.org/genproto and related dependencies.
  • Updated google.golang.org/genproto to v0.0.0-20250303144028-a0af3efb3deb in go.mod.
  • Updated google.golang.org/genproto/googleapis/api to v0.0.0-20250313205543-e70fdf4c4cb4 in go.mod.
  • Updated google.golang.org/genproto/googleapis/rpc to v0.0.0-20250313205543-e70fdf4c4cb4 in go.mod.
  • Updated the google.golang.org/genproto checksum in go.sum.
go.mod
go.sum
Bumped the google.golang.org/grpc dependency from version 1.67.1 to 1.71.0.
  • Updated google.golang.org/grpc to v1.71.0 in go.mod.
  • Updated the google.golang.org/grpc checksum in go.sum.
go.mod
go.sum
Bumped the google.golang.org/protobuf dependency from version 1.35.1 to 1.36.6.
  • Updated google.golang.org/protobuf to v1.36.6 in go.mod.
  • Updated the google.golang.org/protobuf checksum in go.sum.
go.mod
go.sum
Updated the Go toolchain version.
  • Updated the Go toolchain version to go1.24.1 in go.mod.
go.mod

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@coderabbitai
Copy link

coderabbitai bot commented Apr 1, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

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

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2025

Superseded by #57.

@dependabot dependabot bot closed this May 1, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/cloud.google.com/go/spanner-1.78.0 branch May 1, 2025 22:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants