Skip to content

chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 - #1228

Open
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/sigs.k8s.io-structured-merge-diff-v6-6.x
Open

chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2#1228
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/sigs.k8s.io-structured-merge-diff-v6-6.x

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
sigs.k8s.io/structured-merge-diff/v6 v6.4.0v6.4.2 age confidence

Warning

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


Release Notes

kubernetes-sigs/structured-merge-diff (sigs.k8s.io/structured-merge-diff/v6)

v6.4.2

Compare Source

v6.4.1

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.

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

@fullsend-ai-review

fullsend-ai-review Bot commented Jul 10, 2026

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 1:33 AM UTC · Completed 1:37 AM UTC
Commit: 58b0710 · View workflow run →

@fullsend-ai-review

fullsend-ai-review Bot commented Jul 10, 2026

Copy link
Copy Markdown

Review — ✅ Approve

PR: #1228 — chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2
Author: red-hat-konflux[bot] (MintMaker/Renovate)
Risk: Low

Summary

Automated patch version bump of sigs.k8s.io/structured-merge-diff/v6 from v6.4.0 → v6.4.2. This is an indirect (transitive) dependency used through the Kubernetes client-go / apimachinery stack. Patch versions are semver-compatible bug-fix releases.

Changes reviewed

File What changed
go.mod Bumped structured-merge-diff/v6 v6.4.0 → v6.4.2; promoted k8s.io/apimachinery and gopkg.in/yaml.v3 from indirect to direct (correct go mod tidy fix)
go.sum Updated checksums for structured-merge-diff/v6 v6.4.2

Dimension assessment

  • Correctness — No source code changes. Version bump and go.sum hashes are consistent. The indirect → direct promotions for k8s.io/apimachinery and gopkg.in/yaml.v3 are correct — both packages are directly imported in exporters/kaexporter/.
  • Security — No new dependencies introduced. Patch bump of a well-maintained Kubernetes SIG library. No concern.
  • Intent & coherence — Standard automated dependency maintenance. Appropriately scoped.
  • Style/conventions — PR title follows conventional commits (chore(deps): ...).
  • Documentation — No documentation changes needed for a transitive dependency bump.

Findings

No findings.

Previous run

Review — Approve ✅

Scope: Automated dependency update (MintMaker/Renovate) — 2 files, 4 additions, 4 deletions.

Changes

File Description
go.mod Bumps sigs.k8s.io/structured-merge-diff/v6 from v6.4.0v6.4.2; promotes k8s.io/apimachinery from indirect to direct
go.sum Updates checksums for structured-merge-diff/v6 v6.4.2

Analysis

Correctness: Patch version bump of an indirect dependency (structured-merge-diff/v6). The go.sum /go.mod module hash is unchanged between v6.4.0 and v6.4.2, confirming API compatibility. The k8s.io/apimachinery promotion from // indirect to direct is correct — exporters/kaexporter/collector.go directly imports k8s.io/apimachinery/pkg/apis/meta/v1, so the prior // indirect annotation was inaccurate. This was fixed as a side effect of go mod tidy.

Security: No code changes. Patch version updates to well-maintained Kubernetes SIG libraries typically contain bug fixes and minor improvements.

Intent & coherence: The PR does exactly what the title describes. The secondary k8s.io/apimachinery promotion is a harmless, correct housekeeping change.

Cross-repo contracts: No API, schema, or interface changes.

No findings to report.

Previous run (2)

Review — ✅ Approve

PR: #1228 — Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2
Scope: Automated patch-level dependency bump (v6.4.0 → v6.4.2) via MintMaker/Renovate bot

Summary

This is a routine, bot-generated Go module dependency update touching only go.mod and go.sum. Two changes are present:

  1. sigs.k8s.io/structured-merge-diff/v6 bumped from v6.4.0 to v6.4.2 (patch version, indirect dependency). The go.mod module hash is unchanged between versions, confirming API compatibility.
  2. k8s.io/apimachinery v0.35.3 promoted from // indirect to direct require block. This is correct — exporters/kaexporter/collector.go directly imports k8s.io/apimachinery/pkg/apis/meta/v1, so the base branch's // indirect marking was inaccurate. This is consistent with what go mod tidy would produce.

Dimensions reviewed

Dimension Result
Correctness ✅ No issues — apimachinery promotion verified against Go imports
Security ✅ No secrets, permission changes, or injection vectors
Intent & coherence ✅ Mechanical change — authorization implicit
Style & conventions ✅ Early exit — value-only change follows surrounding patterns
Documentation currency ✅ No documentation references to specific dependency versions
Cross-repo contracts ⏭ Skipped — no exported APIs modified

No findings above the severity threshold.

Previous run (3)

Review

Verdict: Approve ✅

Summary

Automated patch-version dependency update of sigs.k8s.io/structured-merge-diff/v6 from v6.4.0 → v6.4.1, generated by MintMaker (Renovate). The change is limited to go.mod and go.sum — no source code modifications.

Analysis

Correctness

  • Patch version bump within the same minor version (v6.4.x). Semver guarantees backward compatibility.
  • The go.sum h1: and /go.mod hashes are consistent — both entries updated, and the /go.mod hash remains unchanged (M3W8sfWvn2HhQDIbGWj3S099YozAsymCo/wrT5ohRUE=), confirming the module's own go.mod is stable across the patch bump.
  • k8s.io/apimachinery v0.35.3 was promoted from // indirect to the direct require block. This is correct — the package is directly imported in exporters/kaexporter/collector.go (metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"). This is a go mod tidy side-effect fix, not a version change.

Security

  • No new dependencies introduced. No version downgrades. No changes to authentication, RBAC, or data-handling code.
  • structured-merge-diff is a well-maintained Kubernetes SIG project. Patch releases may include security fixes.

Intent & Coherence

  • The PR matches its stated purpose. The scope is minimal and appropriate for an automated dependency update. No extraneous changes.

Style / Conventions

  • go.mod and go.sum follow standard Go module conventions. No manual edits required.

Documentation

  • No documentation impact — dependency updates do not require documentation changes.

Cross-repo Contracts

  • structured-merge-diff is a transitive (indirect) dependency. No exported API surface changes in this repository.

Findings

No blocking findings.


Labels: Minimal automated dependency patch bump — trivial review effort

fullsend-ai-review[bot]

This comment was marked as outdated.

@fullsend-ai-review fullsend-ai-review Bot added ready-for-merge All reviewers approved — ready to merge Review effort 1/5 labels Jul 10, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/sigs.k8s.io-structured-merge-diff-v6-6.x branch from 07edd38 to 8ad475a Compare July 11, 2026 01:25
@red-hat-konflux red-hat-konflux Bot changed the title Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.1 Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 Jul 11, 2026
@fullsend-ai-review

fullsend-ai-review Bot commented Jul 11, 2026

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 1:26 AM UTC · Completed 1:32 AM UTC
Commit: 58b0710 · View workflow run →

fullsend-ai-review[bot]

This comment was marked as outdated.

@fullsend-ai-review fullsend-ai-review Bot added ready-for-merge All reviewers approved — ready to merge and removed ready-for-merge All reviewers approved — ready to merge labels Jul 11, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 - autoclosed Jul 15, 2026
@red-hat-konflux red-hat-konflux Bot closed this Jul 15, 2026
@red-hat-konflux
red-hat-konflux Bot deleted the konflux/mintmaker/main/sigs.k8s.io-structured-merge-diff-v6-6.x branch July 15, 2026 05:24
@red-hat-konflux red-hat-konflux Bot changed the title Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 - autoclosed Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 Jul 15, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Jul 15, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/sigs.k8s.io-structured-merge-diff-v6-6.x branch 2 times, most recently from 8ad475a to 36b46aa Compare July 15, 2026 10:46
@fullsend-ai-review

fullsend-ai-review Bot commented Jul 15, 2026

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 10:46 AM UTC · Completed 10:50 AM UTC
Commit: 58b0710 · View workflow run →

fullsend-ai-review[bot]

This comment was marked as outdated.

@fullsend-ai-review fullsend-ai-review Bot added ready-for-merge All reviewers approved — ready to merge and removed ready-for-merge All reviewers approved — ready to merge labels Jul 15, 2026
@red-hat-konflux red-hat-konflux Bot changed the title Update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 Jul 16, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 - autoclosed Jul 17, 2026
@red-hat-konflux red-hat-konflux Bot closed this Jul 17, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 - autoclosed chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6.4.2 Jul 17, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Jul 17, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/sigs.k8s.io-structured-merge-diff-v6-6.x branch from 63cd94d to 36b46aa Compare July 17, 2026 17:51
@red-hat-konflux

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: 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
gopkg.in/yaml.v3 v3.0.1 -> v3.0.1

@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/main/sigs.k8s.io-structured-merge-diff-v6-6.x branch from 36b46aa to 63cd94d Compare July 17, 2026 17:51
@fullsend-ai-review

fullsend-ai-review Bot commented Jul 17, 2026

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 5:52 PM UTC · Completed 5:56 PM UTC
Commit: 58b0710 · View workflow run →

@fullsend-ai-review fullsend-ai-review Bot added ready-for-merge All reviewers approved — ready to merge and removed ready-for-merge All reviewers approved — ready to merge labels Jul 17, 2026
….4.2

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/sigs.k8s.io-structured-merge-diff-v6-6.x branch from 63cd94d to a4e783e Compare August 3, 2026 16:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ready-for-merge All reviewers approved — ready to merge Review effort 1/5

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants