Skip to content

chore(deps): update golang-dependencies (major) - #1391

Open
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/major-golang-deps
Open

chore(deps): update golang-dependencies (major)#1391
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/major-golang-deps

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
cloud.google.com/go/ai v0.7.0v1.1.0 age confidence
cloud.google.com/go/longrunning v0.6.2v1.2.0 age confidence
github.com/dlclark/regexp2 v1.10.0v2.8.0 age confidence

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

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

v0.20.0

Compare Source

  • bigquery: Support SchemaUpdateOptions for load jobs.

  • bigtable:

    • Add SampleRowKeys.
    • cbt: Support union, intersection GCPolicy.
    • Retry admin RPCS.
    • Add trace spans to retries.
  • datastore: Add OpenCensus tracing.

  • firestore:

    • Fix queries involving Null and NaN.
    • Allow Timestamp protobuffers for time values.
  • logging: Add a WriteTimeout option.

  • spanner: Support Batch API.

  • storage: Add OpenCensus tracing.

v0.19.0

Compare Source

  • bigquery:

    • Support customer-managed encryption keys.
  • bigtable:

    • Improved emulator support.
    • Support GetCluster.
  • datastore:

    • Add general mutations.
    • Support pointer struct fields.
    • Support transaction options.
  • firestore:

    • Add Transaction.GetAll.
    • Support document cursors.
  • logging:

    • Support concurrent RPCs to the service.
    • Support per-entry resources.
  • profiler:

    • Add config options to disable heap and thread profiling.
    • Read the project ID from $GOOGLE_CLOUD_PROJECT when it's set.
  • pubsub:

    • BEHAVIOR CHANGE: Release flow control after ack/nack (instead of after the
      callback returns).
    • Add SubscriptionInProject.
    • Add OpenCensus instrumentation for streaming pull.
  • storage:

    • Support CORS.

v0.18.0

Compare Source

  • bigquery:

    • Marked stable.
    • Schema inference of nullable fields supported.
    • Added TimePartitioning to QueryConfig.
  • firestore: Data provided to DocumentRef.Set with a Merge option can contain
    Delete sentinels.

  • logging: Clients can accept parent resources other than projects.

  • pubsub:

    • pubsub/pstest: A lighweight fake for pubsub. Experimental; feedback welcome.
    • Support updating more subscription metadata: AckDeadline,
      RetainAckedMessages and RetentionDuration.
  • oslogin/apiv1beta: New client for the Cloud OS Login API.

  • rpcreplay: A package for recording and replaying gRPC traffic.

  • spanner:

    • Add a ReadWithOptions that supports a row limit, as well as an index.
    • Support query plan and execution statistics.
    • Added OpenCensus support.
  • storage: Clarify checksum validation for gzipped files (it is not validated
    when the file is served uncompressed).

v0.17.0

Compare Source

  • firestore BREAKING CHANGES:
    • Remove UpdateMap and UpdateStruct; rename UpdatePaths to Update.
      Change
      docref.UpdateMap(ctx, map[string]interface{}{"a.b", 1})
      to
      docref.Update(ctx, []firestore.Update{{Path: "a.b", Value: 1}})

      Change
      docref.UpdateStruct(ctx, []string{"Field"}, aStruct)
      to
      docref.Update(ctx, []firestore.Update{{Path: "Field", Value: aStruct.Field}})

    • Rename MergePaths to Merge; require args to be FieldPaths

    • A value stored as an integer can be read into a floating-point field, and vice versa.

  • bigtable/cmd/cbt:
    • Support deleting a column.
    • Add regex option for row read.
  • spanner: Mark stable.
  • storage:
    • Add Reader.ContentEncoding method.
    • Fix handling of SignedURL headers.
  • bigquery:
    • If Uploader.Put is called with no rows, it returns nil without making a
      call.
    • Schema inference supports the "nullable" option in struct tags for
      non-required fields.
    • TimePartitioning supports "Field".

v0.16.0

Compare Source

  • Other bigquery changes:

    • JobIterator.Next returns *Job; removed JobInfo (BREAKING CHANGE).
    • UseStandardSQL is deprecated; set UseLegacySQL to true if you need
      Legacy SQL.
    • Uploader.Put will generate a random insert ID if you do not provide one.
    • Support time partitioning for load jobs.
    • Support dry-run queries.
    • A Job remembers its last retrieved status.
    • Support retrieving job configuration.
    • Support labels for jobs and tables.
    • Support dataset access lists.
    • Improve support for external data sources, including data from Bigtable and
      Google Sheets, and tables with external data.
    • Support updating a table's view configuration.
    • Fix uploading civil times with nanoseconds.
  • storage:

    • Support PubSub notifications.
    • Support Requester Pays buckets.
  • profiler: Support goroutine and mutex profile types.

v0.15.0

Compare Source

  • firestore: beta release. See the
    announcement.

  • errorreporting: The existing package has been redesigned.

  • errors: This package has been removed. Use errorreporting.

v0.14.0

Compare Source

  • bigquery BREAKING CHANGES:

    • Standard SQL is the default for queries and views.
    • Table.Create takes TableMetadata as a second argument, instead of
      options.
    • Dataset.Create takes DatasetMetadata as a second argument.
    • DatasetMetadata field ID renamed to FullID
    • TableMetadata field ID renamed to FullID
  • Other bigquery changes:

    • The client will append a random suffix to a provided job ID if you set
      AddJobIDSuffix to true in a job config.
    • Listing jobs is supported.
    • Better retry logic.
  • vision, language, speech: clients are now stable

  • monitoring: client is now beta

  • profiler:

    • Rename InstanceName to Instance, ZoneName to Zone
    • Auto-detect service name and version on AppEngine.

v0.13.0

  • bigquery: UseLegacySQL options for CreateTable and QueryConfig. Use these
    options to continue using Legacy SQL after the client switches its default
    to Standard SQL.

  • bigquery: Support for updating dataset labels.

  • bigquery: Set DatasetIterator.ProjectID to list datasets in a project other
    than the client's. DatasetsInProject is no longer needed and is deprecated.

  • bigtable: Fail ListInstances when any zones fail.

  • spanner: support decoding of slices of basic types (e.g. []string, []int64,
    etc.)

  • logging/logadmin: UpdateSink no longer creates a sink if it is missing
    (actually a change to the underlying service, not the client)

  • profiler: Service and ServiceVersion replace Target in Config.

v0.12.0

  • pubsub: Subscription.Receive now uses streaming pull.

  • pubsub: add Client.TopicInProject to access topics in a different project
    than the client.

  • errors: renamed errorreporting. The errors package will be removed shortly.

  • datastore: improved retry behavior.

  • bigquery: support updates to dataset metadata, with etags.

  • bigquery: add etag support to Table.Update (BREAKING: etag argument added).

  • bigquery: generate all job IDs on the client.

  • storage: support bucket lifecycle configurations.

v0.11.0

  • Clients for spanner, pubsub and video are now in beta.

  • New client for DLP.

  • spanner: performance and testing improvements.

  • storage: requester-pays buckets are supported.

  • storage, profiler, bigtable, bigquery: bug fixes and other minor improvements.

  • pubsub: bug fixes and other minor improvements

v0.10.0

Compare Source

  • 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 {
        ...
    }
    

v0.9.0

  • Breaking changes to some autogenerated clients.
  • rpcreplay package added.

v0.8.0

Compare Source

  • profiler package added.
  • storage:
    • Retry Objects.Insert call.
    • Add ProgressFunc to WRiter.
  • pubsub: breaking changes:
    • Publish is now asynchronous (announcement).
    • Subscription.Pull replaced by Subscription.Receive, which takes a callback (announcement).
    • Message.Done replaced with Message.Ack and Message.Nack.
dlclark/regexp2 (github.com/dlclark/regexp2)

v2.8.0

Compare Source

v2.7.2

Compare Source

