Skip to content

chore(deps): update module github.com/cenkalti/backoff/v5 to v6#219

Open
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/github.com-cenkalti-backoff-v5-6.x
Open

chore(deps): update module github.com/cenkalti/backoff/v5 to v6#219
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/github.com-cenkalti-backoff-v5-6.x

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
github.com/cenkalti/backoff/v5 v5.0.3v6.0.1 age confidence

Warning

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


Release Notes

cenkalti/backoff (github.com/cenkalti/backoff/v5)

v6.0.1

Compare Source

v6.0.0

Compare Source


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 this update 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.

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux Bot added approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. labels Jun 24, 2026
@coderabbitai

coderabbitai Bot commented Jun 24, 2026

Copy link
Copy Markdown
📝 Walkthrough

Walkthrough

Updates the indirect Go module dependency github.com/cenkalti/backoff from major version v5 (v5.0.3) to major version v6 (v6.0.1) in go.mod.

Changes

Dependency bump

Layer / File(s) Summary
cenkalti/backoff v5 → v6
go.mod
Indirect dependency github.com/cenkalti/backoff bumped from v5.0.3 to v6.0.1; this is a major version change.
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the main change: updating the cenkalti/backoff module from v5 to v6.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description check ✅ Passed The description accurately matches the dependency upgrade shown in the changeset.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Comment @coderabbitai help to get the list of available commands.

@openshift-ci openshift-ci Bot requested review from raptorsun and xrajesh June 24, 2026 00:30
@openshift-ci

openshift-ci Bot commented Jun 24, 2026

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is APPROVED

Approval requirements bypassed by manually added approval.

This pull-request has been approved by:

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

1 similar comment
@openshift-ci

openshift-ci Bot commented Jun 24, 2026

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is APPROVED

Approval requirements bypassed by manually added approval.

This pull-request has been approved by:

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@go.mod`:
- Line 48: The go.mod and go.sum files are out of sync for the
github.com/cenkalti/backoff module. While go.mod correctly specifies the v6
version of backoff, go.sum still contains stale entries from the previous v5
version. Run the command go mod tidy to reconcile and clean up the module files,
which will remove the outdated v5 entries from go.sum and ensure both files are
synchronized with the current v6 dependency specified in go.mod.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 9a5d288a-c45b-492e-8c80-d7eaf081272c

📥 Commits

Reviewing files that changed from the base of the PR and between d8d6698 and 0c88631.

📒 Files selected for processing (1)
  • go.mod
🔗 Linked repositories identified

CodeRabbit considers these linked repositories for cross-repo context during reviews:

  • openshift/lightspeed-agentic-sandbox (manual)

Comment thread go.mod
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
github.com/cenkalti/backoff/v6 v6.0.1 // indirect

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail
rg -n --hidden --glob '!**/vendor/**' 'github\.com/cenkalti/backoff/v5|github\.com/cenkalti/backoff(/v6)?' .

Repository: openshift/lightspeed-agentic-operator

Length of output: 440


🏁 Script executed:

#!/bin/bash
# Check for direct imports of backoff package in Go source files
rg -n --type go 'backoff' . --glob '!**/vendor/**' | head -50

Repository: openshift/lightspeed-agentic-operator

Length of output: 587


🏁 Script executed:

#!/bin/bash
# Check for actual import statements of backoff package
rg -n --type go '"github\.com/cenkalti/backoff' . --glob '!**/vendor/**'

Repository: openshift/lightspeed-agentic-operator

Length of output: 175


Sync go.mod and go.sum for the backoff module upgrade.

The go.mod specifies github.com/cenkalti/backoff/v6 but go.sum still contains stale v5 entries that need to be removed. No direct imports of backoff exist in the source code (it's a transitive dependency), but the module files must remain in sync. Run go mod tidy to clean up and reconcile these entries.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@go.mod` at line 48, The go.mod and go.sum files are out of sync for the
github.com/cenkalti/backoff module. While go.mod correctly specifies the v6
version of backoff, go.sum still contains stale entries from the previous v5
version. Run the command go mod tidy to reconcile and clean up the module files,
which will remove the outdated v5 entries from go.sum and ensure both files are
synchronized with the current v6 dependency specified in go.mod.

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD a18fcfb and 2 for PR HEAD 0c88631 in total

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD 106aa75 and 1 for PR HEAD 0c88631 in total

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD b34df3b and 0 for PR HEAD 0c88631 in total

@openshift-ci

openshift-ci Bot commented Jun 24, 2026

Copy link
Copy Markdown

@red-hat-konflux[bot]: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/unit 0c88631 link true /test unit

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

/hold

Revision 0c88631 was retested 3 times: holding

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jun 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. lgtm Indicates that a PR is ready to be merged.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants