Skip to content

Releases: tektoncd/pipeline

Tekton Pipeline release v0.65.2 "Sokoke Herbie"

19 Nov 09:09
Compare
Choose a tag to compare

-Docs @ v0.65.2
-Examples @ v0.65.2

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a153542f1de8a93c4ac314c1ca01c0ed45edf9ffac3faa701ddcd02600c3f452f

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a153542f1de8a93c4ac314c1ca01c0ed45edf9ffac3faa701ddcd02600c3f452f
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.65.2/release.yaml
REKOR_UUID=108e9186e8c5677a153542f1de8a93c4ac314c1ca01c0ed45edf9ffac3faa701ddcd02600c3f452f

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

Changes

Features

Fixes

  • 🐛 [release-v0.65.x] Use io.ReadFull to read the bundle content (#8390)

ix an issue on bundle list command with relatively big bundles that couldn't be parsed (truncated data)

  • 🐛 [release-v0.65.x] Fix StepAction support in Cluster resolver (#8387)

ix StepAction support in Cluster resolver

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.65.2!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.62.6 "Ragamuffin Reventlov"

20 Nov 07:44
Compare
Choose a tag to compare

-Docs @ v0.62.6
-Examples @ v0.62.6

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677af1a0ed2d80855987d4306c847fcf23a27a17cf11a60feff4f8bfb6a0918063a7

Obtain the attestation:

REKOR_UUID=108e9186e8c5677af1a0ed2d80855987d4306c847fcf23a27a17cf11a60feff4f8bfb6a0918063a7
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.62.6/release.yaml
REKOR_UUID=108e9186e8c5677af1a0ed2d80855987d4306c847fcf23a27a17cf11a60feff4f8bfb6a0918063a7

# 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.62.6@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

Fixes

  • 🐛 [release-v0.62.x] Use io.ReadFull to read the bundle content (#8391)

ix an issue on bundle list command with relatively big bundles that couldn't be parsed (truncated data)

  • 🐛 fix(pipelinerun): resolve issue with PipelineRun not timing out successfully (#8376)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.62.6!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.59.5 "Scottish Fold Sox"

20 Nov 07:44
Compare
Choose a tag to compare

-Docs @ v0.59.5
-Examples @ v0.59.5

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a1f8744f6588cc007827d8dd1258b1a40f4fa900cb5013240e9eb375d4be4f7e9

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a1f8744f6588cc007827d8dd1258b1a40f4fa900cb5013240e9eb375d4be4f7e9
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.59.5/release.yaml
REKOR_UUID=108e9186e8c5677a1f8744f6588cc007827d8dd1258b1a40f4fa900cb5013240e9eb375d4be4f7e9

# 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.59.5@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

Fixes

  • 🐛 [release-v0.59.x] Use io.ReadFull to read the bundle content (#8392)

ix an issue on bundle list command with relatively big bundles that couldn't be parsed (truncated data)

  • 🐛 [release-v0.59.x] Add Failed Validation group in message for the status message in PipelineRun (#8374)
  • 🐛 [release-v0.59.x] Run finally pipeline even if task is failed at the validation (#8369)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.59.5!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.65.1 "Sokoke Herbie LTS"

06 Nov 08:15
Compare
Choose a tag to compare

-Docs @ v0.65.1
-Examples @ v0.65.1

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677abd62783f1c644771b33f78da6ddf96863355b36a2807c1f93a433eb1e2babdeb

Obtain the attestation:

REKOR_UUID=108e9186e8c5677abd62783f1c644771b33f78da6ddf96863355b36a2807c1f93a433eb1e2babdeb
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.65.1/release.yaml
REKOR_UUID=108e9186e8c5677abd62783f1c644771b33f78da6ddf96863355b36a2807c1f93a433eb1e2babdeb

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

  • ✨ [release-v0.65.x] Expose Resolvers Controller performance tuning configurations (#8364)

e can specify custom performance tuning values in the watcher's deployment - controller container via threads-per-controller, kube-api-qps and kube-api-burst flags.

Fixes

  • 🐛 [release-v0.65.x] Add Failed Validation group in message for the status message in PipelineRun (#8372)
  • 🐛 [release-v0.65.x] Run finally pipeline even if task is failed at the validation (#8367)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.65.1!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.62.5 "Ragamuffin Reventlov"

06 Nov 08:15
Compare
Choose a tag to compare

-Docs @ v0.62.5
-Examples @ v0.62.5

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a02a8666fc6bbbd2549e455aac7f2fb8f4cf66f07b8e0c6dd992c7e05ec7ba52a

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a02a8666fc6bbbd2549e455aac7f2fb8f4cf66f07b8e0c6dd992c7e05ec7ba52a
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.62.5/release.yaml
REKOR_UUID=108e9186e8c5677a02a8666fc6bbbd2549e455aac7f2fb8f4cf66f07b8e0c6dd992c7e05ec7ba52a

# 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.62.5@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

  • ✨ [release-v0.62.x] Expose Resolvers Controller performance tuning configurations (#8365)

e can specify custom performance tuning values in the watcher's deployment - controller container via threads-per-controller, kube-api-qps and kube-api-burst flags.

Fixes

  • 🐛 [release-v0.62.x] Add Failed Validation group in message for the status message in PipelineRun (#8373)
  • 🐛 [release-v0.62.x] Run finally pipeline even if task is failed at the validation (#8368)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.62.5!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.65.0 "Sokoke Herbie LTS"

28 Oct 14:52
Compare
Choose a tag to compare

-Docs @ v0.65.0
-Examples @ v0.65.0

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677aad7a1878b454249eae3ea9a5ff3b0eef665d0995b57a367880b4b34fbd42a3b4

Obtain the attestation:

REKOR_UUID=108e9186e8c5677aad7a1878b454249eae3ea9a5ff3b0eef665d0995b57a367880b4b34fbd42a3b4
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.65.0/release.yaml
REKOR_UUID=108e9186e8c5677aad7a1878b454249eae3ea9a5ff3b0eef665d0995b57a367880b4b34fbd42a3b4

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

  • ✨ Add support for priorityClassName in affinityAssistantPodTemplate (#8286)

Add support for priorityClassName in affinityAssistantPodTemplate

This will help to specify default priorityClassName in affinity assistant podTemplate for affinity assistant pods.
Also value specified in pipelinerun/taskrun will be used for both affinity assistant pods and taskrun pods.

  • ✨ Add support for multiple git resolver configurations (#8263)

Add support for multiple git resolver configurations

  • ✨ Add Metrics for Running PipelinesRuns at Pipeline and Namespace level (#8280)

Fixes

Misc

  • 🔨 build(deps): bump the all group in /tekton with 4 updates (#8342)
  • 🔨 build(deps): bump the all group in /tekton with 4 updates (#8331)
  • 🔨 build(deps): bump github/codeql-action from 3.26.12 to 3.26.13 (#8330)
  • 🔨 build(deps): bump actions/upload-artifact from 4.4.1 to 4.4.3 (#8329)
  • 🔨 build(deps): bump actions/cache from 4.1.0 to 4.1.1 (#8328)
  • 🔨 tekton: update bugfix-release.sh script for ghcr.io (#8323)
  • 🔨 build(deps): bump actions/cache from 4.0.2 to 4.1.0 (#8321)
  • 🔨 build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.1 (#8320)
  • 🔨 build(deps): bump tj-actions/changed-files from 45.0.2 to 45.0.3 (#8319)
  • 🔨 build(deps): bump github/codeql-action from 3.26.10 to 3.26.12 (#8318)
  • 🔨 build(deps): bump actions/checkout from 4.2.0 to 4.2.1 (#8317)
  • 🔨 build(deps): bump the all group across 1 directory with 4 updates (#8316)
  • 🔨 build(deps): bump actions/setup-go from 5.0.0 to 5.0.2 (#8309)
  • 🔨 build(deps): bump github/codeql-action from 3.26.8 to 3.26.10 (#8308)
  • 🔨 build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (#8307)
  • 🔨 build(deps): bump github.com/golangci/golangci-lint from 1.60.3 to 1.61.0 in /tools (#8254)
  • 🔨 Improve how gosec G115 findings are addressed (#8250)
  • 🔨 build(deps): bump actions/upload-artifact from 4.3.6 to 4.4.0 (#8231)

Docs

  • 📖 Update the release cheat-sheet (#8302)

Container images in the release are stored in ghcr.io,

  • 📖 docs: fix formatting in artifacts.md (#8326)
  • 📖 Improve git resolver docs (#8311)
  • 📖 Update releases.md with v0.64.0 (#8304)

Thanks

Thanks to these contributors who contributed to v0.65.0!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.62.4 "Ragamuffin Reventlov"

17 Oct 08:55
Compare
Choose a tag to compare

-Docs @ v0.62.4
-Examples @ v0.62.4

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a294d223044005f4caffd3b6b20afcfcc96849fd9b2cdbcb170ca741ab440fb83

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a294d223044005f4caffd3b6b20afcfcc96849fd9b2cdbcb170ca741ab440fb83
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.62.4/release.yaml
REKOR_UUID=108e9186e8c5677a294d223044005f4caffd3b6b20afcfcc96849fd9b2cdbcb170ca741ab440fb83

# 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.62.4@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

Fixes

  • 🐛 [release-v0.62.x] Fix isolated workspaces ignored when using StepTemplate (#8273)

solated workspaces are now correctly set when using in conjuction with StepTemplate

  • 🐛 [release-v0.62.x] Mark steps as deleted when TaskRun fails (#8295)

Misc

  • 🔨 [release-v0.62.x] Backport release "scripts" changes from main… (#8332)

Docs

Thanks

Thanks to these contributors who contributed to v0.62.4!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.59.4 "Scottish Fold Sox"

17 Oct 08:55
Compare
Choose a tag to compare

-Docs @ v0.59.4
-Examples @ v0.59.4

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677ac434e5a611e150eb519bc1caa8020f7c0cbc114f780104b2ea371633e61c4fed

Obtain the attestation:

REKOR_UUID=108e9186e8c5677ac434e5a611e150eb519bc1caa8020f7c0cbc114f780104b2ea371633e61c4fed
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.59.4/release.yaml
REKOR_UUID=108e9186e8c5677ac434e5a611e150eb519bc1caa8020f7c0cbc114f780104b2ea371633e61c4fed

# 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.59.4@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

Fixes

  • 🐛 [release-v0.59.x] Fix isolated workspaces ignored when using StepTemplate (#8275)

Isolated workspaces are now correctly set when using in conjuction with StepTemplate

  • 🐛 [release-v0.59.x] pkg/taskrunmetrics/fake shouldn't be imported… (#8189)
  • 🐛 [release-v0.59.x] Mark steps as deleted when TaskRun fails (#8296)

Misc

  • 🔨 [release-v0.59.x] Backport release "scripts" changes from main… (#8333)

Docs

Thanks

Thanks to these contributors who contributed to v0.59.4!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.56.8 "Persian Terminator"

17 Oct 08:54
Compare
Choose a tag to compare

-Docs @ v0.56.8
-Examples @ v0.56.8

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a5b4581e15383f9656d8670176e2efc73ddba6d9d589cbbc9cf01b11134735ff9

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a5b4581e15383f9656d8670176e2efc73ddba6d9d589cbbc9cf01b11134735ff9
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.56.8/release.yaml
REKOR_UUID=108e9186e8c5677a5b4581e15383f9656d8670176e2efc73ddba6d9d589cbbc9cf01b11134735ff9

# 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.56.8@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

Fixes

  • 🐛 [release-v0.56.x] Fix isolated workspaces ignored when using StepTemplate (#8276)

Isolated workspaces are now correctly set when using in conjuction with StepTemplate

  • 🐛 [release-v0.56.x] pkg/taskrunmetrics/fake shouldn't be imported… (#8190)
  • 🐛 [release-v0.56.x] Mark steps as deleted when TaskRun fails (#8297)

Misc

  • 🔨 [release-v0.56.x] Backport release "scripts" changes from main… (#8334)

Docs

Thanks

Thanks to these contributors who contributed to v0.56.8!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.53.9 "Chartreux Rachael"

17 Oct 08:53
Compare
Choose a tag to compare

-Docs @ v0.53.9
-Examples @ v0.53.9

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677af0438dbd9a6a78cfff85c4f50e776ded7dc354778dc0fecd5adb124d07763c11

Obtain the attestation:

REKOR_UUID=108e9186e8c5677af0438dbd9a6a78cfff85c4f50e776ded7dc354778dc0fecd5adb124d07763c11
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.53.9/release.yaml
REKOR_UUID=108e9186e8c5677af0438dbd9a6a78cfff85c4f50e776ded7dc354778dc0fecd5adb124d07763c11

# 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.53.9@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

Fixes

  • 🐛 [release-v0.53.x] Fix isolated workspaces ignored when using StepTemplate (#8277)

Isolated workspaces are now correctly set when using in conjuction with StepTemplate

  • 🐛 [release-v0.53.x] pkg/taskrunmetrics/fake shouldn't be imported… (#8191)
  • 🐛 [release-v0.53.x] Mark steps as deleted when TaskRun fails (#8299)

Misc

  • 🔨 [release-v0.53.x] Backport release "scripts" changes from main… (#8335)

Docs

Thanks

Thanks to these contributors who contributed to v0.53.9!

Extra shout-out for awesome release notes: