-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Comparing changes
Open a pull request
base repository: tektoncd/pipeline
base: main
head repository: tektoncd/pipeline
compare: release-v1.3.x
- 9 commits
- 23 files changed
- 6 contributors
Commits on Aug 5, 2025
-
Fix tini-git image to be multi-arch
The previous image was built for amd64 only, which makes any image using it as base image (such as the resolvers one) also only targeting amd64. Signed-off-by: Vincent Demeester <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a53cdad - Browse repository at this point
Copy the full SHA a53cdadView commit details
Commits on Aug 20, 2025
-
fix: exclude pending PipelineRuns from tekton_pipelines_controller_ru…
…nning_pipelineruns metric The running_pipelineruns metric incorrectly counted pending PipelineRuns as running. Add !pr.IsPending() check to exclude them. Fixes #8949 Signed-off-by: divyansh42 <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5b024a6 - Browse repository at this point
Copy the full SHA 5b024a6View commit details
Commits on Sep 4, 2025
-
Disable the Gitea e2e tests temporarily to unblock
This disables the Gitea e2e tests temporarily to unblock temporarily. Gitea chart has changed. We are working to include that soon.
Configuration menu - View commit details
-
Copy full SHA for 3d4874f - Browse repository at this point
Copy the full SHA 3d4874fView commit details -
check initContainers for kubernetes sidecar implementation
This code checks if all containers in a Pod, including init containers, have completed their execution before marking a TaskRun as complete when kubernetes native sidecar is enabled. It's part of the TaskRun status determination logic. Signed-off-by: Priti Desai <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f2d8d3d - Browse repository at this point
Copy the full SHA f2d8d3dView commit details -
Do not fail PipelineRun if pvc creation error is because of exceeded …
…quotas In case of the PVC creation (from volumeclaimtemplate) is due to a quota error (quota exceeded), do not fail with a permanent error, and instead mark the PipelineRun as pending. Once there is some quota available back, it will be able to start. Signed-off-by: Vincent Demeester <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ea3dc05 - Browse repository at this point
Copy the full SHA ea3dc05View commit details -
Refactor CreatePVCFromVolumClaimTemplate condition logic
Co-authored-by: Stanislav Jakuschevskij <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f224e9b - Browse repository at this point
Copy the full SHA f224e9bView commit details
Commits on Sep 9, 2025
-
fix: allow finalizer updates on completed TaskRuns
Similar to issue #8824 for PipelineRuns, the webhook was denying finalizer updates on completed TaskRuns. The validation webhook was blocking all updates when TaskRun.IsDone() returned true, preventing tools like Tekton Chains from clearing finalizers. To ensure we don't have old obj default drift, we are adding a fast path check for spec equality and are normalizing the old spec with current defaults before comparison. Then we allow updates when only finalizers differ and reject spec changes. This mirrors the fix applied to PipelineRun validation.
Configuration menu - View commit details
-
Copy full SHA for c76e840 - Browse repository at this point
Copy the full SHA c76e840View commit details -
fix: allow finalizer updates on completed PipelineRuns
fixes issue #8824 where webhook denied finalizer updates on completed PipelineRuns. The validation webhook was blocking all updates when PipelineRun.IsDone() returned true, preventing from clearing finalizers to make sure that we don't have old obj default drift we are adding a fast path check for spec equality and are normalizing the old spec with current defaults before comparison. Then we allow updates when only finalizers differ and reject spec changes Signed-off-by: Vibhav Bobade <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 49ae750 - Browse repository at this point
Copy the full SHA 49ae750View commit details -
fix: update tests after cherrypicking from PR 9011
added strings package import to v1/pipelinerun_validation_test.go and v1beta1/pipelinerun_validation_test.go replaced all t.Context() calls with context.Background() in test files (this method doesn't exist in the testing package) removed TestPipelineRunTaskRunSpecTimeout_Validate from both v1 and v1beta1 test files as it referenced a non-existent Timeout field in PipelineTaskRunSpec
Configuration menu - View commit details
-
Copy full SHA for 9ba3a79 - Browse repository at this point
Copy the full SHA 9ba3a79View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff main...release-v1.3.x