Releases: tektoncd/chains
Tekton Chains release v0.26.0 "v0.26.0"
-Docs @ v0.26.0
-Examples @ v0.26.0
Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.26.0/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677a3a5e8bb8eccd3483eb9d0f120eed8ee76c47fef28d1d49f3a738d7999b241fdc
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a3a5e8bb8eccd3483eb9d0f120eed8ee76c47fef28d1d49f3a738d7999b241fdc
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://infra.tekton.dev/tekton-releases/chains/previous/v0.26.0/release.yaml
REKOR_UUID=108e9186e8c5677a3a5e8bb8eccd3483eb9d0f120eed8ee76c47fef28d1d49f3a738d7999b241fdc
# 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.26.0@sha256:" + .digest.sha256')
# Download the release file
curl -LO "$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";
doneChanges
Features
- Allows users to disable image signing while still enabling provenance generation and attestation signing(#1419)
- Keyless Signing Change (Cosign v2.6.0). Chains now uses Cosign v2.6.0, which no longer accepts HS256 JWT tokens(#1441)
Affected: Private OIDC providers using HS256
Not affected: Public Sigstore (Fulcio) , Key-based signing , Private OIDC using RS256
Action Required: - If your OIDC provider uses HS256, switch to RS256 before upgrading. All other users can upgrade safely.
Fixes
Misc
-
π¨ Pin actions by commit SHA (#1453)
-
π¨ Add GitHub Actions workflow for go coverage job (#1447)
-
π¨ Remove ttl.sh dependency for microshift gh action (#1396)
-
π¨ Add path to taskrun finalizer name (#1391)
-
π¨ Run e2e tests on microshift (#1383)
-
π¨ Fix subpath capitalisation (#1358)
-
π¨ Bump the all group across 1 directory with 23 updates (#1424)
-
π¨ Bump chainguard-dev/actions from e0505cd917df3f8bd6fbf5a78c075de1ba4fcc63 to 3998adea1311c21a09c05d5749b154d2206e902b (#1360)
-
π¨ Bump the all group across 1 directory with 16 updates (#1359)
-
π¨ Bump chainguard-dev/actions from f3c4f016161c129594cb6a27d9339fc04b8aba54 to e0505cd917df3f8bd6fbf5a78c075de1ba4fcc63 (#1356)
-
π¨ Bump chainguard-dev/actions from 9c0be1ee0103db886d1887d114ec97f8766b7ef8 to f3c4f016161c129594cb6a27d9339fc04b8aba54 (#1352)
Docs
- π Fix link to keyless signing doc (#1400)
Thanks
Thanks to these contributors who contributed to v0.26.0!
- β€οΈ @AlanGreene
- β€οΈ @PuneetPunamiya
- β€οΈ @aThorp96
- β€οΈ @anithapriyanatarajan
- β€οΈ @arewm
- β€οΈ @dependabot[bot]
- β€οΈ @enarha
- β€οΈ @jinjingroad
- β€οΈ @jkhelil
- β€οΈ @khrm
- β€οΈ @l-qing
- β€οΈ @lcarva
- β€οΈ @mathur07
- β€οΈ @overallteach
- β€οΈ @st3penta
- β€οΈ @tylerauerbeck
- β€οΈ @waveywaves
Extra shout-out for awesome release notes:
- π @AlanGreene
- π @PuneetPunamiya
- π @aThorp96
- π @anithapriyanatarajan
- π @arewm
- π @enarha
- π @jinjingroad
- π @jkhelil
- π @khrm
- π @l-qing
- π @lcarva
- π @mathur07
- π @overallteach
- π @st3penta
- π @tylerauerbeck
- π @waveywaves
Tekton Chains release v0.25.1 "v0.25.1"
-Docs @ v0.25.1
-Examples @ v0.25.1
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.25.1/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677aa8cbf847acc4ce0aed8e3b794dcb0f8e20e495c9a994ca636d04b6d2680d0227
Obtain the attestation:
REKOR_UUID=108e9186e8c5677aa8cbf847acc4ce0aed8e3b794dcb0f8e20e495c9a994ca636d04b6d2680d0227
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.25.1/release.yaml
REKOR_UUID=108e9186e8c5677aa8cbf847acc4ce0aed8e3b794dcb0f8e20e495c9a994ca636d04b6d2680d0227
# 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.25.1@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";
doneChanges
Thanks
Thanks to these contributors who contributed to v0.25.1!
- β€οΈ @savitaashture
Extra shout-out for awesome release notes:
- π @savitaashture
Tekton Chains release v0.25.0 "v0.25.0"
-Docs @ v0.25.0
-Examples @ v0.25.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.25.0/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677a76acbea0b7deeb21ada0fccb6951454f25f003ffd4e70762f5c602492e43749f
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a76acbea0b7deeb21ada0fccb6951454f25f003ffd4e70762f5c602492e43749f
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.25.0/release.yaml
REKOR_UUID=108e9186e8c5677a76acbea0b7deeb21ada0fccb6951454f25f003ffd4e70762f5c602492e43749f
# 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.25.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";
doneChanges
Features
Misc
-
π¨ Consume release pipeline images and task bundles from GHCR (#1330)
-
π¨ Bump chainguard-dev/actions from 9ba949ac63357c725a9438f3e05a1e33d313498e to 9c0be1ee0103db886d1887d114ec97f8766b7ef8 (#1349)
-
π¨ Bump the all group across 1 directory with 26 updates (#1347)
-
π¨ Bump ko-build/setup-ko from 0.8 to 0.9 (#1339)
-
π¨ Bump imjasonh/setup-ko from 0.8 to 0.9 (#1338)
-
π¨ Bump github.com/golang-jwt/jwt/v4 from 4.5.1 to 4.5.2 (#1328)
Docs
- π Add ghcr.io migration banner to README.md. (#1335)
Thanks
Thanks to these contributors who contributed to v0.25.0!
- β€οΈ @AlanGreene
- β€οΈ @PuneetPunamiya
- β€οΈ @abhishek-ghosh-codes
- β€οΈ @anithapriyanatarajan
- β€οΈ @dependabot[bot]
- β€οΈ @mikhailswift
- β€οΈ @riskrose
- β€οΈ @teslaedison
- β€οΈ @twoGiants
Extra shout-out for awesome release notes:
- π @AlanGreene
- π @PuneetPunamiya
- π @abhishek-ghosh-codes
- π @anithapriyanatarajan
- π @mikhailswift
- π @riskrose
- π @teslaedison
- π @twoGiants
Tekton Chains release v0.24.0 "v0.24.0"
-Docs @ v0.24.0
-Examples @ v0.24.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.24.0/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677a78ff0273140a120730eca2b803dfc0fc1a07dfd419735c6f3a0119881c505a95
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a78ff0273140a120730eca2b803dfc0fc1a07dfd419735c6f3a0119881c505a95
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.24.0/release.yaml
REKOR_UUID=108e9186e8c5677a78ff0273140a120730eca2b803dfc0fc1a07dfd419735c6f3a0119881c505a95
# 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.24.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";
doneChanges
Misc
-
π¨ Update go to 1.23 and plumbing vendoring (#1284)
-
π¨ Bump the all group across 1 directory with 9 updates (#1302)
-
π¨ Bump golangci/golangci-lint-action from 6.1.0 to 6.2.0 (#1290)
-
π¨ Bump ko-build/setup-ko from 0.7 to 0.8 (#1289)
-
π¨ Bump imjasonh/setup-ko from 0.7 to 0.8 (#1288)
-
π¨ Bump the all group across 1 directory with 16 updates (#1287)
-
π¨ Bump the all group across 1 directory with 9 updates (#1271)
-
π¨ Bump the all group across 1 directory with 7 updates (#1263)
-
π¨ Bump the all group across 1 directory with 13 updates (#1257)
-
π¨ Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#1240)
Docs
- π Add buildType for Chains format slsa/v2alpha2 (SLSAv1.0 predicate). (#906)
Thanks
Thanks to these contributors who contributed to v0.24.0!
- β€οΈ @PuneetPunamiya
- β€οΈ @afrittoli
- β€οΈ @chitrangpatel
- β€οΈ @dependabot[bot]
- β€οΈ @jkhelil
- β€οΈ @lcarva
- β€οΈ @morri-son
Extra shout-out for awesome release notes:
- π @PuneetPunamiya
- π @afrittoli
- π @chitrangpatel
- π @jkhelil
- π @lcarva
- π @morri-son
Tekton Chains release v0.23.1 "v0.23.1"
-Docs @ v0.23.1
-Examples @ v0.23.1
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.23.1/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677abb59fa4c082fc973d07d8056d1ef35e04aa8a6f1b25c41ff1401dfc6b7614b74
Obtain the attestation:
REKOR_UUID=108e9186e8c5677abb59fa4c082fc973d07d8056d1ef35e04aa8a6f1b25c41ff1401dfc6b7614b74
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.23.1/release.yaml
REKOR_UUID=108e9186e8c5677abb59fa4c082fc973d07d8056d1ef35e04aa8a6f1b25c41ff1401dfc6b7614b74
# 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.23.1@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";
doneChanges
Fixes
- π [release-v0.23.x] fix nil pointer (#1249)
Thanks
Thanks to these contributors who contributed to v0.23.1!
- β€οΈ @lcarva
- β€οΈ @savitaashture
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @lcarva
- π @savitaashture
- π @tekton-robot
Tekton Chains release v0.22.3 "v0.22.3"
-Docs @ v0.22.3
-Examples @ v0.22.3
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.22.3/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677abc5f8010a0a21be4daa53325a217f4df92955848f73f226c6ed054c429fb9f82
Obtain the attestation:
REKOR_UUID=108e9186e8c5677abc5f8010a0a21be4daa53325a217f4df92955848f73f226c6ed054c429fb9f82
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.22.3/release.yaml
REKOR_UUID=108e9186e8c5677abc5f8010a0a21be4daa53325a217f4df92955848f73f226c6ed054c429fb9f82
# 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.22.3@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";
doneChanges
Fixes
Misc
- π¨ Upgrade golang.org/x/crypto to 0.31.0 (#1269)
Thanks
Thanks to these contributors who contributed to v0.22.3!
- β€οΈ @jkhelil
- β€οΈ @lcarva
- β€οΈ @savitaashture
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @jkhelil
- π @lcarva
- π @savitaashture
- π @tekton-robot
Tekton Chains release v0.23.0 "v0.23.0"
-Docs @ v0.23.0
-Examples @ v0.23.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.23.0/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677ab986b84dbd84e8bcaeb653ee623796517fd53400ea437f6eb4623849befd0dfb
Obtain the attestation:
REKOR_UUID=108e9186e8c5677ab986b84dbd84e8bcaeb653ee623796517fd53400ea437f6eb4623849befd0dfb
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.23.0/release.yaml
REKOR_UUID=108e9186e8c5677ab986b84dbd84e8bcaeb653ee623796517fd53400ea437f6eb4623849befd0dfb
# 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.23.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";
doneChanges
Features
- β¨ Support mongo server url path (#1213)
Fixes
- π Fix nil pointer dereference when taksrun is canceled (#1237)
- π Fix mapping between Status.Steps and Status.TaskSpec.Steps (#1188)
Misc
- π¨ Controller image is now available at ghcr.io/tektoncd/chains/controller-92006fd957c0afd31de6a40b3e33b39f
Docs
- π Added visual guide representing chains config options (#1183)
Thanks
Thanks to these contributors who contributed to v0.23.0!
- β€οΈ @AlanGreene
- β€οΈ @PuneetPunamiya
- β€οΈ @afrittoli
- β€οΈ @anithapriyanatarajan
- β€οΈ @dependabot[bot]
- β€οΈ @jkhelil
- β€οΈ @lcarva
- β€οΈ @vdemeester
Extra shout-out for awesome release notes:
- π @AlanGreene
- π @PuneetPunamiya
- π @afrittoli
- π @anithapriyanatarajan
- π @jkhelil
- π @lcarva
- π @vdemeester
Tekton Chains release v0.22.2 "v0.22.2"
-Docs @ v0.22.2
-Examples @ v0.22.2
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.22.2/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677a49be2ef4baa7ddffeee2ddd856775f64215023ef1e11a91ef48873740f2d8c6c
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a49be2ef4baa7ddffeee2ddd856775f64215023ef1e11a91ef48873740f2d8c6c
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.22.2/release.yaml
REKOR_UUID=108e9186e8c5677a49be2ef4baa7ddffeee2ddd856775f64215023ef1e11a91ef48873740f2d8c6c
# 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.22.2@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";
doneChanges
Features
Fixes
- π Fix missing platforms in controller image 1212
Thanks
Thanks to these contributors who contributed to v0.22.2!
- β€οΈ @lcarva
Extra shout-out for awesome release notes:
- π @lcarva
Tekton Chains release v0.22.1 "v0.22.1"
-Docs @ v0.22.1
-Examples @ v0.22.1
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.22.1/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677afcb66d14b0e3bffb5169977777bdbce07d4e4f5a11265d612dfca2e7b92d70d4
Obtain the attestation:
REKOR_UUID=108e9186e8c5677afcb66d14b0e3bffb5169977777bdbce07d4e4f5a11265d612dfca2e7b92d70d4
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.22.1/release.yaml
REKOR_UUID=108e9186e8c5677afcb66d14b0e3bffb5169977777bdbce07d4e4f5a11265d612dfca2e7b92d70d4
# 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.22.1@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";
doneChanges
Features
Fixes
- π Fix nil-pointer error when mapping Status.Steps to Status.TaskSpec.Steps (#1203)
Thanks
Thanks to these contributors who contributed to v0.22.1!
- β€οΈ @jkhelil
Extra shout-out for awesome release notes:
- π @jkhelil
Tekton Chains release v0.22.0 "v0.22.0"
-Docs @ v0.22.0
-Examples @ v0.22.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.22.0/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677ac79d95cacbef63aabcf5ee0d85a766a74682843083420ed17a445a797f31fd9c
Obtain the attestation:
REKOR_UUID=108e9186e8c5677ac79d95cacbef63aabcf5ee0d85a766a74682843083420ed17a445a797f31fd9c
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.22.0/release.yaml
REKOR_UUID=108e9186e8c5677ac79d95cacbef63aabcf5ee0d85a766a74682843083420ed17a445a797f31fd9c
# 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.22.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";
doneChanges
Features
Fixes
-
π Calculate subjects per formatter (#1132)
-
π Fix no repeated subjects for v2alpha4 pipelineruns (#1130)
-
π Fix field names in generated json statement (#1129)
Docs
Thanks
Thanks to these contributors who contributed to v0.22.0!
- β€οΈ @PuneetPunamiya
- β€οΈ @anithapriyanatarajan
- β€οΈ @chitrangpatel
- β€οΈ @concaf
- β€οΈ @dependabot[bot]
- β€οΈ @jkhelil
- β€οΈ @lcarva
- β€οΈ @renzodavid9
- β€οΈ @tarilabs
Extra shout-out for awesome release notes:
- π @PuneetPunamiya
- π @anithapriyanatarajan
- π @chitrangpatel
- π @concaf
- π @dependabot[bot]
- π @jkhelil
- π @lcarva
- π @renzodavid9
- π @tarilabs