Skip to content

Releases: tektoncd/pipeline

Tekton Pipeline release v0.66.0 "American Curl AL-76"

04 Dec 22:16
Compare
Choose a tag to compare

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

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677aaef800dc5c82c7e8a7dc72d7ed947dc0e166c29c7bfd9f2b6edca989022cb90c

Obtain the attestation:

REKOR_UUID=108e9186e8c5677aaef800dc5c82c7e8a7dc72d7ed947dc0e166c29c7bfd9f2b6edca989022cb90c
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.66.0/release.yaml
REKOR_UUID=108e9186e8c5677aaef800dc5c82c7e8a7dc72d7ed947dc0e166c29c7bfd9f2b6edca989022cb90c

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

  • ✨ Fix StepAction support in Cluster resolver (#8382)

Fix StepAction support in Cluster resolver

  • ✨ Expose Resolvers Controller performance tuning configurations (#8344)

We 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

  • πŸ› fix: add missing stepaction RBAC permission for resolver (#8397)

fix: include missing RBAC permission to allow cluster resolver to get and list StepActions

  • πŸ› Use io.ReadFull to read the bundle content (#8389)

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

  • πŸ› Fix StepAction support in Cluster resolver (#8382)

Fix StepAction support in Cluster resolver

  • πŸ› Fixes git-resolver configuration for serverUrl and scmType (#8401)
  • πŸ› Add Failed Validation group in message for the status message in PipelineRun (#8356)
  • πŸ› Run finally pipeline even if task is failed at the validation (#8314)

Misc

  • πŸ”¨ build(deps): bump the all group in /tekton with 2 updates (#8408)
  • πŸ”¨ build(deps): bump the all group in /tekton with 2 updates (#8406)
  • πŸ”¨ build(deps): bump github.com/golangci/golangci-lint from 1.62.0 to 1.62.2 in /tools (#8405)
  • πŸ”¨ build(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0 (#8404)
  • πŸ”¨ build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 (#8403)
  • πŸ”¨ build(deps): bump step-security/harden-runner from 2.10.1 to 2.10.2 (#8402)
  • πŸ”¨ build(deps): bump the all group in /tekton with 2 updates (#8395)
  • πŸ”¨ build(deps): bump github/codeql-action from 3.27.1 to 3.27.4 (#8394)
  • πŸ”¨ build(deps): bump github.com/golangci/golangci-lint from 1.61.0 to 1.62.0 in /tools (#8386)
  • πŸ”¨ build(deps): bump github/codeql-action from 3.27.0 to 3.27.1 (#8385)
  • πŸ”¨ build(deps): bump the all group in /tekton with 3 updates (#8384)
  • πŸ”¨ build(deps): bump tj-actions/changed-files from 45.0.3 to 45.0.4 (#8383)
  • πŸ”¨ build(deps): bump the all group in /tekton with 4 updates (#8363)
  • πŸ”¨ build(deps): bump the all group in /tekton with 4 updates (#8354)
  • πŸ”¨ build(deps): bump actions/dependency-review-action from 4.3.4 to 4.4.0 (#8353)
  • πŸ”¨ build(deps): bump actions/setup-go from 5.0.2 to 5.1.0 (#8351)
  • πŸ”¨ build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#8350)
  • πŸ”¨ build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 (#8349)

Docs

  • πŸ“– Update release.md with v0.65.0 (#8355)

Thanks

Thanks to these contributors who contributed to v0.66.0!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.65.4 "Sokoke Herbie"

05 Dec 13:12
Compare
Choose a tag to compare

-Docs @ v0.65.4
-Examples @ v0.65.4

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677ac23b9e3d80fbd75881d628aa04d6e3ed7f6d21ea46c94c4856d01cdba23ae798

Obtain the attestation:

REKOR_UUID=108e9186e8c5677ac23b9e3d80fbd75881d628aa04d6e3ed7f6d21ea46c94c4856d01cdba23ae798
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.4/release.yaml
REKOR_UUID=108e9186e8c5677ac23b9e3d80fbd75881d628aa04d6e3ed7f6d21ea46c94c4856d01cdba23ae798

# 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.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.65.x] Fixes git-resolver configuration for serverUrl and scmType (#8409)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.65.4!

Extra shout-out for awesome release notes:

Tekton Pipeline release v0.65.3 "Sokoke Herbie"

03 Dec 11:46
Compare
Choose a tag to compare

-Docs @ v0.65.3
-Examples @ v0.65.3

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a0f1febc6adf68f4220edd3a81c9a0da1f7185512b481667c6a0f076eaed75b4d

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a0f1febc6adf68f4220edd3a81c9a0da1f7185512b481667c6a0f076eaed75b4d
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.3/release.yaml
REKOR_UUID=108e9186e8c5677a0f1febc6adf68f4220edd3a81c9a0da1f7185512b481667c6a0f076eaed75b4d

# 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.3@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] fix: add missing stepaction RBAC permission for resolver (#8400)

ix: include missing RBAC permission to allow cluster resolver to get and list StepActions

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.65.3!

Extra shout-out for awesome release notes:

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.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: