Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components.nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ pipelines-as-code:
version: nightly
pruner:
github: tektoncd/pruner
version: v0.3.4
version: v0.3.5
2 changes: 1 addition & 1 deletion components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pipelines-as-code:
version: v0.39.3
pruner:
github: tektoncd/pruner
version: v0.3.4
version: v0.3.5
results:
github: tektoncd/results
version: v0.17.2
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ require (
github.com/stretchr/testify v1.11.1
github.com/tektoncd/pipeline v1.7.0
github.com/tektoncd/plumbing v0.0.0-20250805154627-25448098dea2
github.com/tektoncd/pruner v0.3.4
github.com/tektoncd/pruner v0.3.5
github.com/tektoncd/triggers v0.34.0
go.opencensus.io v0.24.0
go.uber.org/zap v1.27.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2623,8 +2623,8 @@ github.com/tektoncd/pipeline v1.7.0 h1:+Rd/YGpxV8sgEmW9unSiS8RgBE4DqbPdz6zPh2pYD
github.com/tektoncd/pipeline v1.7.0/go.mod h1:+HsDce5knjq77Xv9FWg1W2wTuJRznR9lLEbkVjo62lU=
github.com/tektoncd/plumbing v0.0.0-20250805154627-25448098dea2 h1:v4UPEbe6MEto5i4ELtiXWBxUAUIAWL5U1DznfPhi4WE=
github.com/tektoncd/plumbing v0.0.0-20250805154627-25448098dea2/go.mod h1:BC6F3DlZc+wpUT9YcwG9MoSfb4tUiH2olB9xYoIsB4I=
github.com/tektoncd/pruner v0.3.4 h1:C2M8VtqAwjxFCAhoD97mYypzF/J5ck03/+mme0bHmWQ=
github.com/tektoncd/pruner v0.3.4/go.mod h1:JbH3IueCWn1rdawvEkM4oyO05lW/ae7GXV4vrUvu4ls=
github.com/tektoncd/pruner v0.3.5 h1:eQTgnQ56Par9d/6BICsXfTkR0Ybx8c/0QLZeNoJnaYQ=
github.com/tektoncd/pruner v0.3.5/go.mod h1:JbH3IueCWn1rdawvEkM4oyO05lW/ae7GXV4vrUvu4ls=
github.com/tektoncd/triggers v0.34.0 h1:CuhG1moThPGEMlxPUcoBDDplJ3FAczzF8MMAjGScRY0=
github.com/tektoncd/triggers v0.34.0/go.mod h1:iHqwCaS2ElaWt2RuxCbrHNd5lMfRzPxihqEEygkVn1w=
github.com/thales-e-security/pool v0.0.2 h1:RAPs4q2EbWsTit6tpzuvTFlgFRJ3S8Evf5gtvVDbmPg=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ spec:
- Tekton Hub (tech-preview): v1.23.5
- Tekton Results (tech-preview): v0.17.2
- Manual Approval Gate (tech-preview): v0.7.0
- Tekton Pruner: v0.3.4
- Tekton Pruner: v0.3.5

## Getting Started

Expand Down
4 changes: 2 additions & 2 deletions pkg/reconciler/common/releases_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

const (
VERSION = "0.15.2"
PRUNER_VERSION = "0.3.4"
PRUNER_VERSION = "0.3.5"
)

func TestGetLatestRelease(t *testing.T) {
Expand All @@ -50,7 +50,7 @@ func TestListReleases(t *testing.T) {
util.AssertDeepEqual(t, version, expectedVersionList)

// Pruner Versions
expectedPrunerVersions := []string{"0.3.4", "0.3.3", "0.1.0"}
expectedPrunerVersions := []string{"0.3.5", "0.3.4", "0.3.3", "0.1.0"}
version, err = allReleases(&v1alpha1.TektonPruner{})
util.AssertEqual(t, err, nil)
util.AssertDeepEqual(t, version, expectedPrunerVersions)
Expand Down
Loading
Loading