Skip to content

v0.55.2

Latest

Choose a tag to compare

@github-actions github-actions released this 14 Aug 06:45
8561900

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.55.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.55.2/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.55.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.55.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 go to v1.26.3 by @sameerforge in #988
  • Bump OSS components github.com/hashicorp/go-version to v1.7.0 and github.com/BurntSuhi/toml to v1.5.0 by @G-Gobi in #993
  • Reduce allocation size when emitting yaml by @emh-jump in #995
  • Allow md5.sum() to run under strict FIPS 140-3 enforcement by @sameerforge in #1001

New Contributors

Full Changelog: v0.55.1...v0.55.2

📂 Files Checksum

270f4446e8aefe6c73e5ac1901f60eb325213a9ba4d654c66bc028a1ec6056f8  ./ytt-windows-arm64.exe
7ca5bc2c8f7f854ac88d2e66c9ffd4a13439597fc2c32b342691e46a488318eb  ./ytt-windows-amd64.exe
32aa25be4f624d202059d82890f986ef96100ce7b031b17e3d5ce3298094cc25  ./ytt-linux-riscv64
6b09566cd9cbe90050c8685889aa1eef050c3f1168809df2486062e8a3ed1ec0 ./ytt-linux-arm64
512cc21193d3b0ce307b6e8db6ba8d40831f16e02526e1c753416456ea4319af ./ytt-linux-amd64
4a61ebc3cace9ed6c1f2d4cc7285589e85c58869d96bc36cb0d09987ec14fcd1 ./ytt-darwin-arm64
b7b8435cd5cca719b933b0bc846a0f872bd2ed0c68fa9b74ec8369bef2ac0987 ./ytt-darwin-amd64