v2.7.1

Compare Source

v2.7.0

Compare Source

v2.6.0

Compare Source

v2.5.2

Compare Source

v2.5.1

Compare Source

v2.5.0

Compare Source

v2.4.0

Compare Source

v2.3.0

Compare Source

v2.2.2

Compare Source

v2.2.1

Compare Source

v2.2.0

Compare Source

v2.1.2

Compare Source

v2.1.1

Compare Source

v2.1.0

Compare Source

v2.0.3

Compare Source

v2.0.2

Compare Source

v2.0.1

Compare Source

v2.0.0

Compare Source

v1.12.0

Compare Source

v1.11.5

Compare Source

v1.11.4

Compare Source

v1.11.3

Compare Source

v1.11.2

Compare Source

v1.11.1

Compare Source

v1.11.0

Compare Source


Configuration

📅 Schedule: (UTC)

  • 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.

👻 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

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@sourcery-ai

sourcery-ai Bot commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

Reviewer's Guide

This PR updates Go module dependencies across the agents to newer major/minor versions of the Google Cloud, OpenTelemetry, golang.org/x, Google APIs/genproto/grpc/protobuf, and AWS SDK libraries, and aligns the shared agent module version used by agent-akamai-report.

File-Level Changes

Change Details Files
Modernize Google Cloud client libraries (including AI, Aiplatform, Longrunning, IAM, Auth) across agents to current versions.
  • Bump core cloud.google.com/go from v0.116.0 to v0.123.0 in agent-alertmanager, shared, and agent-splunk.
  • Upgrade cloud.google.com/go/ai from v0.7.0 to v1.1.0 and cloud.google.com/go/aiplatform from v1.69.0 to v1.120.0.
  • Update cloud.google.com/go/auth, oauth2adapt, compute/metadata, iam, and longrunning packages to their latest listed versions.
tools/agents/agent-alertmanager/go.mod
tools/agents/shared/go.mod
tools/agents/agent-splunk/go.mod
Update telemetry, networking, and Google API stack to match newer versions compatible with the upgraded Cloud libraries.
  • Upgrade OpenTelemetry core and contrib instrumentation packages to v1.44.0/v0.67.0 and auto SDK to v1.2.1.
  • Bump golang.org/x libraries (crypto, net, sync, sys, text, time) to their newer versions.
  • Update google.golang.org/api, genproto (including googleapis/api and googleapis/rpc), grpc, and protobuf to recent versions.
tools/agents/agent-alertmanager/go.mod
tools/agents/shared/go.mod
tools/agents/agent-splunk/go.mod
Adjust dependency classifications and add supporting libraries for hashing and AWS integrations in alertmanager and splunk agents.
  • Promote github.com/aws/aws-sdk-go-v2/config and service/cloudwatchlogs from indirect to direct dependencies in agent-alertmanager.
  • Add github.com/cespare/xxhash/v2 as an indirect dependency where required.
  • Refresh googleapis enterprise-certificate-proxy and gax-go/v2 to newer versions, aligning with updated Google clients.
tools/agents/agent-alertmanager/go.mod
tools/agents/shared/go.mod
tools/agents/agent-splunk/go.mod
Add explicit indirect dependencies to agent-akamai-report to mirror the shared module’s stack and update its shared module reference.
  • Update github.com/pulp/pulp-service/tools/agents/shared to a newer pseudo-version in agent-akamai-report.
  • Introduce explicit indirect requirements for Google Cloud, OpenTelemetry, golang.org/x, Google APIs/genproto/grpc/protobuf, and related libraries to agent-akamai-report to align with shared.
  • Ensure regexp2 and other utility libraries are listed to match the shared module ecosystem.
tools/agents/agent-akamai-report/go.mod
tools/agents/agent-akamai-report/go.sum

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!

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

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Hey - I've left some high level feedback:

