v0.49.0
github-actions
released this
16 Apr 06:45
·
15 commits
to develop
since this release
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.49.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.49.0/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.49.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.49.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 an optional boolean to not escape html during json encoding by @WnP in #891
- don't modify input when converting to orderedmap by @notoriaga in #870
- Update copyright headers by @prashantrewar in #900
- Export named validations to openApi properties by @peschmae in #899
- Bumping go version to 1.22.2 by @rcmadhankumar in #908
- Refactor openapi validation gen to avoid mutation inside GetValueType() by @cppforlife in #904
New Contributors
- @WnP made their first contribution in #891
- @notoriaga made their first contribution in #870
- @peschmae made their first contribution in #899
Full Changelog: v0.48.0...v0.49.0
📂 Files Checksum
0658db4af8263ca091ca31e4b599cb40c324b75934660a4c0ed98ad9b701f7e9 ./ytt-darwin-arm64
357ec754446b1eda29dd529e088f617e85809726c686598ab03cfc1c79f43b56 ./ytt-linux-amd64
71b5ea38bfc7a9748c35ce0735fd6f806dce46bd5c9039d527050c7682e62a70 ./ytt-darwin-amd64
75db553804956df279d0121067f4b052c539b2fafb4d5beff11ddb6792f30775 ./ytt-windows-arm64.exe
a0e8140e1924db591994a7063dc2ea38256ee0aabda650820dd69fac8d20c077 ./ytt-windows-amd64.exe
a2d195b058884c0e36a918936076965b8efb426f7e00f6b7d7b99b82737c7299 ./ytt-linux-arm64