Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Oct 13, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
cloud.google.com/go/accesscontextmanager v1.9.6 -> v1.9.7 age confidence require patch
cloud.google.com/go/aiplatform v1.103.0 -> v1.105.0 age confidence require minor
cloud.google.com/go/analytics v0.30.0 -> v0.30.1 age confidence require patch
cloud.google.com/go/apigeeregistry v0.9.6 -> v0.10.0 age confidence require minor
cloud.google.com/go/artifactregistry v1.17.1 -> v1.17.2 age confidence require patch
cloud.google.com/go/asset v1.21.1 -> v1.22.0 age confidence require minor
cloud.google.com/go/assuredworkloads v1.12.6 -> v1.13.0 age confidence require minor
cloud.google.com/go/automl v1.14.7 -> v1.15.0 age confidence require minor
cloud.google.com/go/baremetalsolution v1.3.6 -> v1.4.0 age confidence require minor
cloud.google.com/go/batch v1.12.2 -> v1.13.0 age confidence require minor
cloud.google.com/go/beyondcorp v1.1.6 -> v1.2.0 age confidence require minor
cloud.google.com/go/billing v1.20.4 -> v1.21.0 age confidence require minor
cloud.google.com/go/binaryauthorization v1.9.5 -> v1.10.0 age confidence require minor
cloud.google.com/go/cloudbuild v1.23.0 -> v1.23.1 age confidence require patch
cloud.google.com/go/compute v1.48.0 -> v1.49.0 age confidence require minor
cloud.google.com/go/container v1.44.0 -> v1.44.1 age confidence require patch
cloud.google.com/go/containeranalysis v0.14.1 -> v0.14.2 age confidence require patch
cloud.google.com/go/dataflow v0.11.0 -> v0.11.1 age confidence require patch
cloud.google.com/go/dataproc/v2 v2.14.1 -> v2.15.0 age confidence require minor
cloud.google.com/go/dialogflow v1.69.1 -> v1.70.0 age confidence require minor
cloud.google.com/go/dlp v1.25.0 -> v1.27.0 age confidence require minor
cloud.google.com/go/documentai v1.38.1 -> v1.39.0 age confidence require minor
cloud.google.com/go/eventarc v1.16.1 -> v1.17.0 age confidence require minor
cloud.google.com/go/firestore v1.18.0 -> v1.19.0 age confidence require minor
cloud.google.com/go/iam v1.5.2 -> v1.5.3 age confidence require patch
cloud.google.com/go/kms v1.23.0 -> v1.23.1 age confidence require patch
cloud.google.com/go/language v1.14.5 -> v1.14.6 age confidence require patch
cloud.google.com/go/maps v1.23.0 -> v1.24.0 age confidence require minor
cloud.google.com/go/monitoring v1.24.2 -> v1.24.3 age confidence require patch
cloud.google.com/go/run v1.12.0 -> v1.12.1 age confidence require patch
cloud.google.com/go/secretmanager v1.15.0 -> v1.15.1 age confidence require patch
cloud.google.com/go/speech v1.28.0 -> v1.28.1 age confidence require patch
cloud.google.com/go/storagetransfer v1.13.0 -> v1.13.1 age confidence require patch
cloud.google.com/go/texttospeech v1.15.0 -> v1.15.1 age confidence require patch
cloud.google.com/go/trace v1.11.6 -> v1.11.7 age confidence require patch
cloud.google.com/go/translate v1.12.6 -> v1.12.7 age confidence require patch
cloud.google.com/go/vision/v2 v2.9.5 -> v2.9.6 age confidence require patch
go 1.25.1 -> 1.25.3 age confidence uses-with patch
google.golang.org/genproto 7c0ddcb -> 49b9836 age confidence require digest
google.golang.org/genproto/googleapis/api 7c0ddcb -> 49b9836 age confidence require digest
google.golang.org/genproto/googleapis/rpc 7c0ddcb -> 49b9836 age confidence require digest

Release Notes

googleapis/google-cloud-go (cloud.google.com/go/apigeeregistry)

v0.10.0

  • pubsub: Subscription.ModifyPushConfig replaced with Subscription.Update.

  • pubsub: Subscription.Receive now runs concurrently for higher throughput.

  • vision: cloud.google.com/go/vision is deprecated. Use
    cloud.google.com/go/vision/apiv1 instead.

  • translation: now stable.

  • trace: several changes to the surface. See the link below.

Code changes required from v0.9.0
  • pubsub: Replace

    sub.ModifyPushConfig(ctx, pubsub.PushConfig{Endpoint: "https://example.com/push"})
    

    with

    sub.Update(ctx, pubsub.SubscriptionConfigToUpdate{
        PushConfig: &pubsub.PushConfig{Endpoint: "https://example.com/push"},
    })
    
  • trace: traceGRPCServerInterceptor will be provided from *trace.Client.
    Given an initialized *trace.Client named tc, instead of

    s := grpc.NewServer(grpc.UnaryInterceptor(trace.GRPCServerInterceptor(tc)))
    

    write

    s := grpc.NewServer(grpc.UnaryInterceptor(tc.GRPCServerInterceptor()))
    
  • trace trace.GRPCClientInterceptor will also provided from *trace.Client.
    Instead of

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(trace.GRPCClientInterceptor()))
    

    write

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor()))
    
  • trace: We removed the deprecated trace.EnableGRPCTracing. Use the gRPC
    interceptor as a dial option as shown below when initializing Cloud package
    clients:

    c, err := pubsub.NewClient(ctx, "project-id", option.WithGRPCDialOption(grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor())))
    if err != nil {
        ...
    }
    
actions/go-versions (go)

v1.25.3: 1.25.3

Compare Source

Go 1.25.3

v1.25.2: 1.25.2

Compare Source

Go 1.25.2


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@forking-renovate
Copy link

ℹ Artifact update notice

File name: googleapis/api/serviceusage/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 5 additional dependencies were updated

Details:

Package Change
google.golang.org/grpc v1.74.2 -> v1.75.1
golang.org/x/net v0.43.0 -> v0.44.0
golang.org/x/sys v0.35.0 -> v0.36.0
golang.org/x/text v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20250922171735-9219d122eba9 -> v0.0.0-20251002232023-7c0ddcbb5797

@renovate-bot renovate-bot requested a review from a team as a code owner October 13, 2025 00:55
@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 13, 2025
@kokoro-team kokoro-team removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 13, 2025
@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 13, 2025
@kokoro-team kokoro-team removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 13, 2025
@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 13, 2025
@kokoro-team kokoro-team removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 13, 2025
@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 14, 2025
@kokoro-team kokoro-team removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 14, 2025
@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 14, 2025
@kokoro-team kokoro-team removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 14, 2025
@bhshkh bhshkh added the automerge Merge the pull request once unit tests and other checks pass. label Oct 14, 2025
@bhshkh bhshkh merged commit 4626949 into googleapis:main Oct 14, 2025
7 checks passed
@gcf-merge-on-green gcf-merge-on-green bot removed the automerge Merge the pull request once unit tests and other checks pass. label Oct 14, 2025
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.

3 participants