Skip to content
This repository was archived by the owner on Sep 2, 2026. It is now read-only.

Update dependency vendir to v0.46.1 - #44

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/vendir-0.x
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/vendir-0.x

Conversation

@renovate

@renovate renovate Bot commented Apr 29, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
vendir tools minor 0.45.20.46.1

Release Notes

carvel-dev/vendir (vendir)

v0.46.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/vendir/releases/download/v0.46.1/vendir-linux-amd64

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

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

Install cosign on your system https://docs.sigstore.dev/system_config/installation/

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. 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/vendir/releases/download/v0.46.1/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.46.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.46.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

Highlights:

Native FIPS 140-3 builds of vendir no longer panic when verifying git commit/tag signatures under GODEBUG=fips140=only. By default, a signature using a non-FIPS-approved algorithm (SHA-1, MD5, DSA) now fails with a clear error instead of crashing. Consumers who need to keep syncing repositories with legacy-signed history can opt in via a new config field:

git:
  verification:
    publicKeysSecretRef:
      name: my-trusted-keys
    allowLegacySignatures: true

When set, a non-approved algorithm is downgraded to a logged warning instead of failure.

New Contributors

Full Changelog: carvel-dev/vendir@v0.46.0...v0.46.1

📂 Files Checksum

133871a31862e2ea14c55e7162d5227b3b9b54774376faf2aea3f8802dd5bf2b  ./vendir-darwin-amd64
6b87a8bab7303881ebe86119fe310e27ec23d8b2afda878b3fbcd5800d737e0d  ./vendir-windows-amd64.exe
96318c8f2f6ed8b0853b5fac50e22e400af6d8fb2699835e5a8b1663db65c6a9  ./vendir-linux-amd64
b0ed7ffa337b4964e5a0b865b786e97b75e7777fb4a289f06193671b81e320a9  ./vendir-darwin-arm64
6f9b8d829fdead89b40feca901c5804826db94121abecdc6808052c3252e847b  ./vendir-linux-arm64

v0.46.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/vendir/releases/download/v0.46.0/vendir-linux-amd64

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

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

Install cosign on your system https://docs.sigstore.dev/system_config/installation/

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. 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/vendir/releases/download/v0.46.0/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.46.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.46.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
  • Adds Bearer token authentication support to vendir sync (http) @​husira #​435
  • adds support for symlink tar entry to extract as symlink @​DocX #​438
  • Other dependency bump by @​sameerforge @​joaopapereira @​CodesbyUnnati

Full Changelog: carvel-dev/vendir@v0.45.4...v0.46.0

📂 Files Checksum
5b417c837b0134fabf2c4a322db054eacb8cfbe8d0e8cbbb86afc7e4f0d625fd  ./vendir-darwin-amd64
781c0a9eafb86ddd88d078d29766f6afe5ec7b6b9a28efcb38c7a2424eb745f7  ./vendir-windows-amd64.exe
878f3c77cae21b9b63d0ea6c11454c0008d41652d2eb3d1844fdcf69cca6ae9e  ./vendir-linux-amd64
e136160aa642231c6eb1df25cbe3e57e5f3848ac0a7e7de57bbc3249fdbd800f  ./vendir-darwin-arm64
f80a27f1247ad4353b6054ca9d7e13e2511bf70c0e28d85bc314d2177ec2b0d2  ./vendir-linux-arm64

v0.45.4

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/vendir/releases/download/v0.45.4/vendir-linux-amd64

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

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

Install cosign on your system https://docs.sigstore.dev/system_config/installation/

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. 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/vendir/releases/download/v0.45.4/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.45.4/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.45.4/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

Full Changelog: carvel-dev/vendir@v0.45.3...v0.45.4

📂 Files Checksum
e0e3c327888c5ed6bec69a8cfc8a8fd978e2790078b42ee48d3015be5e499899  ./vendir-darwin-arm64
25847a9d58c44cca6f486d7c31199a2a2e15bc1be1e8adafae66a01411ea222e ./vendir-linux-arm64
39042d2ce50e2277ce262596943ebaba4a94302bb1763bde75255029018d731e  ./vendir-darwin-amd64
a052830535a86bf4654c2f891f22573f8ad525df65b08de8d190f32b52bdadd7  ./vendir-windows-amd64.exe
b71189f46b26facc6d5baeae8047fe49afd899f8125818275241a084aa2c08a1  ./vendir-linux-amd64

v0.45.3

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/vendir/releases/download/v0.45.3/vendir-linux-amd64

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

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

Install cosign on your system https://docs.sigstore.dev/system_config/installation/

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. 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/vendir/releases/download/v0.45.3/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.45.3/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.45.3/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

Full Changelog: carvel-dev/vendir@v0.45.2...v0.45.3

📂 Files Checksum
4c27422b42a83ed598e5548542c0cd19d185002f6d4ae8e12d59df27ebcdf572  ./vendir-darwin-arm64
cb951dedcf2e64d8d76cb9c205d13ce78f6a8802a74caa1205ec47bc9f2dac65  ./vendir-linux-arm64
52a584cf8c9c97b0f9693f33e404b971f3f65bff3a136d979d7b92c8a8f5cf62  ./vendir-darwin-amd64
5d73e1c1eccf245585887c99ebe004712adfaa5db66b212066df37b572475fca  ./vendir-windows-amd64.exe
7dc6dd9706170b442a7aaf3b4e29da57cca722a3252ed8f6ac9c2997e93a0aa5  ./vendir-linux-amd64


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

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

@renovate
renovate Bot force-pushed the renovate/vendir-0.x branch from 2d6adda to a3b756f Compare June 1, 2026 20:59
@renovate renovate Bot changed the title Update dependency vendir to v0.45.3 Update dependency vendir to v0.45.4 Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/vendir-0.x branch from a3b756f to 4fa0633 Compare June 8, 2026 22:49
@renovate renovate Bot changed the title Update dependency vendir to v0.45.4 Update dependency vendir to v0.46.0 Jun 8, 2026
@renovate
renovate Bot force-pushed the renovate/vendir-0.x branch from 4fa0633 to 7c3a582 Compare August 25, 2026 15:45
@renovate renovate Bot changed the title Update dependency vendir to v0.46.0 Update dependency vendir to v0.46.1 Aug 25, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants