Skip to content

Tags: tektoncd/pipeline

Tags

v0.69.0

build(deps): bump k8s.io/client-go from 0.31.4 to 0.31.6

Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.31.4 to 0.31.6.
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.31.4...v0.31.6)

---
updated-dependencies:
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

v0.68.0

test: check for circular dependency in stepaction validation

Signed-off-by: Vibhav Bobade <vibhav.bobde@gmail.com>

v0.65.6

fix: avoid panic when validate enum param with special matrix task

fix #8464

If the matrix Task has no TaskRun to execute, the `ResolvedTask` will be
nil, we should skip the validation.

v0.62.8

fix: avoid panic when validate enum param with special matrix task

fix #8464

If the matrix Task has no TaskRun to execute, the `ResolvedTask` will be
nil, we should skip the validation.

v0.62.7

lint: for loop in plateDebugScriptInContainers

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>

v0.65.5

.github/workflows: run on the "current" pull_request

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>

v0.66.0

build(deps): bump github/codeql-action from 3.27.4 to 3.27.5

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.27.4 to 3.27.5.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@ea9e4e3...f09c1c0)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

v0.65.4

Fixes git-resolver configuration for serverUrl and scmType

With the latest support for multiple git providers in git-resolvers,
it was having a regression issue where if value serverUrl was not given
then it used to return an error

Hence this patch fixes the issue to avoid regression

Signed-off-by: PuneetPunamiya <ppunamiy@redhat.com>

v0.65.3

fix: add missing stepaction RBAC permission for resolver

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>

v0.65.2

Use io.ReadFull to read the bundle content

The io.Reader documentation says:

> Read reads up to len(p) bytes into p. It returns the number of bytes
> read (0 <= n <= len(p)) and any error encountered. ... If some data is
> available but not len(p) bytes, Read conventionally returns what is
> available instead of waiting for more.

Read is not guaranteed to fill the data argument. Use io.ReadFull to
fill the buffer.

In some cases (a relatively big bundle), the bundle content was not
completely read and it would fail to parse. Using `io.ReadFull` fixes
the issue.

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>