Tekton Chains release v0.16.0 "v0.16.0"
-Docs @ v0.16.0
-Examples @ v0.16.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.16.0/release.yaml
Attestation
The Rekor UUID for this release is 24296fb24b8ad77a3c42d79eba887ff35f251406199a42b1707976f80eaab969211e6db424640a52
Obtain the attestation:
REKOR_UUID=24296fb24b8ad77a3c42d79eba887ff35f251406199a42b1707976f80eaab969211e6db424640a52
rekor-cli get --uuid $REKOR_UUID --format json | jq -r .Attestation | jq .
Verify that all container images in the attestation are in the release file:
RELEASE_FILE=https://storage.googleapis.com/tekton-releases/chains/previous/v0.16.0/release.yaml
REKOR_UUID=24296fb24b8ad77a3c42d79eba887ff35f251406199a42b1707976f80eaab969211e6db424640a52
# Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGES=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|.name + ":v0.16.0@sha256:" + .digest.sha256')
# Download the release file
curl "$RELEASE_FILE" > release.yaml
# For each image in the attestation, match it to the release file
for image in $REKOR_ATTESTATION_IMAGES; do
printf $image; grep -q $image release.yaml && echo " ===> ok" || echo " ===> no match";
done
Changes
Features
-
✨ Re-add support for full task status for backward compatibility (#790)
-
✨ Set metadata completeness for parameters as true for slsav2/alpha1 (#763)
-
✨ [TEP0122] Add feature flags field to Invocation.Environment (#720)
-
✨ TEP 0122 - Adding taskspec to buildConfig and taskrunspec to parameters (#663)
Fixes
- 🐛 Bump tektoncd/pipelines dependency to v0.45 (#712)
Misc
-
🔨 Replace deprecated type/function (#779)
-
🔨 Cleanup: generics replace deprecated sets.String. (#776)
-
🔨 Hygiene: enable additional linters. (#735)
-
🔨 Hygiene: enable additional linters. (#731)
-
🔨 Add Pipelines v0.46.0 and v0.47.0 to e2e tests. (#785)
-
🔨 Bump sigstore to v1.6.3 (#784)
Docs
Thanks
Thanks to these contributors who contributed to v0.16.0!
- ❤️ @PuneetPunamiya
- ❤️ @bendory
- ❤️ @bradbeck
- ❤️ @chitrangpatel
- ❤️ @chuangw6
- ❤️ @dependabot[bot]
- ❤️ @lcarva
- ❤️ @pratap0007
- ❤️ @sallyom
- ❤️ @vdemeester
- ❤️ @wlynch
Extra shout-out for awesome release notes:
- 😍 @PuneetPunamiya
- 😍 @bendory
- 😍 @bradbeck
- 😍 @chitrangpatel
- 😍 @chuangw6
- 😍 @dependabot[bot]
- 😍 @lcarva
- 😍 @pratap0007
- 😍 @sallyom
- 😍 @vdemeester
- 😍 @wlynch