Releases: tektoncd/pipeline
Tekton Pipeline release v0.66.0 "American Curl AL-76"
-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!
- β€οΈ @AverageMarcus
- β€οΈ @PuneetPunamiya
- β€οΈ @dependabot[bot]
- β€οΈ @divyansh42
- β€οΈ @khrm
- β€οΈ @vdemeester
Extra shout-out for awesome release notes:
- π @AverageMarcus
- π @khrm
- π @vdemeester
Tekton Pipeline release v0.65.4 "Sokoke Herbie"
-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!
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
Tekton Pipeline release v0.65.3 "Sokoke Herbie"
-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!
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @tekton-robot
Tekton Pipeline release v0.65.2 "Sokoke Herbie"
-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!
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @tekton-robot
Tekton Pipeline release v0.62.6 "Ragamuffin Reventlov"
-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!
- β€οΈ @l-qing
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @tekton-robot
Tekton Pipeline release v0.59.5 "Scottish Fold Sox"
-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!
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @tekton-robot
Tekton Pipeline release v0.65.1 "Sokoke Herbie LTS"
-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!
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @tekton-robot
Tekton Pipeline release v0.62.5 "Ragamuffin Reventlov"
-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!
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @tekton-robot
Tekton Pipeline release v0.56.9 "Persian Terminator"
-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!
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
Tekton Pipeline release v0.65.0 "Sokoke Herbie LTS"
-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!
- β€οΈ @SaschaSchwarze0
- β€οΈ @afrittoli
- β€οΈ @dependabot[bot]
- β€οΈ @piyush-garg
- β€οΈ @pramodbindal
- β€οΈ @tarilabs
- β€οΈ @vdemeester
Extra shout-out for awesome release notes:
- π @afrittoli
- π @piyush-garg