Fixed security issues:

  • go.opentelemetry.io/otel (link)

  • golang.org/x/crypto (link)

  • golang.org/x/net (link)

  • google.golang.org/grpc (link)

  • The agent-akamai-report module now depends on a newer shared module but still pins older cloud.google.com/go* versions directly; consider aligning these with the other agents or dropping explicit indirect requires and letting Go resolve versions to avoid confusion.

  • This PR advertises an update to github.com/dlclark/regexp2 but all go.mod files still reference v1.10.0; verify whether regexp2 should be bumped to v2.x and update the modules consistently if so.

  • There are many explicit indirect dependencies listed across the agents (e.g., xxhash, OpenTelemetry, golang.org/x/*, genproto) that Go can infer; consider running go mod tidy and relying on automatic indirect resolution to reduce manual maintenance overhead and keep versions consistent.

Prompt for AI Agents
Please address the comments from this code review:

## Overall Comments
- The agent-akamai-report module now depends on a newer shared module but still pins older cloud.google.com/go* versions directly; consider aligning these with the other agents or dropping explicit indirect requires and letting Go resolve versions to avoid confusion.
- This PR advertises an update to github.com/dlclark/regexp2 but all go.mod files still reference v1.10.0; verify whether regexp2 should be bumped to v2.x and update the modules consistently if so.
- There are many explicit indirect dependencies listed across the agents (e.g., xxhash, OpenTelemetry, golang.org/x/*, genproto) that Go can infer; consider running `go mod tidy` and relying on automatic indirect resolution to reduce manual maintenance overhead and keep versions consistent.

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/major-golang-deps branch from 4f431c4 to bbe1cf4 Compare August 18, 2026 02:09
@red-hat-konflux

red-hat-konflux Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: tools/agents/agent-akamai-report/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):

  • 1 additional dependency was updated

Details:

Package Change
github.com/pulp/pulp-service/tools/agents/shared v0.0.0-20260709161951-9c91721c51d5 -> v0.0.0-20260911172150-9fba2a97ff94
File name: tools/agents/agent-alertmanager/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):

  • 26 additional dependencies were updated

Details:

Package Change
cloud.google.com/go v0.116.0 -> v0.123.0
cloud.google.com/go/aiplatform v1.69.0 -> v1.120.0
cloud.google.com/go/auth v0.14.0 -> v0.20.0
cloud.google.com/go/auth/oauth2adapt v0.2.7 -> v0.2.8
cloud.google.com/go/compute/metadata v0.6.0 -> v0.9.0
cloud.google.com/go/iam v1.2.2 -> v1.5.3
github.com/googleapis/enterprise-certificate-proxy v0.3.4 -> v0.3.17
github.com/googleapis/gax-go/v2 v2.14.1 -> v2.23.0
go.opentelemetry.io/auto/sdk v1.1.0 -> v1.2.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 -> v0.67.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 -> v0.67.0
go.opentelemetry.io/otel v1.36.0 -> v1.44.0
go.opentelemetry.io/otel/metric v1.36.0 -> v1.44.0
go.opentelemetry.io/otel/trace v1.36.0 -> v1.44.0
golang.org/x/crypto v0.41.0 -> v0.53.0
golang.org/x/net v0.43.0 -> v0.56.0
golang.org/x/sync v0.16.0 -> v0.21.0
golang.org/x/sys v0.41.0 -> v0.46.0
golang.org/x/text v0.28.0 -> v0.38.0
golang.org/x/time v0.9.0 -> v0.15.0
google.golang.org/api v0.218.0 -> v0.287.1
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20260319201613-d00831a3d3e7
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/genproto/googleapis/rpc v0.0.0-20250122153221-138b5a5a4fd4 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/grpc v1.70.0 -> v1.82.0
google.golang.org/protobuf v1.36.3 -> v1.36.11
File name: tools/agents/agent-splunk/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):

  • 24 additional dependencies were updated

Details:

Package Change
cloud.google.com/go v0.116.0 -> v0.123.0
cloud.google.com/go/aiplatform v1.69.0 -> v1.120.0
cloud.google.com/go/auth v0.14.0 -> v0.20.0
cloud.google.com/go/auth/oauth2adapt v0.2.7 -> v0.2.8
cloud.google.com/go/iam v1.2.2 -> v1.5.3
github.com/googleapis/enterprise-certificate-proxy v0.3.4 -> v0.3.17
github.com/googleapis/gax-go/v2 v2.14.1 -> v2.23.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 -> v0.67.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 -> v0.67.0
go.opentelemetry.io/otel v1.39.0 -> v1.44.0
go.opentelemetry.io/otel/metric v1.39.0 -> v1.44.0
go.opentelemetry.io/otel/trace v1.39.0 -> v1.44.0
golang.org/x/crypto v0.48.0 -> v0.53.0
golang.org/x/net v0.51.0 -> v0.56.0
golang.org/x/sync v0.19.0 -> v0.21.0
golang.org/x/sys v0.41.0 -> v0.46.0
golang.org/x/text v0.34.0 -> v0.38.0
golang.org/x/time v0.9.0 -> v0.15.0
google.golang.org/api v0.218.0 -> v0.287.1
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20260319201613-d00831a3d3e7
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/grpc v1.79.3 -> v1.82.0
google.golang.org/protobuf v1.36.10 -> v1.36.11
File name: tools/agents/shared/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):

  • 26 additional dependencies were updated

Details:

Package Change
cloud.google.com/go v0.116.0 -> v0.123.0
cloud.google.com/go/aiplatform v1.69.0 -> v1.120.0
cloud.google.com/go/auth v0.14.0 -> v0.20.0
cloud.google.com/go/auth/oauth2adapt v0.2.7 -> v0.2.8
cloud.google.com/go/compute/metadata v0.6.0 -> v0.9.0
cloud.google.com/go/iam v1.2.2 -> v1.5.3
github.com/googleapis/enterprise-certificate-proxy v0.3.4 -> v0.3.17
github.com/googleapis/gax-go/v2 v2.14.1 -> v2.23.0
go.opentelemetry.io/auto/sdk v1.1.0 -> v1.2.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 -> v0.67.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 -> v0.67.0
go.opentelemetry.io/otel v1.36.0 -> v1.44.0
go.opentelemetry.io/otel/metric v1.36.0 -> v1.44.0
go.opentelemetry.io/otel/trace v1.36.0 -> v1.44.0
golang.org/x/crypto v0.41.0 -> v0.53.0
golang.org/x/net v0.43.0 -> v0.56.0
golang.org/x/sync v0.16.0 -> v0.21.0
golang.org/x/sys v0.41.0 -> v0.46.0
golang.org/x/text v0.28.0 -> v0.38.0
golang.org/x/time v0.9.0 -> v0.15.0
google.golang.org/api v0.218.0 -> v0.287.1
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20260319201613-d00831a3d3e7
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/genproto/googleapis/rpc v0.0.0-20250122153221-138b5a5a4fd4 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/grpc v1.70.0 -> v1.82.0
google.golang.org/protobuf v1.36.3 -> v1.36.11

@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/major-golang-deps branch 5 times, most recently from 119a762 to 0676bb3 Compare August 24, 2026 02:11
@red-hat-konflux red-hat-konflux Bot changed the title Update golang-dependencies (major) chore(deps): update golang-dependencies (major) Sep 1, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/major-golang-deps branch from 0676bb3 to 8dbb771 Compare September 3, 2026 02:02
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update golang-dependencies (major) Update golang-dependencies (major) Sep 3, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/major-golang-deps branch from 8dbb771 to a74f7c9 Compare September 3, 2026 06:12
@red-hat-konflux red-hat-konflux Bot changed the title Update golang-dependencies (major) chore(deps): update golang-dependencies (major) Sep 4, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/major-golang-deps branch 5 times, most recently from 134f9e0 to 7cbecb1 Compare September 12, 2026 02:01
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/major-golang-deps branch from 7cbecb1 to d6086d2 Compare September 12, 2026 06:21
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.

0 participants