github.com/tektoncd/chains
v0.29.2
#2976 most downloaded on Go modules
tektoncd/chains
What this package is like to depend on
Last release 5 days ago
19 Aug 2026
Ships on a steady schedule
a new release about every 2 weeks
Rarely documented
notes for 10 of 64 stable releases
Nothing withdrawn
no release was ever pulled
6 years old
325 releases · first in 2020
56 releases in the last 12 months
see the full history below
Release timeline
325 releases · Jun 2020 to Aug 2026Releases
latest 60 of 325-
v0.29.217 Aug 2026Release notes
Open source →Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.29.2/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677adf3b6f09e69381e572cbe7c66ffcdb4e3f8b8c121ac1f021e919ad471890a80cObtain the attestation:
REKOR_UUID=108e9186e8c5677adf3b6f09e69381e572cbe7c66ffcdb4e3f8b8c121ac1f021e919ad471890a80c 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.29.2/release.yaml REKOR_UUID=108e9186e8c5677adf3b6f09e69381e572cbe7c66ffcdb4e3f8b8c121ac1f021e919ad471890a80c # 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.29.2@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
- 🔨 chore(deps): bump the all group with 4 updates (#1887)
Docs
Thanks
Thanks to these contributors who contributed to v0.29.2!
- ❤️ @app/dependabot
Extra shout-out for awesome release notes:
-
v0.29.111 Aug 2026Release notes
Open source →Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.29.1/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a85df9927c244d661ca9d8b61ba7ac58ac047b90e70618d9a2a8b23d521c9741cObtain the attestation:
REKOR_UUID=108e9186e8c5677a85df9927c244d661ca9d8b61ba7ac58ac047b90e70618d9a2a8b23d521c9741c 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.29.1/release.yaml REKOR_UUID=108e9186e8c5677a85df9927c244d661ca9d8b61ba7ac58ac047b90e70618d9a2a8b23d521c9741c # 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.29.1@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
- 🔨 chore(deps): bump the all group with 5 updates (#1880)
- 🔨 chore(deps): bump the all group across 1 directory with 7 updates (#1877)
Docs
Thanks
Thanks to these contributors who contributed to v0.29.1!
- ❤️ @app/dependabot
Extra shout-out for awesome release notes:
-
v0.29.1-0.20260819113835-f24a07fd347e19 Aug 2026 pre-releaseNothing published for this version
-
v0.29.1-0.20260817090215-c072726dfa8e17 Aug 2026 pre-releaseNothing published for this version
-
v0.29.1-0.20260813162015-38e04e2282c513 Aug 2026 pre-releaseNothing published for this version
-
v0.29.1-0.20260813064813-f7d1ba729df413 Aug 2026 pre-releaseNothing published for this version
-
v0.29.1-0.20260810063812-0548d01edb0110 Aug 2026 pre-releaseNothing published for this version
-
v0.29.1-0.20260805140811-c467a021c21705 Aug 2026 pre-releaseNothing published for this version
-
v0.29.004 Aug 2026Release notes
Open source →Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.29.0/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a82aef8db00e95c000a21e72f54ff0b2efbee3300c0f3bdc2a30a7f9485d76641Obtain the attestation:
REKOR_UUID=108e9186e8c5677a82aef8db00e95c000a21e72f54ff0b2efbee3300c0f3bdc2a30a7f9485d76641 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.29.0/release.yaml REKOR_UUID=108e9186e8c5677a82aef8db00e95c000a21e72f54ff0b2efbee3300c0f3bdc2a30a7f9485d76641 # 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.29.0@sha256:" + .digest.sha256') # Download the release file curl -L "$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
- ✨ feat: add OCI 1.1 Referrers API support with configurable encoding format (#1691)
feat: OCI storage now supports the OCI 1.1 Referrers API via a new config key:
Set
storage.oci.encoding-format: sigstore-bundlein thechains-configConfigMap
to store signatures and attestations as Sigstore protobuf bundles (v0.3) via the
OCI 1.1 Referrers API instead of.sig/.atttags.- Default value
dssepreserves existing tag-based behavior (backward compatible). sigstore-bundlemode: both signatures and attestations are pushed as OCI 1.1 referrers withartifactType: application/vnd.dev.sigstore.bundle.v0.3+json, discoverable viaoras discoverorcosign download.- Transparency log entries (Rekor) are embedded in the bundle when
transparency.enabled: "true". - Verification:
cosign verifyandcosign verify-attestationwork with both modes. - Re-signing in
sigstore-bundlemode accumulates referrers (one per signing invocation) because ECDSA is non-deterministic; the dedup only coalesces exact crash-recovery retries. - Invalid values for
storage.oci.encoding-formatare rejected by the controller at config-load time; the last valid config continues to be used.
Fixes
-
🐛 fix(release): stop duplicating GitHub release title (#1851)
-
🐛 fix(storage): skip docdb watcher reconfiguration on empty file read (#1769)
-
🐛 fix(signing): make KMS OIDC fallback test environment-independent (#1765)
Misc
-
🔨 chore(deps): bump github.com/tektoncd/pipeline from v1.14.1 to v1.15.0 (#1854)
-
🔨 Ignore otel major/minor updates in dependabot (#1817)
-
🔨 fix-CVE-2026-48702 -bump sigstore/rekor (#1793)
-
🔨 chore(deps): bump the all group with 8 updates (#1849)
-
🔨 chore(deps): bump github.com/sigstore/sigstore-go from 1.1.4 to 1.2.1 (#1844)
-
🔨 chore(deps): bump the all group across 1 directory with 6 updates (#1840)
-
🔨 chore(deps): bump github.com/google/cel-go from 0.28.1 to 0.29.0 (#1839)
-
🔨 chore(deps): bump the all group with 4 updates (#1833)
-
🔨 chore(deps): bump google.golang.org/grpc from 1.82.0 to 1.82.1 (#1825)
-
🔨 chore(deps): bump the all group with 3 updates (#1824)
-
🔨 chore(deps): bump the all group with 5 updates (#1808)
-
🔨 chore(deps): bump the all group with 3 updates (#1788)
-
🔨 chore(deps): bump the all group across 1 directory with 21 updates (#1768)
-
🔨 chore(deps): bump the all group with 2 updates (#1763)
Docs
Thanks
Thanks to these contributors who contributed to v0.29.0!
- ❤️ @Liu-ko
- ❤️ @SAY-5
- ❤️ @ab-ghosh
- ❤️ @anithapriyanatarajan
- ❤️ @app/dependabot
- ❤️ @arpitjain099
- ❤️ @infernus01
- ❤️ @jkhelil
- ❤️ @khrm
- ❤️ @lcarva
- ❤️ @ngelman1
- ❤️ @vdemeester
Extra shout-out for awesome release notes:
- 😍 @Liu-ko
- 😍 @SAY-5
- 😍 @ab-ghosh
- 😍 @anithapriyanatarajan
- 😍 @arpitjain099
- 😍 @infernus01
- 😍 @jkhelil
- 😍 @khrm
- 😍 @lcarva
- 😍 @ngelman1
- 😍 @vdemeester
-
v0.28.211 Aug 2026Release notes
Open source →Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.28.2/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a44d1ba000f12caf9ef979748d70bf0519cdd5db8791da8a43064b4fe8e6f3521Obtain the attestation:
REKOR_UUID=108e9186e8c5677a44d1ba000f12caf9ef979748d70bf0519cdd5db8791da8a43064b4fe8e6f3521 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.28.2/release.yaml REKOR_UUID=108e9186e8c5677a44d1ba000f12caf9ef979748d70bf0519cdd5db8791da8a43064b4fe8e6f3521 # 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.28.2@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
- 🐛 [cherry-pick: release-v0.28.x] fix(release): stop duplicating GitHub release title (#1852)
Misc
- 🔨 chore(deps): bump the all group with 7 updates (#1879)
Docs
Thanks
Thanks to these contributors who contributed to v0.28.2!
- ❤️ @app/dependabot
- ❤️ @jkhelil
Extra shout-out for awesome release notes:
- 😍 @jkhelil
-
v0.28.114 Jul 2026Release notes
Open source →Tekton Chains release v0.28.1 "Release v0.28.1"
-Docs @ v0.28.1
-Examples @ v0.28.1Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.28.1/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a6e885c752c61a6e3bc899f7b45150eb9e2c98cf8143bb5170747fa6dfd277f9fObtain the attestation:
REKOR_UUID=108e9186e8c5677a6e885c752c61a6e3bc899f7b45150eb9e2c98cf8143bb5170747fa6dfd277f9f 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.28.1/release.yaml REKOR_UUID=108e9186e8c5677a6e885c752c61a6e3bc899f7b45150eb9e2c98cf8143bb5170747fa6dfd277f9f # 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.28.1@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
Docs
Thanks
Thanks to these contributors who contributed to v0.28.1!
- ❤️ @ngelman1
Extra shout-out for awesome release notes:
-
v0.28.010 Jul 2026Nothing published for this version
-
v0.27.628 Jul 2026Release notes
Open source →Tekton Chains release v0.27.6 "Release v0.27.6"
-Docs @ v0.27.6
-Examples @ v0.27.6Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.27.6/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a9db3c6e6d9b630fd76e7aa682bf1a0a8693a2435cf41c61afce1149e6ec13ab7Obtain the attestation:
REKOR_UUID=108e9186e8c5677a9db3c6e6d9b630fd76e7aa682bf1a0a8693a2435cf41c61afce1149e6ec13ab7 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.27.6/release.yaml REKOR_UUID=108e9186e8c5677a9db3c6e6d9b630fd76e7aa682bf1a0a8693a2435cf41c61afce1149e6ec13ab7 # 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.27.6@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
- 🔨 chore(deps): bump the all group across 1 directory with 9 updates (#1842)
Docs
Thanks
Thanks to these contributors who contributed to v0.27.6!
- ❤️ @app/dependabot
- ❤️ @infernus01
Extra shout-out for awesome release notes:
-
v0.27.523 Jul 2026Release notes
Open source →Tekton Chains "Release v0.27.5"
-Docs @ v0.27.5
-Examples @ v0.27.5Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.27.5/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677ac62881930cba2e52a43acd4fdee65e9d2c840210f9a86db3f12722307a5cf0f6Obtain the attestation:
REKOR_UUID=108e9186e8c5677ac62881930cba2e52a43acd4fdee65e9d2c840210f9a86db3f12722307a5cf0f6 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.27.5/release.yaml REKOR_UUID=108e9186e8c5677ac62881930cba2e52a43acd4fdee65e9d2c840210f9a86db3f12722307a5cf0f6 # 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.27.5@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
- 🔨 chore(deps): bump chainguard-dev/actions/kind-diag from 1.6.26 to 1.6.27 in the all group (#1819)
- 🔨 chore(deps): bump sigstore/scaffolding/actions/setup from 0.7.33 to 0.7.37 in the all group (#1806)
Docs
Thanks
Thanks to these contributors who contributed to v0.27.5!
- ❤️ @app/dependabot
Extra shout-out for awesome release notes:
-
v0.27.414 Jul 2026Nothing published for this version
-
v0.27.309 Jul 2026Nothing published for this version
-
v0.27.224 Jun 2026Nothing published for this version
-
v0.27.108 Jun 2026Nothing published for this version
-
v0.27.1-0.20260803063007-cb6a244f895e03 Aug 2026 pre-releaseNothing published for this version
-
v0.27.1-0.20260728125206-0b97f8620a6d28 Jul 2026 pre-releaseNothing published for this version
-
v0.27.1-0.20260717080201-dbcab312b07a17 Jul 2026 pre-releaseNothing published for this version
-
v0.27.1-0.20260710092842-9c537538a67f10 Jul 2026 pre-releaseNothing published for this version
-
v0.27.1-0.20260709110843-e6fbad8626ec09 Jul 2026 pre-releaseNothing published for this version
-
v0.27.1-0.20260702001039-2ec4b4dcb76602 Jul 2026 pre-releaseNothing published for this version
-
v0.27.1-0.20260608111230-21bc33ac11d408 Jun 2026 pre-releaseNothing published for this version
-
v0.27.1-0.20260528072626-2a68e6a99a2928 May 2026 pre-releaseNothing published for this version
-
v0.27.026 May 2026Nothing published for this version
-
v0.26.905 Aug 2026Release notes
Open source →Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.26.9/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a9be065f521117233096593bc64a7419eea1647e468ad275d48d8f7592282ff69Obtain the attestation:
REKOR_UUID=108e9186e8c5677a9be065f521117233096593bc64a7419eea1647e468ad275d48d8f7592282ff69 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.9/release.yaml REKOR_UUID=108e9186e8c5677a9be065f521117233096593bc64a7419eea1647e468ad275d48d8f7592282ff69 # 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.9@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
- 🔨 chore(deps): bump the all group with 7 updates (#1858)
- 🔨 chore(deps): bump chainguard-dev/actions/kind-diag from 1.6.27 to 1.6.28 in the all group (#1846)
Docs
Thanks
Thanks to these contributors who contributed to v0.26.9!
- ❤️ @app/dependabot
Extra shout-out for awesome release notes:
-
v0.26.828 Jul 2026Release notes
Open source →Tekton Chains release v0.26.8 "Release v0.26.8"
-Docs @ v0.26.8
-Examples @ v0.26.8Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.26.8/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a9395f9f057d95f07be1c614f3e459d16f00ad07648f4e78de6c4aa62ff0bf98dObtain the attestation:
REKOR_UUID=108e9186e8c5677a9395f9f057d95f07be1c614f3e459d16f00ad07648f4e78de6c4aa62ff0bf98d 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.8/release.yaml REKOR_UUID=108e9186e8c5677a9395f9f057d95f07be1c614f3e459d16f00ad07648f4e78de6c4aa62ff0bf98d # 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.8@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
- 🔨 chore(deps): bump the all group across 1 directory with 3 updates (#1836)
Docs
Thanks
Thanks to these contributors who contributed to v0.26.8!
- ❤️ @app/dependabot
Extra shout-out for awesome release notes:
-
v0.26.723 Jul 2026Release notes
Open source →Tekton Chains "Release v0.26.7"
-Docs @ v0.26.7
-Examples @ v0.26.7Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.26.7/release.yaml
Attestation
The Rekor UUID for this release is
108e9186e8c5677a40d0a42a05fb5a94465d14cfd90ef06403eb7ed300ba6402c4f38d8b70978d33Obtain the attestation:
REKOR_UUID=108e9186e8c5677a40d0a42a05fb5a94465d14cfd90ef06403eb7ed300ba6402c4f38d8b70978d33 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.7/release.yaml REKOR_UUID=108e9186e8c5677a40d0a42a05fb5a94465d14cfd90ef06403eb7ed300ba6402c4f38d8b70978d33 # 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.7@sha256:" + .digest.sha256') # Download the release file curl -L "$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
Fixes
Misc
- 🔨 chore(deps): bump chainguard-dev/actions/kind-diag from 1.6.26 to 1.6.27 in the all group (#1818)
- 🔨 chore(deps): bump github.com/sigstore/cosign/v2 from 2.6.3 to 2.6.4 in the all group (#1812)
- 🔨 chore(deps): bump sigstore/scaffolding/actions/setup from 0.7.33 to 0.7.37 in the all group (#1805)
Docs
Thanks
Thanks to these contributors who contributed to v0.26.7!
- ❤️ @app/dependabot
Extra shout-out for awesome release notes:
-
v0.26.609 Jul 2026Nothing published for this version
-
v0.26.512 Jun 2026Nothing published for this version
-
v0.26.414 May 2026Nothing published for this version
-
v0.26.316 Apr 2026Nothing published for this version
-
v0.26.205 Feb 2026Nothing published for this version
-
v0.26.127 Jan 2026Nothing published for this version
-
v0.26.1-0.20260518072621-12e6db02f76a18 May 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260422073109-7290445c35b822 Apr 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260410090900-fc64ff40d6ff10 Apr 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260330090854-31743e62801b30 Mar 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260327122653-53834cb7da6627 Mar 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260324115451-8e8b95a5920a24 Mar 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260217065237-a4ed4a20c87517 Feb 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260204104313-60afd54a61a704 Feb 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260122101911-9309310537d122 Jan 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260120151135-99e2f1c7e79e20 Jan 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260113180707-5abdfb66535813 Jan 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260113180505-aec00d5467bc13 Jan 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20260107164101-0e98b570184d07 Jan 2026 pre-releaseNothing published for this version
-
v0.26.1-0.20251113100631-3754523be62213 Nov 2025 pre-releaseNothing published for this version
-
v0.26.1-0.20251110063629-37297be81bb610 Nov 2025 pre-releaseNothing published for this version
-
v0.26.1-0.20251105114900-21dfd1e9597705 Nov 2025 pre-releaseNothing published for this version
-
v0.26.005 Nov 2025Nothing published for this version
-
v0.25.221 Apr 2026Nothing published for this version
-
v0.25.119 May 2025Nothing published for this version
-
v0.25.1-0.20250530055451-3fcd2cbbc13730 May 2025 pre-releaseNothing published for this version
-
v0.25.1-0.20250514053418-c601c10baee614 May 2025 pre-releaseNothing published for this version
-
v0.25.006 May 2025Nothing published for this version
-
v0.24.1-0.20250211185052-1ccf29bf2b5011 Feb 2025 pre-releaseNothing published for this version
-
v0.24.011 Feb 2025Nothing published for this version