Skip to content

fix(deps): update github.com/openshift/lightspeed-agentic-operator/api digest to 8ac45f7#25

Open
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/github.com-openshift-lightspeed-agentic-operator-api-digest
Open

fix(deps): update github.com/openshift/lightspeed-agentic-operator/api digest to 8ac45f7#25
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/github.com-openshift-lightspeed-agentic-operator-api-digest

Conversation

@red-hat-konflux
Copy link
Copy Markdown

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

This PR contains the following updates:

Package Type Update Change
github.com/openshift/lightspeed-agentic-operator/api require digest 8235eff8ac45f7

Warning

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


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.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jun 2, 2026

📝 Walkthrough

Walkthrough

This PR updates go.mod to require a newer pseudo-version of github.com/openshift/lightspeed-agentic-operator/api (from v0.0.0-20260520064516-8235eff0226c to v0.0.0-20260602120900-8ac45f7db874); no other module lines were changed.

Changes

API Dependency Version Update

Layer / File(s) Summary
API dependency version requirement
go.mod
The require statement for github.com/openshift/lightspeed-agentic-operator/api is updated to pseudo-version v0.0.0-20260602120900-8ac45f7db874; all other module requirements and any replace directives are unchanged.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Suggested labels: lgtm

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the main change: updating a dependency digest for the lightspeed-agentic-operator/api package.
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 Check skipped - CodeRabbit’s high-level summary is enabled.

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

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch konflux/mintmaker/main/github.com-openshift-lightspeed-agentic-operator-api-digest

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

@openshift-ci openshift-ci Bot requested review from blublinsky and joshuawilson June 2, 2026 04:10
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

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 52: The API bump introduced a CRD-breaking change:
GoogleCloudVertexConfig.modelProvider (type GoogleCloudVertexModelProvider) is
now required, which will make existing LLMProvider CRs of kind GoogleCloudVertex
invalid; also SkillsSource.paths became optional. Update the repo to explicitly
call out this breaking change in the release notes/CHANGELOG and in upgrade
docs, and either add a migration/defaulting path (mutating webhook or controller
migration) to populate spec.googleCloudVertex.modelProvider for existing
resources or revert/change the API to make GoogleCloudVertexConfig.modelProvider
optional/defaulted; reference the types GoogleCloudVertexModelProvider and
GoogleCloudVertexConfig.modelProvider (api/v1alpha1/llmprovider_types.go and
api/v1alpha1/shared_types.go) and mention SkillsSource.paths is now optional so
callers and validation logic should be updated accordingly.
🪄 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: 025b57c1-2b29-4be4-9bac-1fcd6cc443ca

📥 Commits

Reviewing files that changed from the base of the PR and between d001d18 and de6f064.

📒 Files selected for processing (1)
  • go.mod

Comment thread go.mod Outdated
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/openshift/lightspeed-agentic-operator/api v0.0.0-20260520064516-8235eff0226c
github.com/openshift/lightspeed-agentic-operator/api v0.0.0-20260601102111-014eb39be821
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 | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Compare API changes between old and new commit to identify breaking changes

cd api || exit 1

echo "=== Checking commit history between 8235eff0226c and 014eb39be821 ==="
git log --oneline 8235eff0226c..014eb39be821

echo -e "\n=== Files changed between commits ==="
git diff --name-only 8235eff0226c..014eb39be821

echo -e "\n=== Detailed diff of Go files (excluding generated/vendor) ==="
git diff 8235eff0226c..014eb39be821 -- '*.go' ':!vendor/**' ':!**/zz_generated.*'

echo -e "\n=== Checking for removed exported symbols ==="
# Look for removed exported types, functions, constants
git diff 8235eff0226c..014eb39be821 -- '*.go' | grep -E '^\-\s*(type|func|const|var)\s+[A-Z]'

Repository: openshift/lightspeed-agentic-operator

Length of output: 4030


🏁 Script executed:

#!/bin/bash
set -euo pipefail

OLD=8235eff0226c
NEW=014eb39be821

# Show which api/v1alpha1 Go files changed
echo "=== Changed api/v1alpha1 Go files ==="
git diff --name-only "$OLD..$NEW" -- 'api/v1alpha1/*.go' 'api/v1alpha1/**/*.go' || true

# Confirm whether proposal-related symbols/types changed
echo -e "\n=== Diff for Proposal / Step related definitions (best-effort grep) ==="
git diff "$OLD..$NEW" -- 'api/v1alpha1/**/*.go' -- '*.go' | rg -n "type (Proposal|ProposalSpec|ProposalStep)|AddToScheme|ProposalCondition|SandboxStepAnalysis|StepResultRef|Steps\.|type .*Condition" || true

# Show exact diff hunks for the only api/v1alpha1 files we saw previously
echo -e "\n=== api/v1alpha1/llmprovider_types.go changes ==="
git diff "$OLD..$NEW" -- api/v1alpha1/llmprovider_types.go

echo -e "\n=== api/v1alpha1/shared_types.go changes ==="
git diff "$OLD..$NEW" -- api/v1alpha1/shared_types.go

Repository: openshift/lightspeed-agentic-operator

Length of output: 3264


🏁 Script executed:

#!/bin/bash
set -euo pipefail

OLD=8235eff0226c
NEW=014eb39be821

echo "=== Where new ModelProvider field is referenced ==="
rg -n "ModelProvider|GoogleCloudVertexModelProvider" .

echo -e "\n=== What changed in example YAMLs/CRD bases between commits (non-go) ==="
git diff --name-only "$OLD..$NEW" -- 'config/**' 'examples/**' || true

echo -e "\n=== Show diff for CRD and examples touching Vertex config ==="
# Limit output to likely files
for f in \
  config/crd/bases/agentic.openshift.io_llmproviders.yaml \
  examples/setup/00-llm-providers.yaml
do
  if git show "$NEW:$f" >/dev/null 2>&1; then
    echo -e "\n--- $f ---"
    git diff "$OLD..$NEW" -- "$f" || true
  fi
done

echo -e "\n=== Does the codebase set any default for modelProvider (if omitted)? ==="
rg -n "default.*modelProvider|modelProvider.*default|omitempty.*modelProvider" .

Repository: openshift/lightspeed-agentic-operator

Length of output: 4429


🏁 Script executed:

#!/bin/bash
set -euo pipefail

nl -ba go.mod | sed -n '70,95p'

Repository: openshift/lightspeed-agentic-operator

Length of output: 124


🏁 Script executed:

#!/bin/bash
set -euo pipefail

awk '{printf "%d\t%s\n", NR, $0}' go.mod | sed -n '80,95p'

Repository: openshift/lightspeed-agentic-operator

Length of output: 437


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "=== Root ./api directory structure (shallow) ==="
ls -la api | head -n 50

echo -e "\n=== Does ./api contain controller/ ? ==="
test -d api/controller && echo "YES: api/controller exists" || echo "NO: api/controller missing"

echo -e "\n=== Does ./controller exist at repo root? ==="
test -d controller && echo "YES: controller exists" || echo "NO: controller missing"

Repository: openshift/lightspeed-agentic-operator

Length of output: 556


🏁 Script executed:

#!/bin/bash
set -euo pipefail

rg -n "GoogleCloudVertexConfig|GoogleCloudVertexModelProvider|ModelProvider" .

Repository: openshift/lightspeed-agentic-operator

Length of output: 2829


🏁 Script executed:

#!/bin/bash
set -euo pipefail

rg -n "modelProvider|GoogleCloudVertexModelProvider" -- '*.go' .

Repository: openshift/lightspeed-agentic-operator

Length of output: 2460


🏁 Script executed:

#!/bin/bash
set -euo pipefail

rg -n "modelProvider|GoogleCloudVertexModelProvider" --glob='*.go' .

Repository: openshift/lightspeed-agentic-operator

Length of output: 1688


🏁 Script executed:

#!/bin/bash
set -euo pipefail

rg -n "GoogleCloudVertexConfig|googleCloudVertex|GoogleCloudVertex" --glob='*.go' .

Repository: openshift/lightspeed-agentic-operator

Length of output: 6524


Call out CRD-breaking change in API bump (GoogleCloudVertex.modelProvider is now required)

  • go.mod line 52 updates the api pseudo-version, but replace ... => ./api (line 87) means this repo builds against the local ./api.
  • The API commit delta only changes api/v1alpha1/llmprovider_types.go and api/v1alpha1/shared_types.go: adds GoogleCloudVertexModelProvider + GoogleCloudVertexConfig.modelProvider and makes SkillsSource.paths optional.
  • No changes to Proposal/Step/scheme registration/condition/status types were introduced, and no exported symbol removals were detected.
  • Breaking impact: the updated CRD marks spec.googleCloudVertex.modelProvider as required; existing LLMProvider objects of type GoogleCloudVertex that omit it will be rejected by the CRD.
🤖 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 52, The API bump introduced a CRD-breaking change:
GoogleCloudVertexConfig.modelProvider (type GoogleCloudVertexModelProvider) is
now required, which will make existing LLMProvider CRs of kind GoogleCloudVertex
invalid; also SkillsSource.paths became optional. Update the repo to explicitly
call out this breaking change in the release notes/CHANGELOG and in upgrade
docs, and either add a migration/defaulting path (mutating webhook or controller
migration) to populate spec.googleCloudVertex.modelProvider for existing
resources or revert/change the API to make GoogleCloudVertexConfig.modelProvider
optional/defaulted; reference the types GoogleCloudVertexModelProvider and
GoogleCloudVertexConfig.modelProvider (api/v1alpha1/llmprovider_types.go and
api/v1alpha1/shared_types.go) and mention SkillsSource.paths is now optional so
callers and validation logic should be updated accordingly.

@red-hat-konflux red-hat-konflux Bot changed the title fix(deps): update github.com/openshift/lightspeed-agentic-operator/api digest to 014eb39 fix(deps): update github.com/openshift/lightspeed-agentic-operator/api digest to dfff653 Jun 2, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/github.com-openshift-lightspeed-agentic-operator-api-digest branch from de6f064 to 82017cc Compare June 2, 2026 08:24
…i digest to 8ac45f7

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux Bot changed the title fix(deps): update github.com/openshift/lightspeed-agentic-operator/api digest to dfff653 fix(deps): update github.com/openshift/lightspeed-agentic-operator/api digest to 8ac45f7 Jun 2, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/github.com-openshift-lightspeed-agentic-operator-api-digest branch from 82017cc to 41a769a Compare June 2, 2026 12:34
@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented Jun 2, 2026

@red-hat-konflux[bot]: all tests passed!

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.

@onmete
Copy link
Copy Markdown
Contributor

onmete commented Jun 3, 2026

/lgtm
/approve

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jun 3, 2026
@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented Jun 3, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: onmete
Once this PR has been reviewed and has the lgtm label, please assign harche for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found 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

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

Labels

lgtm Indicates that a PR is ready to be merged.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant