Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Feb 24, 2025

This PR contains the following updates:

Package Update Change
k14s/kapp minor 0.64.00.65.0
k14s/ytt minor 0.51.10.52.2
kudobuilder/kuttl minor 0.21.00.24.0
mikefarah/yq minor 4.45.14.50.1

To easily extract checksums: yq_version=;curl -sSL https://github.com/mikefarah/yq/releases/download/v${jq_version}/checksums |grep "yq_linux_amd64 "|cut -d' ' -f37


Release Notes

k14s/kapp (k14s/kapp)

v0.65.0

Compare Source

Installation and signature verification

Installation
By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/kapp-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/kapp

# Make the binary executable
chmod +x /usr/local/bin/kapp
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install kapp
$ kapp version  
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing

✨ What's new

  • add volume.kubernetes.io/storage-provisioner annotation for pvc by @​dvjn #​1056
  • add kubernetes.io/metadata.name annotation by @​dvjn in #​1057
  • Bump golang to 1.24.9 fix CVEs and linter errors/test failures by @​sameerkhan-maker in #​1098
  • Refactor gh action tests by @​ankitsny

New Contributors

  • @​sameerkhan-maker made their first contribution in #​1098

Full Changelog: carvel-dev/kapp@v0.64.2...v0.65.0

📂 Files Checksum

3bc607405ae9e04a1743049203dbea4a5bad0f2ed8800b881f2b0e3e7b2e3073  ./kapp-darwin-arm64
5e5ae7d8633f0551596f7c462e3850d2bc7a47df82aa7793ec309958657f21ed  ./kapp-darwin-amd64
6f285a757f10f29491df09d592ff6395dafbdf6a9f2c7e2845409d69ce6cd71e  ./kapp-windows-amd64.exe
9cb88745d189bbfe2423771d68f50f7222ca33187350470857cca124d3341233  ./kapp-linux-amd64
c7be5fdbbc22d9efc7cb952c13c1e671a632af8530e7958eda89ff010cac78d3  ./kapp-linux-arm64

v0.64.2

Compare Source

Installation and signature verification

Installation
By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.2/kapp-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/kapp

# Make the binary executable
chmod +x /usr/local/bin/kapp
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install kapp
$ kapp version  
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.2/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.2/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing

✨ What's new

  • Fix CVEs and bump go version by @​devanshuVmware in #​1059
  • Update all k8s.io packages to same version v0.31.7 by @​devanshuVmware in #​1069

Full Changelog: carvel-dev/kapp@v0.64.1...v0.64.2

📂 Files Checksum

475ed4fc7ee538efceeb02972524a17cb580d9b3e59ab16c7a18de02427daedc  ./kapp-linux-amd64
7d996ba14aa7128efe96a4c4206609f251db0f7459b60f9cd51210a9e4b8354f  ./kapp-darwin-amd64
a5e8deaf0271eb8d5cddc57112763e95500c613702efe0ca06537e7c550e928f  ./kapp-windows-amd64.exe
bffda57ed0c83cd2a8cc6faaaf97b3aa71f000658258eeaae6b0a31531a0e03a  ./kapp-linux-arm64
cc6477204a6327aa48dfb37384a69bd6e311f7fcfe4ee52281e3a953b4a96856  ./kapp-darwin-arm64

v0.64.1

Compare Source

Installation and signature verification

Installation
By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.1/kapp-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/kapp

# Make the binary executable
chmod +x /usr/local/bin/kapp
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install kapp
$ kapp version  
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.1/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.64.1/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing

✨ What's new

  • Bump Golang to 1.23.7 and and Fix CVEs by @​devanshuVmware in #​1055
  • Update test-gh.yml to run e2e tests on latest k8s version by @​ankitsny in #​1055

Full Changelog: carvel-dev/kapp@v0.64.0...v0.64.1

📂 Files Checksum

8b7cf929c1498a4ae91b880e77c8ba8b545afc14ee564cd50d749c9f611223ed  ./kapp-linux-amd64
954604fde9897ea5f95a6a75c819ac507d3a7a2f8d0b530974ad128fc519e310  ./kapp-windows-amd64.exe
9fe565fd99b0417cc75892454d72fcdcff3124ca42f6d36d01bf4cc13232179b  ./kapp-darwin-amd64
a74f11266571fab611d6d371f8ebc275fd16d7545ec00a8d178f2ac33e72d17c  ./kapp-linux-arm64
ff7168c861b19e2e2b96a6ace3374bf83048b7ca25a34a64cfaab675bdcdc6dc  ./kapp-darwin-arm64
k14s/ytt (k14s/ytt)

v0.52.2

Compare Source

Installation and signature verification

Installation
By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.2/ytt-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/ytt

# Make the binary executable
chmod +x /usr/local/bin/ytt
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install ytt
$ ytt version  
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.2/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.2/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing
What's Changed
  • Bump golang to 1.24.11 in #​970

Full Changelog: carvel-dev/ytt@v0.52.1...v0.52.2

📂 Files Checksum

02e1db4bce02f72a48312efca36fd1feb0d356ce21029e42916a88b17577b877  ./ytt-darwin-arm64
295cc5eb40091ad66c1093b955b73f290b5336a0b702e6318ba67a691b4031cb  ./ytt-linux-riscv64
3abce3c1233e328e1cc11161b85d5c162fae04425ac1bbf4d29e6ba54781ff91  ./ytt-linux-arm64
5242b9078abd483da46f13f715254f415b6328b2d979af24a4074b56007a43ba  ./ytt-windows-arm64.exe
76d5355a5135c59a1791f420f3094579f775cbf2a987328f920a05e1338f1e1f  ./ytt-linux-amd64
8d7904ef61cd26e5bd94cd0e0cfc5cd4e7d5501845290034bfe87fee05cecb03  ./ytt-windows-amd64.exe
cde68e057a9a0a175eb7366bc8ab5f358f7ffb7ed736cfac8b37ef98444da918  ./ytt-darwin-amd64

v0.52.1

Compare Source

Installation and signature verification

Installation
By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.1/ytt-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/ytt

# Make the binary executable
chmod +x /usr/local/bin/ytt
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install ytt
$ ytt version  
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.1/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.1/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing
What's Changed
  • Bump golang to 1.24.6 to fix CVEs by @​devanshuVmware in #​964

Full Changelog: carvel-dev/ytt@v0.52.0...v0.52.1

📂 Files Checksum

1975e52b3b97bd9be72f4efb714562da6a80cf181f036ae1f86eec215e208498  ./ytt-darwin-amd64
490f138ae5b6864071d3c20a5a231e378cee7487cd4aeffc79dbf66718e65408  ./ytt-linux-amd64
7d86bd3299e43d1455201fc213d698bae7482cd88f3e05de2f935e6eab842db9  ./ytt-linux-arm64
a205f49267a44cd495e4c8b245754d8a216931a28ef29c78ae161c370a9b6117  ./ytt-darwin-arm64
a887653ace89a6c102646d685b01c6cb637aa2b1e0987b1be5a799ebefc893fa  ./ytt-windows-arm64.exe
b437deb4eb8c9ada3e1405272450cdf33a0450684609af7df2eaccf36f1c1c92  ./ytt-windows-amd64.exe
fb53d2c409448c948f845a7b0df7748a0b8ecae31d3246fb48fd99988acf3e0b  ./ytt-linux-riscv64

v0.52.0

Compare Source

Installation and signature verification

Installation
By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.0/ytt-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/ytt

# Make the binary executable
chmod +x /usr/local/bin/ytt
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install ytt
$ ytt version  
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.0/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.52.0/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing
What's Changed
  • Add riscv64 binary release #​944 by @​mengzhuo
  • Improve performance #​954 by @​emh-jump
  • Fix linting issues and bump go by @​devanshuVmware and @​joaopapereira

Full Changelog: carvel-dev/ytt@v0.51.2...v0.52.0

📂 Files Checksum

063cf006ddcb6592500c8bedb20850ffd332e058fd34c1abff781bb6ef68c590  ./ytt-windows-arm64.exe
4c222403a9a2d54d8bb0e0ca46f699ee4040a2bddd5ab3b6354efd2c85d3209f  ./ytt-linux-amd64
781f8950da84b2d2928b139eb38567584d9ddebc7e5a34fd97209ad61ae9cc65  ./ytt-linux-arm64
924eb899bdbb4b3652d941c7662acc434a7a35c07537e7cf48a7645b960a7ab5  ./ytt-darwin-amd64
a01005ec823b8cb048f6ac2962233ec340cf9040e254fee5c28d0e784da4ca49  ./ytt-windows-amd64.exe
d1d51f490b23891c03957c80ec8b63f97fb393f18a9f7bf024db75ef6960d743  ./ytt-linux-riscv64
f77bcbcd71802fcb55cb0333ed7e640e6cc6e9164b757af01a6ac69f6b503b47  ./ytt-darwin-arm64

v0.51.2

Compare Source

Installation and signature verification

Installation
By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.51.2/ytt-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/ytt

# Make the binary executable
chmod +x /usr/local/bin/ytt
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install ytt
$ ytt version  
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.51.2/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.51.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.51.2/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing
What's Changed
  • Bump golang version to 1.23.7 by @​devanshuVmware in #​949
  • golangci-lint linter fixes by @​devanshuVmware in #​951

Full Changelog: carvel-dev/ytt@v0.51.1...v0.51.2

📂 Files Checksum

4fa87a81af4634099c3a1c7396d4d0f0b6fee9f4854b37a6a547d55bfca897c5  ./ytt-darwin-arm64
61ad01f1df9cc8344c786e93acb1f5707ded9e4b52e4ec55a0f6637f2af53bae  ./ytt-linux-amd64
669eb82f2a3f646c593af3e2b2b7088f902a609770a8034e37779e9121d67e07  ./ytt-windows-amd64.exe
a25dd1c8b74f276a6ef2b4c2d0b493f8aaf87839e90762aa3c444e0b7eec95c8  ./ytt-darwin-amd64
ae0bdc3aca64e71276f59679ea9253be5f88fc6880937ae1de3dd42a00492a8c  ./ytt-linux-arm64
c648786f8b5237f62169960e1df09efc17ecbbc8d83c1dd0d5edf815ee57ae55  ./ytt-windows-arm64.exe

kudobuilder/kuttl (kudobuilder/kuttl)

v0.24.0: kuttl-v0.24.0

Compare Source

Changes

🚀 Highlights

  • feat: add ignoreFiles option to suppress file warnings in test directories (#​651)

🐛 Bug Fixes

  • fix: existing user-supplied ns when lacking permissions (#​657) (bug was introduced in v0.23.0)

🌱 Dependency bumps

  • chore(deps): bump github.com/spf13/cobra from 1.9.1 to 1.10.1 (#​655)
  • chore(deps): bump github.com/spf13/pflag from 1.0.7 to 1.0.10 (#​654)
  • chore(deps): bump github.com/Masterminds/semver/v3 from 3.3.1 to 3.4.0 (#​653)
  • chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 (#​652)

Contributors

@​dependabot[bot], @​mandre and @​porridge

v0.23.0: kuttl-v0.23.0

Compare Source

☣️ Note that this release is affected by:

🚀 Highlights

  • feat: introduce templating support (#​642)

You can now pass --template-var myvar=foo to kuttl and use {{ .Vars.myvar }} syntax in YAML files. See docs for more details.

💣 Breaking changes

  • most code (other than API and the harness) was made internal. This has no impact on users of the kuttl CLI, but may break Go code which imports github.com/kudobuilder/kuttl

⚠️ Potentially risky changes

The extensive refactoring which preceded addition of templating support could have introduced some subtle differences in kuttl behaviour. Please report issues if you encounter them. In particular:

🐛 Bug Fixes

  • fix: configure logging to avoid warnings (#​633)

🌱 Dependency bumps

  • chore(deps): bump github.com/docker/docker from 28.0.0+incompatible to 28.1.1+incompatible (#​624)
  • chore(deps): bump github.com/google/cel-go from 0.23.2 to 0.25.0 (#​625)
  • chore(deps): bump the kubernetes group across 1 directory with 7 updates (#​646)
  • chore: upgrade k8s lib and controller-runtime (#​634)
  • chore: bump golang builder image and kubectl versions (#​628)
  • chore: bump ubuntu-20.04 to -24.04 (#​627)
  • chore(deps): bump github.com/docker/docker from 27.5.1+incompatible to 28.0.0+incompatible (#​612)

Other Changes

  • docs: replace references to kuttl.dev (#​649)
  • tests: use require.NoError, enable race checker and fix a race (#​644)
  • chore: replace logkcf with Logf in a new type (#​638)
  • chore: encapsulate file name parsing (#​641)
  • docs: more info on test names and structure (#​639)
  • chore: use the Option pattern in NewCase() (#​640)
  • chore: deterimine namespace name early (#​637)
  • chore: second round of pre-factoring (#​635)
  • chore: run tests in non-verbose mode by default (#​636)
  • chore: move packages to internal (#​632)
  • chore: prefactoring for early namespace name computation (#​631)
  • chore: refactoring for the Case type (#​613)

Contributors

@​davidebianchi, @​dependabot, @​mfrehe and @​porridge

v0.22.0: kuttl-v0.22.0

Compare Source

This release only contains dependency updates, most notably includes sigs.k8s.io/kind 0.27.0 which moves to containerd 2.x and contains fixes for nerdctl.

🌱 Dependency bumps
  • chore(deps): bump github.com/spf13/cobra from 1.8.1 to 1.9.1 (#​611)
  • chore(deps): bump the kubernetes group with 8 updates (#​610)
  • chore(deps): bump github.com/google/cel-go from 0.23.0 to 0.23.2 (#​608)
  • chore(deps): bump github.com/spf13/pflag from 1.0.5 to 1.0.6 (#​607)
Contributors

@​dependabot[bot]

mikefarah/yq (mikefarah/yq)

v4.50.1: - HCL!

Compare Source

  • Added HCL Support - First cut - hopefully it works well! (#​1844)
  • Fixing handling of CRLF #​2352
  • Bumped dependencies

v4.49.2

Compare Source

v4.49.1: - Security Flags and TOML fixes

Compare Source

  • Added --security flags to disable env and file ops #​2515
    • Fixing TOML ArrayTable parsing issues #​1758
    • Fixing parsing of escaped characters #​2506

v4.48.2

Compare Source

v4.48.1: - First and Parents Operators

Compare Source

  • Added 'parents' operator, to return a list of all the hierarchical parents of a node
    • Added 'first(exp)' operator, to return the first entry matching an expression in an array
    • Fixed xml namespace prefixes #​1730 (thanks @​baodrate)
    • Fixed out of range panic in yaml decoder #​2460 (thanks @​n471d)
    • Bumped dependencies

v4.47.2

Compare Source

v4.47.1: - Merge Anchor fixes (with flag)

Compare Source

v4.46.1: - INI support + bug fixes

Compare Source

v4.45.4: - Fixing wrong map() behaviour on empty map

Compare Source

  • Fixing wrong map() behaviour on empty map #​2359
  • Bumped dependencies

v4.45.3: - Fixes regression bug(s)

Compare Source

Sorry for the regression folks! 😓
fwiw I have since added automated tests to capture the scenarios provided in the regression bug tickets

v4.45.2

Compare Source


Configuration

📅 Schedule: Branch creation - "after 1pm on Monday,before 4pm on Monday" (UTC), 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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from 9af08e6 to 865ea0a Compare March 21, 2025 08:47
@renovate renovate bot changed the title chore(deps): update dependency kudobuilder/kuttl to v0.22.0 chore(deps): update k8s related bumps Mar 21, 2025
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from 865ea0a to 7507f3f Compare March 28, 2025 09:04
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch 3 times, most recently from 87326ad to e3d71b0 Compare May 9, 2025 10:07
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from e3d71b0 to a18d9ca Compare May 11, 2025 12:38
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from a18d9ca to 18458e3 Compare May 19, 2025 10:13
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from 18458e3 to 0cf8745 Compare July 10, 2025 04:24
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch 2 times, most recently from 939b354 to 715c62d Compare July 23, 2025 15:42
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch 2 times, most recently from e34e85d to 9b4ce03 Compare September 9, 2025 02:56
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from 9b4ce03 to 640e980 Compare October 12, 2025 05:56
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch 2 times, most recently from a260e90 to f0b444f Compare November 15, 2025 07:39
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch 3 times, most recently from 292a636 to 59b3c57 Compare November 25, 2025 02:45
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch 2 times, most recently from f83eecb to 4bbbb1e Compare December 3, 2025 11:43
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from 4bbbb1e to aaba43a Compare December 14, 2025 11:08
@renovate renovate bot force-pushed the renovate/k8s-related-bumps branch from aaba43a to 06685c0 Compare December 16, 2025 15:56
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.

2 participants