Tekton Pipeline release v0.45.0 "Norwegian Forest Tulip"
π Propagated Parameters promoted to stable, Array Results promoted to beta, Propagated Workspaces to promoted to beta π
-Docs @ v0.45.0
-Examples @ v0.45.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.45.0/release.yaml
Attestation
The Rekor UUID for this release is 24296fb24b8ad77a1081521e24e0bdb57359c801e63b84d7de2b1cd4ef8c25004336d6fc9717ec65
Obtain the attestation:
REKOR_UUID=24296fb24b8ad77a1081521e24e0bdb57359c801e63b84d7de2b1cd4ef8c25004336d6fc9717ec65
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/pipeline/previous/v0.45.0/release.yaml
REKOR_UUID=24296fb24b8ad77a1081521e24e0bdb57359c801e63b84d7de2b1cd4ef8c25004336d6fc9717ec65
# 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.45.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
Upgrade Notices
Action Required
- Please migrate off of
pullrequests
pipelineresources
as it is removed, please refer to the doc at https://github.com/tektoncd/pipeline/blob/main/docs/pipelineresources.md#replacing-an-pullrequest-resource
Backwards incompatible changes
In current release:
- π¨
pipelinerun.status.taskRuns
andpipelinerun.status.runs
have been removed.
The pipelinerun.status.taskRuns
and pipelinerun.status.runs
fields have been removed, along with the embedded-status
feature flag. If you are using these fields in your own tooling, please migrate to using pipelinerun.status.childReferences
instead. (#6099).
Changes
Features
- β¨ TEP-0076 (array results and indexing into array) promoted to beta π (#6103)
TEP-0076 promoted to beta - Array results and indexing into an array is now possible with enable-api-fields set to beta.
- β¨ [TEP 0122] Add FeatureFlags Field to TaskRun.Status.Provenance (#6072)
Add FeatureFlags field to TaskRun.Status.Provenance
- β¨ Propagated Parameters - Stable (#6050)
Propagated Parameters is stable. This feature enables interpolating Parameters in embedded specifications to reduce verbosity in Tekton resources.
- β¨ Beta Example Tests (#6031)
Run beta example tests when enable-api-fields: beta
is set.
- β¨ Propagated Workspaces to Beta (#6030)
The feature propagated workspaces is now enabled if the feature flag, enable-api-field value is set to alpha or beta.
- β¨ Add prow env for beta integration test (#5737)
Adds pull-tekton-pipelines-beta-integration-test
- β¨ feat: support to extract init container failure message (#5646)
When an error occurs in the init container, the taskrun clearly displays the error message.
- β¨ [TEP-0089] Add a config map to support SPIRE initialization. (#5902)
Deprecation Notices
- π¨
config-trusted-resources
is deprecated
config-trusted-resources of trusted resources to store public key is deprecated and will be removed in release 0.46, please use VerificationPolicy instead (#6134).
Fixes
- π validate emit results are defined in taskspec (#6129)
Tasks results emitted in script but don't defined in taskspec will fail
- π remove results from status when type mismatched and add more logs (#6073)
taskrun results which have type mismatched are removed from taskrun status
- π Fix converted legacy bundle->remote resolver syntax to be case-insensitive for kind (#6061)
The remote bundles resolver now matches the kind value in its parameters and in bundle layers in a case-insensitive manner.
- π Increase memory limit for remote resolvers deployment (#6028)
Prevent OOM-kills of remote resolver pod when cloning large git repositories by increasing container's memory limit.
- π Add security context for example PRs using catalog git-clone (#6138)
- π Use remote resolution in release pipeline (#6027)
- π fix:the pvc creation failure does not print the success log (#5777)
- π increase the timer for reading k8s event in test (#6063)
Misc
- π¨ Mark config-trusted-resources as deprecated (#6134)
action required: config-trusted-resources of trusted resources to store public key is deprecated and will be removed in release 0.46, please use VerificationPolicy instead
- π¨ [TEP100] Remove and Fields for (#6099)
pipelinerun.status.taskruns
and pipelinerun.status.runs
are removed
- π¨ [TEP074] Remove Pullrequest-init Image (#6078)
Pullrequest image is removed. Please migrate off the Pullrequest Image.
- π¨ [TEP0100] Remove Feature Flag (#6049)
embedded-status
feature flag is removed. TaskRun and Run status will be populated only in pipelineRun.status.childReferences
.
- π¨ [TEP074] Remove Pullrequest pipelineResources (#6011)
action required: please migrate off of pullrquests
pipelineresources
as it is removed, please refer to the doc at https://github.com/tektoncd/pipeline/blob/main/docs/pipelineresources.md#replacing-an-pullrequest-resource
- π¨ cleaning up examples to avoid writing to results using path (#6098)
- π¨ Migrate Kaniko Task off ImageDigestExporter (#6094)
- π¨ [pkg/reconciler] clean up io/ioutil package (#6069)
- π¨ Clean up cloudevents package (#6065)
- π¨ Fix example customrun.yaml (#6041)
- π¨ TEP-0114: Switch to use FilterCustomRunRef - Wait Custom Task Beta (#6040)
- π¨ update object-param-result example (#6170)
- π¨ update pipeline-object-param-and-result example (#6169)
- π¨ [TEP074] Cleanup variables.md after Removal of PipelineResources (#6158)
- π¨ Bump github.com/jenkins-x/go-scm from 1.13.1 to 1.13.2 (#6156)
- π¨ Bump golang.org/x/crypto from 0.5.0 to 0.6.0 (#6149)
- π¨ Bump go.opentelemetry.io/otel/exporters/jaeger from 1.12.0 to 1.13.0 (#6148)
- π¨ Bump github.com/containerd/containerd from 1.6.16 to 1.6.17 (#6147)
- π¨ Bump github.com/emicklei/go-restful from 2.15.0+incompatible to 2.16.0+incompatible in /test/custom-task-ctrls/wait-task-beta (#6146)
- π¨ Bump github.com/go-git/go-billy/v5 from 5.4.0 to 5.4.1 (#6132)
- π¨ Bump go.opentelemetry.io/otel/sdk from 1.12.0 to 1.13.0 (#6131)
- π¨ Include CustomRuns in failed integration test YAML dump (#6124)
- π¨ Replace hardcoded value (#6122)
- π¨ add more error messages for results validation (#6119)
- π¨ Bump github.com/golangci/golangci-lint from 1.50.1 to 1.51.1 in /tools (#6115)
- π¨ Bump github.com/containerd/containerd from 1.6.15 to 1.6.16 (#6113)
- π¨ Bumb up dependency versions for wait-task custom controllers (#6108)
- π¨ Bump github.com/google/go-containerregistry from 0.12.1 to 0.13.0 (#6106)
- π¨ unit test added for task result type mismatch (#6104)
- π¨ Switch the release pipeline to use GitHub API for task resolution (#6100)
- π¨ Bump github.com/tektoncd/pipeline from 0.43.2 to 0.44.0 in /test/custom-task-ctrls/wait-task-beta (#6087)
- π¨ matrix with array results indexing (#6077)
- π¨ Bump go.opentelemetry.io/otel/exporters/jaeger from 1.11.1 to 1.12.0 (#6074)
- π¨ Add dependabot workflows for submodules. (#6068)
- π¨ updating an example pipelinerun with array indexing (#6060)
- π¨ updating an existing example pipelinerun with array results (#6055)
- π¨ Fix spammy logs (#6051)
- π¨ Adds label kind/misc to dependentbot (#6047)
- π¨ Bump github.com/jenkins-x/go-scm from 1.12.3 to 1.13.1 (#6043)
- π¨ Increase
timeout
in Conversion Integration Test to Prevent Flake (#6026) - π¨ Bump github.com/spiffe/spire-api-sdk from 1.5.2 to 1.5.4 (#5992)
Docs
- π when expressions with array results (doc and example) (#6092)
Doc update for - How to refer to an array result in when expressions?
- π Add details about deprecating feature flags and (#6070)
Deprecation Notice: the feature flag custom-task-version
will be removed in release v0.47.0.
- π updating the list of beta features (#6181)
- π Remove PipelineRunStatus from deprecation.md (#6164)
- π Move Propagated Workspaces to list of beta features (#6163)
- π chore: add link to tekton v0.40 version (#6151)
- π Add release info for v0.41.1 (#6126)
- π update pre-requsites to include checking docker is installed (#6121)
- π Pipelines Docs Cleanup (#6117)
- π Fix outdated remote resolution documentation (#6059)
- π updating an example taskrun with array parameters (#6057)
- π Update task-level compute resources docs (#6052)
- π adding section for emitting array results (#6039)
- π minor doc update for array and object results (#6038)
- π Add v0.44.0 to releases.md (#6035)
- π Update git resolver documentation (#6029)
- π Update pipelineResources deprecation (#6022)
- π Document behavior of feature-flag flips (#6017)
- π Refactor installation documentation (#5806)
Thanks
Thanks to these contributors who contributed to v0.45.0!
- β€οΈ @Abirdcfly
- β€οΈ @JeromeJu
- β€οΈ @XinruZhang
- β€οΈ @Yongxuanzhang
- β€οΈ @abayer
- β€οΈ @afrittoli
- β€οΈ @chitrangpatel
- β€οΈ @cugykw
- β€οΈ @dependabot[bot]
- β€οΈ @dibyom
- β€οΈ @geriom
- β€οΈ @jagathprakash
- β€οΈ @jerop
- β€οΈ @lbernick
- β€οΈ @my-git9
- β€οΈ @pavanstarmanwar
- β€οΈ @pritidesai
- β€οΈ @wlynch
Extra shout-out for awesome release notes:
- π @JeromeJu
- π @XinruZhang
- π @Yongxuanzhang
- π @abayer
- π @chitrangpatel
- π @cugykw
- π @jerop
- π @pritidesai