Skip to content

Releases: tektoncd/pipeline

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.56.9 "Persian Terminator"

03 Dec 11:47
Compare
Choose a tag to compare

-Docs @ v0.56.9
-Examples @ v0.56.9

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677ab4262cd1303dc779dd2b6103fa7a05fb29fc2d5304a747c0ed41061c23d8302b

Obtain the attestation:

REKOR_UUID=108e9186e8c5677ab4262cd1303dc779dd2b6103fa7a05fb29fc2d5304a747c0ed41061c23d8302b
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.9/release.yaml
REKOR_UUID=108e9186e8c5677ab4262cd1303dc779dd2b6103fa7a05fb29fc2d5304a747c0ed41061c23d8302b

# 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.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.56.x] Add Failed Validation group in message for the status message in PipelineRun (#8371)
  • πŸ› [release-v0.56.x] Run finally pipeline even if task is failed at the validation (#8370)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.56.9!

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:

Tekton Pipeline release v0.64.0 "Ragamuffin Reventlov"

27 Sep 10:18
Compare
Choose a tag to compare

πŸŽ‰ Released Container Images stored on ghcr.io πŸŽ‰

-Docs @ v0.64.0
-Examples @ v0.64.0

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677ab54c658d37a263dfad3c8244bbef3e63cced8ae2d37c05701abf89bc6fa1fdf8

Obtain the attestation:

REKOR_UUID=108e9186e8c5677ab54c658d37a263dfad3c8244bbef3e63cced8ae2d37c05701abf89bc6fa1fdf8
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.64.0/release.yaml
REKOR_UUID=108e9186e8c5677ab54c658d37a263dfad3c8244bbef3e63cced8ae2d37c05701abf89bc6fa1fdf8

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

  • ✨ Implement set-security-context feature for affinity assistant containers (#8182)

Affinity Assistant containers will now have a securityContext when feature flag set-security-context is enabled in ConfigMap feature-flags.

Fixes

  • πŸ› Fix isolated workspaces ignored when using StepTemplate (#8272)

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

  • πŸ› fix(TaskRun): fixed the issue where some step statuses might not be correctly updated in failed TaskRun (#8270)

fix: fixed the issue where some step statuses might not be correctly updated in failed TaskRun

  • πŸ› fix(pipelinerun): resolve issue with PipelineRun not timing out successfully (#8236)

fix(pipelinerun): resolve issue with PipelineRun not timing out successfully

  • πŸ› fix(e2e): stabilize TestTaskRunFailure test (#8174)
  • πŸ› Mark steps as deleted when TaskRun fails (#8294)

Misc

  • πŸ”¨ Bump the all group across 1 directory with 4 updates (#8300)
  • πŸ”¨ Pin setup-go action (#8291)
  • πŸ”¨ Simply the path for the base image (#8290)
  • πŸ”¨ Bump github/codeql-action from 3.26.7 to 3.26.8 (#8289)
  • πŸ”¨ Pin alpine image used in release pipeline (#8287)
  • πŸ”¨ Update to the latest version of koparse for the release pipeline (#8285)
  • πŸ”¨ Bump google.golang.org/grpc from 1.64.1 to 1.67.0 (#8281)
  • πŸ”¨ Use the new version of koparse in the build (#8278)
  • πŸ”¨ Bump step-security/harden-runner from 2.9.1 to 2.10.1 (#8269)
  • πŸ”¨ Bump tj-actions/changed-files from 45.0.1 to 45.0.2 (#8268)
  • πŸ”¨ Bump github/codeql-action from 3.26.6 to 3.26.7 (#8267)
  • πŸ”¨ Bump the all group in /tekton with 4 updates (#8266)
  • πŸ”¨ Adapt koparse step to handle no import path (#8261)
  • πŸ”¨ Add KO_EXTRA_ARGS (#8260)
  • πŸ”¨ Propagate image registry regions to publish (#8259)
  • πŸ”¨ Fix the imageRegistryUser param usage in the release pipeline (#8256)
  • πŸ”¨ build(deps): bump the all group in /tekton with 4 updates (#8253)
  • πŸ”¨ Run build and tests conditionally (#8252)
  • πŸ”¨ Support separate bucket and image reg creds (#8251)
  • πŸ”¨ Add OCI source label to images (#8247)
  • πŸ”¨ Make image registry regions configurable (#8246)
  • πŸ”¨ build(deps): bump google.golang.org/grpc from 1.64.0 to 1.64.1 (#8245)
  • πŸ”¨ build(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.5.2 to 1.6.0 (#8244)
  • πŸ”¨ build(deps): bump github.com/hashicorp/go-retryablehttp from 0.7.6 to 0.7.7 (#8243)
  • πŸ”¨ build(deps): bump the all group across 1 directory with 4 updates (#8235)
  • πŸ”¨ build(deps): bump tj-actions/changed-files from 45.0.0 to 45.0.1 (#8233)
  • πŸ”¨ build(deps): bump github/codeql-action from 3.26.3 to 3.26.6 (#8232)

Docs

  • πŸ“– Update releases for new Tekton Pipeline Releases 0.63 (#8229)

Thanks

Thanks to these contributors who contributed to v0.64.0!

Extra shout-out for awesome release notes: