Tektoncd Operator Versions Save

Kubernetes operator to manage installation, updation and uninstallation of tektoncd projects (pipeline, …)

tekton-operator-0.70.0

1 month ago

A Helm chart to deploy the Tekton Operator and its CRDs

v0.70.0

1 month ago

-Docs @ v0.70.0 -Examples @ v0.70.0

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.70.0/release.yaml

Attestation

The Rekor UUID for this release is ``

Obtain the attestation:

REKOR_UUID=
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/operator/previous/v0.70.0/release.yaml
REKOR_UUID=

# 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.70.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

  • :sparkles: Adds recently added pipelinerun and builder artifacts to chains spec (#1999)
Adds support for `artifacts.pipelinerun.enable-deep-inspection` and `builddefinition.buildtype` to Chains spec
  • :sparkles: Update the volumes of pipelines-scc to add support for CSI. (#1958)
SecurityContextConstraints (SCC) pipelines-scc now supports CSI Volume Types
  • :sparkles: Add OpenShift PostReconcile Extension for Results Route RBAC (#1947)
system:authenticated user can view route for Tekton Results API endpoints.
  • :sparkles: [main] add hpa under options and support pod template labels and annotations (#1942)
- Added support to update HorizontalPodAutoscaler via `options`. create HPA options is disabled see https://github.com/tektoncd/operator/issues/2002
- Added support for adding labels and annotations on Deployments and StatefulSets podTemplate via `options`.
  • :sparkles: Add config leader election configmaps (#1935)
Add config leader election configmaps for operator controller, operator webhook and proxy webhook
  • :sparkles: [main] manage pipeline console plugin deployment on openshift (#1895)

Fixes

  • :bug: Add Transformer for Watcher Container Env (#1966)
  • :bug: [main] include webhook podname in charts deployment (#1936)
  • :bug: [main] ignore nested struct in AddConfigMapValues transformer (#1848)

Misc

  • :hammer: Bump github.com/tektoncd/triggers from 0.25.3 to 0.26.0 (#1970)
  • :hammer: Bump golang.org/x/mod from 0.14.0 to 0.15.0 (#1969)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.23.0 to 0.24.0 (#1963)
  • :hammer: Bump github.com/tektoncd/pipeline from 0.55.0 to 0.56.0 (#1945)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.22.6 to 0.23.0 (#1932)
  • :hammer: Bump golang.org/x/sync from 0.5.0 to 0.6.0 (#1923)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.22.5 to 0.22.6 (#1922)
  • :hammer: Bump github.com/tektoncd/pipeline from 0.54.0 to 0.55.0 (#1908)
  • :hammer: Bump github.com/spf13/viper from 1.18.1 to 1.18.2 (#1907)
  • :hammer: Bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#1902)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.22.4 to 0.22.5 (#1901)
  • :hammer: Bump github.com/spf13/viper from 1.17.0 to 1.18.1 (#1892)
  • :hammer: Bump github.com/sigstore/cosign/v2 from 2.1.1 to 2.2.2 (#1891)
  • :hammer: Bump github.com/tektoncd/pipeline from 0.53.2 to 0.54.0 (#1889)

Docs

Thanks

Thanks to these contributors who contributed to v0.70.0!

  • :heart: @PuneetPunamiya
  • :heart: @bdellegrazie
  • :heart: @davidumea
  • :heart: @dependabot[bot]
  • :heart: @jkandasa
  • :heart: @khrm
  • :heart: @matzew
  • :heart: @piyush-garg
  • :heart: @pratap0007
  • :heart: @sabre1041
  • :heart: @savitaashture
  • :heart: @sudhishmk
  • :heart: @tekton-robot
  • :heart: @vdemeester

Extra shout-out for awesome release notes:

  • :heart_eyes: @PuneetPunamiya
  • :heart_eyes: @bdellegrazie
  • :heart_eyes: @davidumea
  • :heart_eyes: @jkandasa
  • :heart_eyes: @khrm
  • :heart_eyes: @matzew
  • :heart_eyes: @piyush-garg
  • :heart_eyes: @pratap0007
  • :heart_eyes: @sabre1041
  • :heart_eyes: @savitaashture
  • :heart_eyes: @tekton-robot

tekton-operator-0.69.1

3 months ago

A Helm chart to deploy the Tekton Operator and its CRDs

v0.69.1

3 months ago

-Docs @ v0.69.1 -Examples @ v0.69.1

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.69.1/release.yaml

Attestation

The Rekor UUID for this release is ``

Obtain the attestation:

REKOR_UUID=
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/operator/previous/v0.69.1/release.yaml
REKOR_UUID=

# 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.69.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";
done

Changes

Features

  • :sparkles: Add support to update PriorityClassName via options (#1844)
Allow to update PriorityClassName via options in Deployment and StatefulSet

Fixes

  • :bug: [release-v0.69.x] Fix config leader election configmap name (#1882)
  • :bug: ignore replicas for the resources which is managed by HPA (#1752)
 If a Deployment or StatefulSet has a Horizontal Pod Autoscaling (HPA) and is in active state, Operator will not control the replicas to that resource. However if `status.desiredReplicas` and `spec.minReplicas` not present in HPA, operator takes the control. Also if HPA disabled, operator takes control. Even though the operator takes the control, the replicas value will be adjusted to the hpa's scaling range.
  • :bug: [release-v0.69.x] fix 'G601: Implicit memory aliasing in for loop' linter issue on cabundle.go file (#1888)
  • :bug: [release-v0.69.x] fix operator webhook upgrade issue by adding unique identifier and revert gracefulTermination (#1884)
  • :bug: [release-v0.69.x] fix operator webhook installerset deletion race condition (#1875)
  • :bug: continue the post upgrade on storage migration errors (#1753)
  • :bug: fix role in openshift and include upgrade status (#1750)

Misc

  • :hammer: Bump golang.org/x/mod from 0.13.0 to 0.14.0 (#1834)
  • :hammer: Bump github.com/go-logr/zapr from 1.2.4 to 1.3.0 (#1833)
  • :hammer: Bump golang.org/x/sync from 0.4.0 to 0.5.0 (#1832)
  • :hammer: Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 (#1831)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.21.2 to 0.21.5 (#1825)
  • :hammer: Disable HTTP/2 for webhoook by updating Knative (#1822)
  • :hammer: Bump github.com/tektoncd/pipeline from 0.52.1 to 0.53.0 (#1815)
  • :hammer: Bump sigs.k8s.io/yaml from 1.3.0 to 1.4.0 (#1814)
  • :hammer: Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.7+incompatible (#1813)
  • :hammer: Bump google.golang.org/grpc from 1.58.2 to 1.58.3 (#1808)
  • :hammer: Bump github.com/tektoncd/triggers from 0.25.0 to 0.25.2 (#1802)
  • :hammer: Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#1777)
  • :hammer: Bump github.com/tektoncd/pipeline from 0.52.0 to 0.52.1 (#1776)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.21.1 to 0.21.2 (#1775)
  • :hammer: Bump golang.org/x/net from 0.15.0 to 0.17.0 (#1770)
  • :hammer: Bump golang.org/x/mod from 0.12.0 to 0.13.0 (#1765)
  • :hammer: Bump github.com/spf13/viper from 1.16.0 to 1.17.0 (#1764)
  • :hammer: Bump golang.org/x/sync from 0.3.0 to 0.4.0 (#1763)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.21.0 to 0.21.1 (#1759)
  • :hammer: Bump github.com/tektoncd/pipeline from 0.51.0 to 0.52.0 (#1708)
  • :hammer: Bump gotest.tools/v3 from 3.5.0 to 3.5.1 (#1706)
  • :hammer: Bump go.uber.org/zap from 1.25.0 to 1.26.0 (#1704)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.20.0 to 0.21.0 (#1695)
  • :hammer: Bump github.com/tektoncd/pipeline from 0.49.0 to 0.51.0 (#1658)

Docs

Thanks

Thanks to these contributors who contributed to v0.69.1!

  • :heart: @Basavaraju-G
  • :heart: @cmorinupgrade
  • :heart: @concaf
  • :heart: @dependabot[bot]
  • :heart: @github-actions[bot]
  • :heart: @jkandasa
  • :heart: @khrm
  • :heart: @piyush-garg
  • :heart: @pratap0007
  • :heart: @tekton-robot
  • :heart: @uqix
  • :heart: @vdemeester

Extra shout-out for awesome release notes:

  • :heart_eyes: @cmorinupgrade
  • :heart_eyes: @concaf
  • :heart_eyes: @jkandasa
  • :heart_eyes: @khrm
  • :heart_eyes: @piyush-garg
  • :heart_eyes: @pratap0007
  • :heart_eyes: @tekton-robot
  • :heart_eyes: @uqix

v0.68.1

5 months ago

-Docs @ v0.68.1 -Examples @ v0.68.1

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.68.1/release.yaml

Attestation

The Rekor UUID for this release is ``

Obtain the attestation:

REKOR_UUID=
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/operator/previous/v0.68.1/release.yaml
REKOR_UUID=

# 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.68.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";
done

Changes

  • bumps operand components version
  • contains bug fixes

Features

Fixes

  • :bug: [release-v0.68.x] Add list nodes rule for kubernetes-rbac (#1760)

our release note here

  • :bug: [release-v0.68.x] ignore replicas for the resources which is managed by HPA (#1755)
    If a Deployment or StatefulSet has a Horizontal Pod Autoscaling (HPA) and is in active state, Operator will not control the replicas to that resource. However if `status.desiredReplicas` and `spec.minReplicas` not present in HPA, operator takes the control. Also if HPA disabled, operator takes control. Even though the operator takes the control, the replicas value will be adjusted to the hpa's scaling range.
    
  • :bug: [release-v0.68.x] continue the post upgrade on storage migration errors (#1754)
  • :bug: [release-v0.68.x] fix role in openshift and include upgrade status (#1751)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.68.1!

  • :heart: @concaf
  • :heart: @github-actions[bot]
  • :heart: @jkandasa
  • :heart: @khrm
  • :heart: @piyush-garg
  • :heart: @pratap0007
  • :heart: @tekton-robot

Extra shout-out for awesome release notes:

  • :heart_eyes: @pratap0007
  • :heart_eyes: @tekton-robot

tekton-operator-0.68.0

6 months ago

A Helm chart to deploy the Tekton Operator and its CRDs

v0.68.0

6 months ago

-Docs @ v0.68.0 -Examples @ v0.68.0

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.68.0/release.yaml

Attestation

The Rekor UUID for this release is ``

Obtain the attestation:

REKOR_UUID=
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/operator/previous/v0.68.0/release.yaml
REKOR_UUID=

# 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.68.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

----------------------------------------------------------------------
org                      component                version             
----------------------------------------------------------------------
tektoncd                 hub                      "v1.14.0"            
tektoncd                 dashboard                "v0.39.0"           
tektoncd                 pipeline                 "v0.50.1"           
openshift-pipelines      pipelines-as-code        "0.21.0"            
tektoncd                 chains                   "v0.17.0"            
tektoncd                 results                  "v0.8.0"            
tektoncd                 triggers                 "v0.25.0"           
----------------------------------------------------------------------

Features

  • :sparkles: Enable TektonResults access by system:authenticated user (#1680)

  • :sparkles: Add informer for statefulset workloads (#1664)

    • statefulSets watches any changes to statefulSet workload
  • :sparkles: Introduce additional field options to components (#1656)

    • Includes additional field called options into each components. That will allow user to take more control on configMap, deployments and statefulSets.
    • pipeline controller replicas count can be handled under pipeline.performance.replicas.
    • action required: deployments replicas count control is taken into operator. If you have modified replicas count in your deployment, you have to update the same via TektonConfig CR, under options.
  • :sparkles: Add Google Creds for Results (#1652)

    • Pass Google creds for GCS to Results using the following properties: gcs_creds_secret_name gcs_creds_secret_key
  • :sparkles: Add Metrics for TektonResult (#1599)

    • Metrics results_reconciled added which has log_type which tells us logging type used during installtion of results.
  • :sparkles: Add Metrics for TektonChains (#1598)

    • Metrics chains_reconciled added which has {oci/pipelinerun/taskrun}_{storage/format/signer} information as metrics tags.
  • :sparkles: Access to Results Service and Route for system:authenticated user (#1682)

  • :sparkles: Add support for External DB in Tekton Results (#1654)

Fixes

  • :bug: Changing Shell Image from UBI-minimal to shell image (#1637)

    • Changing Shell Image from UBI-minimal to shell image.
  • :bug: Fix Getting Kubeclient in OpenShift Extension of Pipeline (#1544)

  • :bug: Fix Transformers for Results Configuration (#1539)

  • :bug: [main] [0.67.x] Fix Image Transforms for Results (#1532)

  • :bug: add openshift monitoring label to targetNamespace (#1530)

Misc

  • :hammer: Bump Results and Dashboard (#1678)

  • :hammer: Updated CRS for for Result (#1573)

  • :hammer: Bump github.com/tektoncd/triggers from 0.24.1 to 0.25.0 (#1662)

  • :hammer: Bump gomodules.xyz/jsonpatch/v2 from 2.3.0 to 2.4.0 (#1648)

  • :hammer: Bump go.uber.org/zap from 1.24.0 to 1.25.0 (#1645)

  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.19.2 to 0.19.4 (#1644)

  • :hammer: Bump golang.org/x/mod from 0.11.0 to 0.12.0 (#1605)

  • :hammer: Bump gotest.tools/v3 from 3.4.0 to 3.5.0 (#1603)

  • :hammer: Bump golang.org/x/sync from 0.1.0 to 0.3.0 (#1585)

  • :hammer: Bump golang.org/x/mod from 0.10.0 to 0.11.0 (#1577)

  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.19.1 to 0.19.2 (#1551)

  • :hammer: Bump github.com/tektoncd/triggers from 0.24.0 to 0.24.1 (#1550)

  • :hammer: Bump github.com/spf13/viper from 1.15.0 to 1.16.0 (#1538)

  • :hammer: Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 (#1537)

  • :hammer: Update Chains and Add Results to CSV (#1519)

  • :hammer: Remove Third Party folder (#1515)

  • :hammer: Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 (#1501)

  • :hammer: Bump gomodules.xyz/jsonpatch/v2 from 2.2.0 to 2.3.0 (#1500)

Docs

  • :book: Update Doc for TektonResult (Logging and DB) (#1572)

Thanks

Thanks to these contributors who contributed to v0.68.0!

  • :heart: @PuneetPunamiya
  • :heart: @charlesmorin
  • :heart: @concaf
  • :heart: @dependabot[bot]
  • :heart: @github-actions[bot]
  • :heart: @jimmyjones2
  • :heart: @jkandasa
  • :heart: @kahirokunn
  • :heart: @khrm
  • :heart: @piyush-garg
  • :heart: @savitaashture
  • :heart: @sm43
  • :heart: @tekton-robot
  • :heart: @vdemeester
  • :heart: @vicoooo26
  • :heart: @wolfdate25

Extra shout-out for awesome release notes:

  • :heart_eyes: @PuneetPunamiya
  • :heart_eyes: @concaf
  • :heart_eyes: @jimmyjones2
  • :heart_eyes: @jkandasa
  • :heart_eyes: @kahirokunn
  • :heart_eyes: @khrm
  • :heart_eyes: @piyush-garg
  • :heart_eyes: @savitaashture
  • :heart_eyes: @sm43
  • :heart_eyes: @tekton-robot
  • :heart_eyes: @vdemeester
  • :heart_eyes: @vicoooo26

tekton-operator-0.67.0

7 months ago

A Helm chart to deploy the Tekton Operator and its CRDs

v0.67.0

10 months ago

-Docs @ v0.67.0 -Examples @ v0.67.0

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.67.0/release.yaml

Attestation

The Rekor UUID for this release is ``

Obtain the attestation:

REKOR_UUID=
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/operator/previous/v0.67.0/release.yaml
REKOR_UUID=

# 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.67.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

----------------------------------------------------------------------
org                      component                version             
----------------------------------------------------------------------
tektoncd                 hub                      "v1.13.0"            
tektoncd                 dashboard                "v0.35.0"           
tektoncd                 pipeline                 "v0.47.0"           
openshift-pipelines      pipelines-as-code        "0.19.1"            
tektoncd                 chains                   "v0.16.0"            
tektoncd                 results                  "v0.6.0"            
tektoncd                 triggers                 "v0.24.0"           
----------------------------------------------------------------------

Features

  • :sparkles: Add Results to Operator (#1410)

Add Properties to Results for configuring API server and Logging Storage.

Fixes

Misc

  • :hammer: Fix the image in config for CSV generation (#1495)
  • :hammer: Update results to v0.6.0 (#1491)
  • :hammer: Bump github.com/docker/distribution from 2.8.1+incompatible to 2.8.2+incompatible (#1489)
  • :hammer: Bump github.com/cloudflare/circl from 1.3.2 to 1.3.3 (#1488)
  • :hammer: Bump github.com/go-logr/zapr from 1.2.3 to 1.2.4 (#1487)
  • :hammer: Bump golang.org/x/crypto from 0.8.0 to 0.9.0 (#1483)
  • :hammer: Bump google.golang.org/grpc from 1.54.0 to 1.55.0 (#1479)
  • :hammer: Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 (#1463)
  • :hammer: Bump github.com/sigstore/cosign/v2 from 2.0.0 to 2.0.2 (#1460)
  • :hammer: Bump golang.org/x/mod from 0.9.0 to 0.10.0 (#1438)
  • :hammer: Bump golang.org/x/crypto from 0.7.0 to 0.8.0 (#1435)
  • :hammer: Bump github.com/docker/docker from 20.10.21+incompatible to 20.10.24+incompatible (#1428)
  • :hammer: Bump github.com/tektoncd/triggers from 0.23.0 to 0.23.1 (#1426)
  • :hammer: Bump github.com/openshift-pipelines/pipelines-as-code from 0.17.1 to 0.17.2 (#1414)
  • :hammer: Bump sigs.k8s.io/controller-runtime from 0.14.5 to 0.14.6 (#1413)
  • :hammer: Bump google.golang.org/grpc from 1.53.0 to 1.54.0 (#1403)
  • :hammer: Bump google.golang.org/protobuf from 1.29.1 to 1.30.0 (#1392)

Docs

Thanks

Thanks to these contributors who contributed to v0.67.0!

  • :heart: @Abirdcfly
  • :heart: @PuneetPunamiya
  • :heart: @afrittoli
  • :heart: @csullivanupgrade
  • :heart: @dependabot[bot]
  • :heart: @github-actions[bot]
  • :heart: @jacksgt
  • :heart: @jkandasa
  • :heart: @khrm
  • :heart: @piyush-garg
  • :heart: @rupalibehera
  • :heart: @sabre1041
  • :heart: @savitaashture
  • :heart: @tekton-robot
  • :heart: @vdemeester

Extra shout-out for awesome release notes:

  • :heart_eyes: @PuneetPunamiya
  • :heart_eyes: @csullivanupgrade
  • :heart_eyes: @jacksgt
  • :heart_eyes: @jkandasa
  • :heart_eyes: @khrm
  • :heart_eyes: @piyush-garg
  • :heart_eyes: @rupalibehera
  • :heart_eyes: @sabre1041
  • :heart_eyes: @savitaashture
  • :heart_eyes: @vdemeester

v0.66.0

1 year ago

-Docs @ v0.66.0 -Examples @ v0.66.0

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.66.0/release.yaml

Changes

----------------------------------------------------------------------
org                      component                version             
----------------------------------------------------------------------
tektoncd                 hub                      "v1.12.0"            
tektoncd                 dashboard                "v0.33.0"           
tektoncd                 pipeline                 "v0.45.0"           
openshift-pipelines      pipelines-as-code        "0.17.1"            
tektoncd                 chains                   "v0.15.0"            
tektoncd                 results                  "v0.5.0"            
tektoncd                 triggers                 "v0.23.0"           
----------------------------------------------------------------------

Thanks

Thanks to these contributors who contributed to v0.66.0!

  • :heart: @dependabot[bot]
  • :heart: @jacksgt
  • :heart: @vdemeester

Extra shout-out for awesome release notes:

  • :heart_eyes: @vdemeester