Skip to content

chore(deps): update go dependencies to v1 (major) - abandoned#528

Open
red-hat-konflux[bot] wants to merge 1 commit into
release-1.3from
konflux/mintmaker/release-1.3/major-go-deps
Open

chore(deps): update go dependencies to v1 (major) - abandoned#528
red-hat-konflux[bot] wants to merge 1 commit into
release-1.3from
konflux/mintmaker/release-1.3/major-go-deps

Conversation

@red-hat-konflux
Copy link
Copy Markdown

@red-hat-konflux red-hat-konflux Bot commented Jan 13, 2026

This PR contains the following updates:

Package Type Update Change
cloud.google.com/go/longrunning indirect major v0.6.7v1.0.0
github.com/cavaliercoder/go-rpm require major v0.0.0-20200122174316-8cb9fd9c31a8v1.3.0
github.com/imdario/mergo indirect major v0.3.16v1.0.2

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/longrunning)

v0.13.0

Compare Source

  • 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

Compare Source

  • 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

Compare Source

  • 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

Compare Source

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

v0.7.0

  • Release of a client library for Spanner. See
    the
    blog
    post
    .
    Note that although the Spanner service is beta, the Go client library is alpha.
cavaliercoder/go-rpm (github.com/cavaliercoder/go-rpm)

v1.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: cavaliergopher/rpm@v1.2.0...v1.3.0

v1.2.0

Compare Source

v1.1.1

Compare Source

v1.1.0

Compare Source

v1.0.1

Compare Source

imdario/mergo (github.com/imdario/mergo)

v1.0.2

Compare Source

What's Changed

  • Drops gopkg.in/yaml.v3, only used for loading fixtures. Thanks @​trim21 for bringing to my attention (#​262) that this library is no longer maintained.

Full Changelog: darccio/mergo@v1.0.1...v1.0.2

v1.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: darccio/mergo@v1.0.0...v1.0.1

v1.0.0: 1.0.0 released with new module URL: dario.cat/mergo

Compare Source

This PR is a release containing 0.3.15 features but changing the module URL to dario.cat/mergo.

What's Changed

Full Changelog: darccio/mergo@v0.3.16...v1.0.0


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 these updates again.


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

@red-hat-konflux
Copy link
Copy Markdown
Author

red-hat-konflux Bot commented Jan 13, 2026

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: github.com/cavaliercoder/go-rpm@v1.3.0: parsing go.mod:
	module declares its path as: github.com/cavaliergopher/rpm
	        but was required as: github.com/cavaliercoder/go-rpm

File name: hack/tools/go.sum
Command failed: go get -t ./...
go: github.com/imdario/mergo@v1.0.2: parsing go.mod:
	module declares its path as: dario.cat/mergo
	        but was required as: github.com/imdario/mergo

@red-hat-konflux red-hat-konflux Bot changed the title Update Go Dependencies to v1 (major) Update module github.com/cavaliercoder/go-rpm to v1 Jan 15, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update module github.com/cavaliercoder/go-rpm to v1 Update Go Dependencies to v1 (major) Jan 15, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update Go Dependencies to v1 (major) Update module github.com/cavaliercoder/go-rpm to v1 Jan 16, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update module github.com/cavaliercoder/go-rpm to v1 Update Go Dependencies to v1 (major) Jan 16, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update Go Dependencies to v1 (major) Update module github.com/cavaliercoder/go-rpm to v1 Jan 17, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update module github.com/cavaliercoder/go-rpm to v1 Update Go Dependencies to v1 (major) Jan 17, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update Go Dependencies to v1 (major) Update module github.com/cavaliercoder/go-rpm to v1 Jan 18, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update module github.com/cavaliercoder/go-rpm to v1 Update Go Dependencies to v1 (major) Jan 18, 2026
@tommyd450
Copy link
Copy Markdown

/retest

@tommyd450 tommyd450 force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from 7ea6f96 to 77a12cd Compare January 23, 2026 04:17
@tommyd450
Copy link
Copy Markdown

/retest

1 similar comment
@tommyd450
Copy link
Copy Markdown

/retest

@tommyd450 tommyd450 force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from 21dd1af to 77a12cd Compare January 25, 2026 20:00
@red-hat-konflux red-hat-konflux Bot changed the title Update Go Dependencies to v1 (major) chore(deps): update go dependencies to v1 (major) Jan 26, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update go dependencies to v1 (major) chore(deps): update module github.com/cavaliercoder/go-rpm to v1 Feb 1, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module github.com/cavaliercoder/go-rpm to v1 chore(deps): update go dependencies to v1 (major) Feb 1, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update go dependencies to v1 (major) chore(deps): update module github.com/cavaliercoder/go-rpm to v1 Feb 20, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module github.com/cavaliercoder/go-rpm to v1 chore(deps): update go dependencies to v1 (major) Feb 20, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update go dependencies to v1 (major) chore(deps): update module github.com/cavaliercoder/go-rpm to v1 Feb 20, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module github.com/cavaliercoder/go-rpm to v1 chore(deps): update go dependencies to v1 (major) Feb 20, 2026
@tommyd450
Copy link
Copy Markdown

/retest

@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from 77a12cd to 0016beb Compare April 24, 2026 10:40
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update go dependencies to v1 (major) chore(deps): update module github.com/cavaliercoder/go-rpm to v1 Apr 24, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from 0016beb to 4f590cd Compare April 24, 2026 14:50
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module github.com/cavaliercoder/go-rpm to v1 chore(deps): update go dependencies to v1 (major) Apr 24, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from 4f590cd to d223877 Compare April 25, 2026 14:39
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update go dependencies to v1 (major) chore(deps): update module github.com/imdario/mergo to v1 Apr 25, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from d223877 to 19bb01a Compare April 25, 2026 18:45
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module github.com/imdario/mergo to v1 chore(deps): update go dependencies to v1 (major) Apr 25, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from 19bb01a to 8027b8b Compare May 6, 2026 12:10
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update go dependencies to v1 (major) chore(deps): update module github.com/imdario/mergo to v1 May 6, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/major-go-deps branch from 8027b8b to f4bdffb Compare May 6, 2026 17:12
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module github.com/imdario/mergo to v1 chore(deps): update go dependencies to v1 (major) May 6, 2026
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/release-1.3/major-go-deps branch from f4bdffb to f10c403 Compare May 11, 2026 23:25
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update go dependencies to v1 (major) chore(deps): update go dependencies to v1 (major) - abandoned May 13, 2026
@red-hat-konflux
Copy link
Copy Markdown
Author

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant