Skip to content

Tags: tektoncd/pipeline

Tags

v0.65.0

Toggle v0.65.0's commit message
Fix golangci-lint issues

Signed-off-by: Vincent Demeester <[email protected]>

v0.62.4

Toggle v0.62.4's commit message
Backport release "scripts" changes from main…

… as we switch to ghcr.io, we need those to be updated to work as they
are referered during releases.

Signed-off-by: Vincent Demeester <[email protected]>

v0.59.4

Toggle v0.59.4's commit message
Backport release "scripts" changes from main…

… as we switch to ghcr.io, we need those to be updated to work as they
are referered during releases.

Signed-off-by: Vincent Demeester <[email protected]>

v0.56.8

Toggle v0.56.8's commit message
Backport release "scripts" changes from main…

… as we switch to ghcr.io, we need those to be updated to work as they
are referered during releases.

Signed-off-by: Vincent Demeester <[email protected]>

v0.53.9

Toggle v0.53.9's commit message
Backport release "scripts" changes from main…

… as we switch to ghcr.io, we need those to be updated to work as they
are referered during releases.

Signed-off-by: Vincent Demeester <[email protected]>

v0.64.0

Toggle v0.64.0's commit message
build(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azidentity

Bumps [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) from 1.5.2 to 1.6.0.
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/internal/v1.5.2...sdk/azcore/v1.6.0)

---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

v0.62.3

Toggle v0.62.3's commit message
Fix Artifact type to a pointer

Prior to this, the Artifacts in TaskRunStatusFields was not set to
a pointer of the underlying struct. As a result, it was incompatible
with `tkn`. Here we fix that issue by updating it to a `pointer`.

(cherry picked from commit c910594)
Signed-off-by: Vincent Demeester <[email protected]>

v0.63.0

Toggle v0.63.0's commit message
Fix Artifact type to a pointer

Prior to this, the Artifacts in TaskRunStatusFields was not set to
a pointer of the underlying struct. As a result, it was incompatible
with `tkn`. Here we fix that issue by updating it to a `pointer`.

v0.62.2

Toggle v0.62.2's commit message
check namespace config for node throttle metric

Now that @vdemeester 's fix so that the background metric polling goroutines for pipelinerunmetrics and taskrunmetrics can access config.observability, we can properly address issue around verifiying non-default config around adding the namespace label for the node and quota throttle metrics that @divyansh42 @khrm and myself discovered last week.

Signed-off-by: gabemontero <[email protected]>

rh-pre-commit.version: 2.3.1
rh-pre-commit.check-secrets: ENABLED

v0.56.7

Toggle v0.56.7's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Refine check if the result is from a matrix task

Given a matrix run of a TaskRun with cardinality of 1, the result from
it will not be converted to an array but kept as a string, i.e. as if
the TaskRun was not configured to run with matrix.

This causes issues for consumers of the TaskRun's results as they will
be configured to consume array results. As a result making the passed
value equal to expression value instead.

Resolves: #8157