Releases: openshift-pipelines/pipelines-as-code
v0.37.0
Pipelines as Code version v0.37.0
OpenShift Pipelines as Code v0.37.0 has been released π₯³
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.37.0/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.37.0/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-37-0.pipelines-as-code.pages.dev
Changes since v0.36.0
π Features & Enhancements
-
π Structured Logging: Structured logging now includes repository context for improved readability and debugging. (5949341)
-
ποΈ Artifact Hub Support: Support has been added for resolving tasks and pipelines from Artifact Hub. (5034528)
-
ποΈ Jira Integration: You can now create Jira tickets directly from pull request comments. (5e98945)
-
βοΈ Customizable CR Names: Added template support for customizing the names of auto-configured Repository CRs. (1ba08cf)
-
π Relative Task Resolution: Support has been added for fetching remote tasks using relative URLs. (8c752e3)
-
β οΈ CEL Error Reporting: Invalid CEL expression errors are now reported as comments directly on the pull request. (c0f65c7) -
π GitHub API Monitoring: Implemented intelligent monitoring and instrumentation for GitHub API calls in E2E tests. (15d764c, 8346f33, bc8e716)
-
π» Cursor IDE Rules: Comprehensive development and linting rules have been added for the Cursor IDE. (32e2093)
-
π§© Payload Parsing Enhancement: The ParsePayload function has been enhanced to use a more direct client function for API calls. (db0e832)
-
π§ͺ Improved Error Clarity: Error messages for commit info have been clarified and new tests have been added. (f3a73b4)
π Bug Fixes
-
π‘οΈ Webhook Secret Validation: A guard has been added to prevent a controller crash when checking webhook secrets for nil responses on GitHub. (e18edee)
-
π Concurrency Deadlock: A deadlock in the concurrency tryAcquire method has been prevented. (d1ea889)
-
π PipelineRun Annotation: The PipelineRun is now correctly annotated when the "started" status is reported. (a1d7e4e)
-
π€ Missing .tekton Directory: Fixed an issue where pull requests could remain in a 'pending' state indefinitely if the repository - was missing a .tekton directory. (846416e)
-
π€« YAML Validation Noise: Validation errors are no longer incorrectly reported for non-Tekton resources, reducing noise. (4f415fb)
-
πΊ Homebrew Packaging: Resolved issues with Homebrew packaging and updated the cask installation documentation. (ecd0637, 3639f67)
-
ποΈ Bitbucket DC Branch Deletion: Branch deletion events, which do not contain a commit SHA, are now correctly ignored to prevent processing errors. (7340740)
π§Ή Housekeeping & CI
-
π¦ E2E Test Triggers: E2E tests are now triggered more efficiently, running only when workflow files change and based on the author's association with the repository. (a5b9453, f120625)
-
β Commit Validation: Commit and pull request title validation in the CI has been improved and unified. (fe32890, ce23998)
-
π§ Git-Clone Task Path: The git-clone task location has been updated to its new canonical path. (0ad67b6)
-
β»οΈ Finalizer Naming: The controller's finalizer name has been updated to be more explicit. (a0bcb6f)
-
π Dependency Update: The jenkins-x/go-scm dependency has been updated to the latest version. (28a095f, 4ae3540)
-
π§Ό Code Cleanup: An unused ConvertPacStructToConfigMap function and its tests have been removed. (70eb7ba)
-
π Linter Fix: The noctx linter is now satisfied by using exec.CommandContext in the CI. (3e8fe4c)
-
π CI Python Image: The CI now uses a standard Python image to install ruff, improving portability. (cce78bb)
-
π Linter Naming Fix: A var-naming error from the revive linter has been fixed. (87df55c)
-
π₯ E2E Test Permissions: E2E tests can now be triggered by a wider range of trusted contributors. (633f025, 78a7418)
-
π·οΈ Event Type Refactor: The internal event type LabelUpdate has been refactored to the more descriptive pull_request_labeled. (fdd6549)
-
ποΈ Catalog ID Refactor: The default ArtifactHub catalog ID has been refactored to pacpipelines. (542f1a0)
-
π Documentation
ποΈ Jira Integration Docs: Added new documentation, guidelines, and templates for creating Jira issues. (e790bc0) -
π PR Template Update: The pull request template has been updated to include sections for dependencies and other details. (4888d6d, 098a2a0)
-
ποΈ Typo Fixes: Corrected various minor typos in documentation and warning messages. (bca681c, 9e43cbb, 52d6a16)
Changelog
- 5949341: Feat: structured logging with source repo context (#2165) (@infernus01)
- 4888d6d: Update .github/pull_request_template.md (@chmouel)
- f4b1be2: chore: Allow insensitive case for pr title (@chmouel)
- 9e43cbb: chore: Correct typos in warning and event messages (@chmouel)
- fe32890: chore: Improve commit and pull request title validation (@chmouel)
- e7a2b7b: chore: Make go-testing PipelineRun targeted by all branches (@zakisk)
- f120625: chore: Run E2E tests based on author association (@chmouel)
- 52d6a16: chore: Some minor typos in docs (@zakisk)
- 0ad67b6: chore: Update git-clone task location (@chmouel)
- 934dddc: chore: add PipelineRun status in logs when creating PipelineRun (@zakisk)
- 098a2a0: chore: add deps in pr template (@zakisk)
- 70eb7ba: chore: remove unused ConvertPacStructToConfigMap func and tests (@infernus01)
- a5b9453: chore: trigger E2E tests only on workflows change (@zakisk)
- ce23998: chore: update PR template and unify commit validation in CI (@chmouel)
- 28a095f: dep: update jenkins-x/go-scm version (@zakisk)
- 4ae3540: deps: update jenkins-x/go-scm version (@zakisk)
- db0e832: enhance: Use Client Function for API Call in ParsePayload (@zakisk)
- f3a73b4: enhance: clarify commit-info error & add tests for verifyRepoAndUser (@zakisk)
- e790bc0: feat: Add Jira issue creation guidelines and templates (@chmouel)
- 5e98945: feat: Add PipelineRun to create JIRA tickets via comments (@chmouel)
- 5034528: feat: Add support for Artifact Hub (@chmouel)
- 1ba08cf: feat: Add template support for auto-configured repository CR names (@zakisk)
- 32e2093: feat: Implement comprehensive development rules for Cursor (@chmouel)
- 15d764c: feat: Implement intelligent GH API call monitoring (@chmouel)
- 8346f33: feat: add instrumentation in e2e for GH API calls (@chmouel)
- bc8e716: feat: add instrumentation in e2e for GH API calls (@chmouel)
- 8c752e3: feat: add relative TaskRef fetching functionality (@martindbrv)
- c0f65c7: feat: report invalid CEL expression errors as PR comments (@zakisk)
- 7340740: fix(bitbucketdatacenter): ignore branch deletion events in ParsePayload (@infernus01)
- 87df55c: fix(ci): golangci-lint revive var-naming error in linters (@zakisk)
- 3e8fe4c: fix(ci): use exec.CommandContext to satisfy
noctx
linter (@zakisk) - e18edee: fix(github): guard checkWebhookSecretValidity against nil response (@zakisk)
- ecd0637: fix(homebrew): goreleaser issue and cask install doc (@dronenb)
- 633f025: fix: Allow contributors to trigger end-to-end tests (@chmouel)
- 78a7418: fix: Allow infernus01 to trigger E2E workflow (@chmouel)
- a1d7e4e: fix: Annotate PLR when when started status is reported (#2208) (@gbenhaim)
- 4f415fb: fix: Ignore non-Tekton resources errors reporting (@chmouel)
- 846416e: fix: Improve handling of missing .tekton directory for ok-to-test events (@zakisk)
- d1ea889: fix: Prevent deadlock in tryAcquire method (@chmouel)
- 3639f67: fix: homebrew packaging (@chmouel)
- c6fdb38: fix: skip pr title check for MIRRORED PR (@chmouel)
- cce78bb: fix: use python image to install ruff (@zakisk)
- fdd6549: refactor(triggertype): rename LabelUpdate to pull_request_labeled (@infernus01)
- 542f1a0: refactor: artifacthub catalog ID to pacpipelines (@chmouel)
v0.35.3
Pipelines as Code version v0.35.3
OpenShift Pipelines as Code v0.35.3 has been released π₯³
This is a bug fix release fixing reporting as error when non tekton resources are located in .tekton and the homebrew release of tkn-pac binary.
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.3/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.3/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-35-3.pipelines-as-code.pages.dev
Changelog
- 25d6e84: Release yaml generated from 165d92a for release v0.35.2 ( <>)
- 793677d: fix(homebrew): goreleaser issue and cask install doc (@dronenb)
- 238d2cf: fix: Ignore non-Tekton resources errors reporting (@chmouel)
What's Changed
Full Changelog: v0.35.2...v0.35.3
v0.35.2
Pipelines as Code version v0.35.2
OpenShift Pipelines as Code v0.35.2 has been released π₯³
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.2/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.2/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-35-2.pipelines-as-code.pages.dev
Changes Since v0.35.1
π Notable Bug Fixes
-
GitHub API Stability: Fixed a potential crash that could occur when checking the status and rate limits of a GitHub token, particularly for tokens with limited permissions. The application now handles these cases gracefully. (#2162)
-
Controller Finalizer Naming: The controller's finalizer name has been updated to be more explicit, improving internal consistency. (#2099)
-
Bitbucket on-path-change Fix: Resolved an issue where the on-path-change annotation was not working correctly on pull request merge events. (#2145)
-
Bitbucket Empty Commit Handling: Empty commits in push events are now correctly detected and invalidated. (#2138)
-
YAML Validation for Non-Tekton Resources: Validation errors are no longer incorrectly reported for non-Tekton resources, reducing noise. (#2147)
-
YAML Error Formatting: Long YAML validation error messages on push events are now split for better readability. (#2109)
-
HTTP Server Timeouts: Added timeouts to the internal HTTP server to prevent hangs. (#2116)
-
HTTP Response Handling: Fixed handling of HTTP response body close errors to prevent resource leaks. (#2147)
-
GitLab Trigger Precision: Fixed an issue on GitLab where pipelines could be triggered incorrectly by unsupported events. (#2122)
Changelog
- ba5f90b: Release yaml generated from 0b6cda8 for release v0.35.1 ( <>)
- 0437463: chore: Make go-testing PipelineRun targeted by all branches (@zakisk)
- 6fcedc6: chore: Update controller finalizer name to include explicit part (@chmouel)
- 522240f: fix(ci): golangci-lint revive var-naming error in linters (@zakisk)
- 165d92a: fix(github): guard checkWebhookSecretValidity against nil response (@zakisk)
- 86da7d4: fix(gitlab): trigger PipelineRun only on label change (@PuneetPunamiya)
- ad8fea1: fix: Split error message of yaml validation on push (@zakisk)
- f780e96: fix: add timeouts to HTTP server (@chmouel)
- bea1de2: fix: avoid reporting errors for non-Tekton res (@chmouel)
- 0510f33: fix: handle response body close errors (@chmouel)
- 3dc9d63: fix: inavlidate empty commits in push events in bitbucket dc (@zakisk)
- 71027f9: fix: issue in on-path-change on pr merge in bitbucket data center (@zakisk)
- 66d16b3: fix: migrate from brews to homebrew_casks in goreleaser (@zakisk)
- 3eac400: fix: use correct event type in log in GetTektonDir func (@zakisk)
v0.36.0
Pipelines as Code version v0.36.0
OpenShift Pipelines as Code v0.36.0 has been released π₯³
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.36.0/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.36.0/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-36-0.pipelines-as-code.pages.dev
Changes since v0.35.1
π Features & Enhancements
-
Kueue Integration: Pipelines-as-Code now natively reports PipelineRun status updates when integrated with the Kueue queuing system. #2120
-
Quieter Pull Requests: You can now disable status comments from PipelineRuns on GitHub pull requests to reduce noise. #2110
-
New Dynamic Variable: The
{{ pull_request_number }}
variable is now supported in push event triggers, making it easier to reference the original pull request. #2118 -
JSON Body Support: Incoming webhooks now support parameters provided in a JSON body. #2100
-
Direct PipelineRun Link: The initial "PipelineRun starting" comment now includes a direct link to the PipelineRun for easier access. #2114
π Bug Fixes
-
on-path-change issue: Resolved an issue where the on-path-change annotation was not working correctly on pull request merge events in Bitbucket Data Center. #2145
-
No Commit in Payload: Empty commits in push events are now correctly invalidated in Bitbucket Data Center. #2138
-
GitLab Triggers: Fixed an issue on GitLab where pipelines could be triggered incorrectly on unsupported events. #2122
-
YAML Validation: Avoided reporting YAML syntax and validation errors for non-Tekton resources. #2147
-
YAML Error Formatting: Split long YAML validation error messages on push events for better readability. #2109
-
Stability Improvements: Added timeouts to the internal HTTP server, set stricter permissions on created directories, fixed handling of HTTP response body close errors, and corrected event types in logs for better provenance and debugging. #2116
π§Ή Housekeeping & Chores
-
Test Coverage: Added new unit test cases for the GetCurrentControllerName function. #2107
-
Finalizer Naming: Updated the controller's finalizer name to be more explicit. #2099
-
Enhanced PR Mirroring: The script for mirroring external PRs has been significantly improved, with new functionality to update existing PRs, list and close them by their original state, and perform a dry run. #2125 #2142 #2144
-
GoReleaser Configuration: Migrated from the deprecated brews to the modern homebrew_casks configuration in GoReleaser. #2121
-
Audit Logging: For enhanced security, audit logging has been added to various clients within Pipelines-as-Code. #2127
π Documentation & Typos
-
CEL Expressions: Updated documentation to clarify the precedence of CEL expressions. #2119
-
YAML Validation Docs: Added clarification to the docs regarding YAML validation errors. #2135
Changelog
608c97b: Disable Github comments for pipeline start/end events to reduce PR noise (@PuneetPunamiya)
d2ac965: Revert "adding logs whenever client uses token which is security best practice" (@zakisk)
bca681c: Update privaterepo.md with missing colon (@fabriziosta)
9e37185: adding logs whenever client uses token which is security best practice (@mbpavan)
da83cb5: chore: Add test cases for GetCurrentControllerName (@zakisk)
67c2fb1: chore: Small typo in linters PipelineRun (@zakisk)
a0bcb6f: chore: Update controller finalizer name to include explicit part (@chmouel)
6aa79a5: chore: change scmclient to client in bibtucket dc (@zakisk)
f0e3411: chore: set environment variables for git execution (@chmouel)
6484b59: chore: update docs about CEL expression precedence (@zakisk)
8a4ed95: cleanup: remove redunant IsCancelComment func (@zakisk)
5a2151f: cleanup: removes unsupported enum values for Gitlab comment_strategy (@PuneetPunamiya)
eacd4ac: dcos: clarification about YAML validation error (@zakisk)
f07a394: feat(security): add audit logging to clients in pipelines-as-code (@mbpavan)
0c647e1: feat: Add JSON body support for incoming webhook parameters (@chmouel)
8dbb5f5: feat: Allow listing and closing mirrored PRs by original state (@chmouel)
b772b84: feat: Enable mirror script to update existing PRs (@chmouel)
ff0bf5d: feat: Enable updating existing mirrored pull requests (@chmouel)
1e99f6f: feat: Implement dry run functionality for mirror-pr script (@chmouel)
54151f7: feat: Implement script to mirror external PRs for E2E tests (@chmouel)
7e1d03c: feat: link to PipelineRun in Starting template (@aThorp96)
5dafa4a: feat: support PipelineRun running status reporting on Github with Kueue (@zakisk)
c05e765: feat: support pull_request_number variable on push events (@zakisk)
78eed25: fix(gitlab): trigger PipelineRun only on label change (@PuneetPunamiya)
6575e4d: fix: Improve Tekton gitlint step to list all failing commits (@chmouel)
6ba7b1e: fix: Set stricter permissions on created directories (@chmouel)
aa20b5b: fix: Split error message of yaml validation on push (@zakisk)
c4e24c5: fix: add timeouts to HTTP server (@chmouel)
46067b2: fix: avoid reporting errors for non-Tekton res (@chmouel)
002a60d: fix: handle response body close errors (@chmouel)
af3b914: fix: improve mirror-pr.sh script (@chmouel)
527ebbf: fix: inavlidate empty commits in push events in bitbucket dc (@zakisk)
f9fd3f3: fix: issue in on-path-change on pr merge in bitbucket data center (@zakisk)
313ace7: fix: migrate from brews to homebrew_casks in goreleaser (@zakisk)
445ab7e: fix: removed duplicate statement in overview page (@zakisk)
94e4bbd: fix: small typo in README.md (@zakisk)
640cb4f: fix: small typo in docs/install/setting.md (@infernus01)
d529a98: fix: small typo in test pipelinerun yaml (@zakisk)
1f9ba8c: fix: use correct event type in log in GetTektonDir func (@zakisk)
0e5b93c: foo (@chmouel)
v0.35.1
Pipelines as Code version v0.35.1
OpenShift Pipelines as Code v0.35.1 has been released π₯³
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.1/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.1/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-35-1.pipelines-as-code.pages.dev
Changes since v0.35.0
π§ Dependency Updates
- DNM: downgrade go version to 1.23.6 (@zakisk)
Changelog
v0.35.0
Pipelines as Code version v0.35.0
OpenShift Pipelines as Code v0.35.0 has been released π₯³
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.0/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.35.0/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-35-0.pipelines-as-code.pages.dev
Changes since v0.34.0
π Features
-
Skip Push Events for PR Commits
Addedskip-push-event-for-pr-commits
setting to avoid duplicate pipeline runs from push/pull request events.
SRVKP-3512 | #2095 -
OpenAPI Schema Validation
Introduced OpenAPI schema validation for Repository CRD, improving validation and IDE support.
SRVKP-7605 | #2089
π Bug Fixes
- Static List for Allowed Users
Fixed GitHub permissions issue by switching to a static allowed users list.
#2087
π οΈ Misc
-
Provider Name Typo Fix
Corrected Bitbucket Data Center provider name spelling.
#2096 -
Code Refactoring
Replaced deprecatedgetActivies
function and removed legacy Bitbucket v1 code.
#2092 -
Linting Adjustment
Disabled descriptive-link-text check for markdown files.
#2094 -
CI Configuration
Addedwaveywaves
to allowlist for e2e test execution.
#2091 -
Test Verbosity
Enabled verbose output for e2e tests in CI workflows.
#2090
Changelog
- 8bb5bfa: add waveywaves to list of developers for whom e2e can run (@waveywaves)
- 857f96d: chore: Disable descriptive-lint-text check for md files (@zakisk)
- b2a2238: chore: Fix typo in provider name (@zakisk)
- 0018148: chore: Limit Go linter scope to source and test directories (@chmouel)
- 3f662a3: cleanup: wave good bye to bbv1 lib (@zakisk)
- 1b4ded8: feat: Add OpenAPI schema validation for CRD (@chmouel)
- d674217: feat: Implement setting to skip push events for PR commits (@chmouel)
- c7486aa: refactor: replace getActivities func call with jenkins-x/go-scm (@zakisk)
v0.34.0
OpenShift Pipelines as Code v0.34.0
πͺ Installation
To install this version you can install the release.yaml with kubectl
for your platform:
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.34.0/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.34.0/release.k8s.yaml
Documentation
The documentation for this release is available here:
https://release-v0-34-0.pipelines-as-code.pages.dev
Whatβs New?
-
π Features
- Report PipelineRun validation errors on pull requests as comments. #1963 SRVKP-7075
- Add option to disable GitLab comments for pipeline start/end events. #2066
- Track git provider API usage metrics. #2005 SRVKP-1925
- Enable cluster wide cancel-in-progress setting via PAC ConfigMap. #2050
- Add new dynamic variable
git_tag
for git tag push events. #2041 - Change URL for cache-fetch task and introduce cache-upload task for Go modules. #2080
-
π οΈ Fixes
- Update concurrency group expression in E2E workflow for accurate cancellation. #2053
- Delete Gitea Cluster Task from E2E tests as clustertasks are deprecated. #2075
- Fix crash on push with empty changes in Bitbucket Data Center. #2070 SRVKP-7522
- Add Go paths in GitHub actions E2E workflow trigger. #2043
- Handle GitHub branch delete event to avoid unnecessary processing. #2044
- Fix issue triggering PipelineRuns on label addition when
on-cel-expression
is used withouton-label
annotation. #2054 SRVKP-7378, SRVKP-7443 - Simplify PR trigger condition for E2E workflow. #2084
- Restrict E2E workflow on PR target to privileged users for security. #2083
- Use a static list for the list of allowed users due to permissions check issue. #2087
-
π Refactors
-
π§ Dependency Updates
-
π Documentation
-
π§ͺ Testing
- Fix flaky SecondPullRequestConcurrencyMultiplePR test with a wait loop. #2071
-
β Miscellaneous
- Separate CI log formatting into dedicated workflow step using snazy. #2079
- Update Vale style rules and standardize GitLab capitalization. #2077
- Update documentation to note gosmee/proxy service is not for production. #2072
- Enhance CI log processing with snazy for improved readability. #2068
- Use startpaac script for E2E environment setup (WIP/Reverted). #2059
- Add conventional commit check to Tekton linter pipeline. #2081
- Warn user when on cel-expression is used alongside on-target branch and on-event. #2027
- Remove verbose flag from unit tests for cleaner local runs. #2065
- Allow users to set the REG_PORT for make dev using an environment variable. #2057
π Summary
CategoryΒ Β Β Β Β | Count |
---|---|
π FeaturesΒ Β Β Β Β Β | 6Β Β Β Β Β |
π οΈ FixesΒ Β Β Β Β Β Β | 8Β Β Β Β Β |
π RefactorsΒ Β Β Β Β | 2Β Β Β Β Β |
π§ Dependency Updates | 5Β Β Β Β Β |
π DocumentationΒ Β Β | 2Β Β Β Β Β |
π§ͺ TestingΒ Β Β Β Β Β | 1Β Β Β Β Β |
β MiscΒ Β Β Β Β Β Β Β | 11Β Β Β Β |
πΌ New Contributors
- @nickd-kt made their first contribution in #1955
- @mathur07 made their first contribution in #1958
- @PuneetPunamiya made their first contribution in #1976
- @clubanderson made their first contribution in #2000
- @samchmou made their first contribution in #2012
- @waveywaves made their first contribution in #2057
Full Changelog: v0.33.0...v0.34.0
v0.33.2
Pipelines as Code version v0.33.2
OpenShift Pipelines as Code v0.33.2 has been released π₯³
Notable Changes
This is a bug-fix release providing below fixes:
- Fix: PLR Definition Issue When Provenance is Set in GitLab (#1948)
- Invalidate ok-to-test command on pushed commits (#1980)
- PAC controller crash on empty changes in BDC (#2070)
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.33.2/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.33.2/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-33-2.pipelines-as-code.pages.dev
Changelog
- a6ddad4: Fix: PLR Definition Issue When Provenance is Set in GitLab (@zakisk)
- 031011b: Invalidate ok-to-test command on pushed commits (@zakisk)
- aeb8aed: Release yaml generated from 9deac10 for release v0.33.1 ( <>)
- cfac235: fix: Delete Gitea Cluster Task from E2E (@zakisk)
- e9febd3: fix: PAC controller crash on empty changes in BDC (@zakisk)
- ab853a5: fix: update pull_request_target to pull_request (@chmouel)
v0.33.1
Pipelines as Code version v0.33.1
OpenShift Pipelines as Code v0.33.1 has been released π₯³
Notable Changes
This is a bugfix releases providing fixes for those issues:
- Fixed PipelineRun cancelling on PR closed (#2039) SRVKP-7456
- fix Parse GitLab API URL during SetClient setup (PR #2037)
- fix PipelineRun cancel-in-progress issue when generateName is used (#2026) SRVKP-7337
- fix Triggering PipelineRun on label addition in Github PRs (#2034) SRVKP-7378
SRVKP-744 - fix: Pipelinerun name format in incoming webhook docs (#2047)
Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.33.1/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.33.1/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-33-1.pipelines-as-code.pages.dev
Changelog
- 9deac10: Backport fixes for 0.33.x (@chmouel)
- 87a1d49: Release yaml generated from d51c912 for release v0.33.0 ( <>)
- 7637021: Update golangci-lint to 2.0 (@chmouel)
- 0035d33: fix: Fixed PipelineRun triggering on PR closed (@zakisk)
- 9e75be6: fix: Fixed flakiness in TestGitlabCancelInProgressOnPRClose test (@zakisk)
- cb03b88: fix: Parse GitLab API URL during SetClient setup (@chmouel)
- 2db3d83: fix: PipelineRun cancel-in-progress issue when generateName is used (@zakisk)
- 7b503a4: fix: Pipelinerun name format in incoming webhook docs (@PuneetPunamiya)
- ec5971b: fix: Triggering PipelineRun on label addition in Github PRs (@zakisk)
- a714601: refactor: Refine cancellation event reason (@chmouel)
v0.33.0
OpenShift Pipelines as Code v0.33.0
πͺ Installation
To install this version you can install the release.yaml with kubectl
for your platform :
Openshift
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.33.0/release.yaml
Kubernetes
kubectl apply -f https://github.com/openshift-pipelines/pipelines-as-code/releases/download/v0.33.0/release.k8s.yaml
Documentation
The documentation for this release is available here :
https://release-v0-33-0.pipelines-as-code.pages.dev
Whatβs New?
-
π Features
- Implement GetFiles Func of Bitbucket Server Provider for CEL Expression. #1917
- Implement Set Client func in Bitbucket Server. #1894
- Added changes field in push event struct for Bitbucket server. #1886
- Started a new project for prow like PR management on PAC (still a WIP):
https://github.com/openshift-pipelines/pac-boussole
-
π οΈ Fixes
- Validate Repository URL on creation. #1926
- Fix GitOps Command Issue on Pushed Commit by Unauthorized User. #1922
- Fix forcetypeassert errors. #1933
- Fix handle multiline trigger comment var properly. #1934
- Fix image path in generate-releaseyaml.sh. #1920
- Fix TestGithubSecondCancelInProgress test condition. #1895
- Fix GitLab MR Not Updated Issue on Forked Repository. #1892
- Fix goreleaser Issue. #1893
- strip spaces and newlines from the comment before matching. #1924
- Fix Default Branch Issue on GitOps Comment Event in GitHub. #1918
- Fix ok-to-test comment issue for external user on GitHub. #1899
- fix(gitlab): correct the issues with obtaining pr or branch name #1901
- fix(gitlab): correct the value of SHATitle in Merge event #1902
-
π Refactors
-
π§ Dependency Updates
-
π Documentation
-
π§ͺ Testing
-
β Miscellaneous
π Summary
Category | Count |
---|---|
π Features | 3 |
π οΈ Fixes | 9 |
π Refactors | 2 |
π§ Dependency Updates | 3 |
π Documentation | 4 |
π§ͺ Testing | 2 |
β Misc | 3 |
New Contributors ππ»
All Changes
- Fix goreleaser Issue by @zakisk in #1893
- Fix GitLab MR Not Updated Issue on Forked Repository by @zakisk in #1892
- Bump docker/build-push-action from 6.12.0 to 6.13.0 by @dependabot in #1896
- fix TestGithubSecondCancelInProgress test conditio by @chmouel in #1895
- Clearification About GitOps commands on closed Pull Requests by @zakisk in #1897
- feat: add prow like PR management by @chmouel in #1903
- chore: remove @ symbol in /assign /unassign prow by @chmouel in #1904
- feat(prow): use request review for assign/unassign by @chmouel in #1905
- fix(gitlab): correct the value of SHATitle in Merge event by @l-qing in #1902
- Use prow from the pipelines-as-code-prow repo by @chmouel in #1908
- fix: correct the issues with obtaining pr or branch name by @l-qing in #1901
- feat(prow): add merge command and update params by @chmouel in #1910
- Implement Set Client func in Bitbucket Server by @zakisk in #1894
- Add Docs for Block Values in PAC Dynamic Variables by @zakisk in #1907
- Fix ok-to-test comment issue for external user on GitHub by @zakisk in #1899
- docs: Add Developer Resources documentation to Documentation menu by @aThorp96 in #1900
- Update go-github to v68 by @chmouel in #1909
- Update Jenkins-x/go-scm version by @zakisk in #1912
- Use KO for building and pushing images by @chmouel in #1913
- Add repo name on KO_DOCKER_REPO by @chmouel in #1915
- Add test for pkg/cli/color by @chmouel in #1916
- test: add unit tests for IOStreams package by @chmouel in #1919
- Fix image path in generate-releaseyaml.sh by @chmouel in #1920
- Fix trigger_comment newline by @chmouel in #1921
- Add rebase command to prow commands by @chmouel in #1923
- Fix Default Branch Issue on GitOps Comment Event in Github by @zakisk in #1918
- Implement GetFiles Func of Bitbucket Server Provider for CEL Expression by @zakisk in #1917
- fix: Validate Repository URL on creation by @chmouel in #1926
- chore: remove Dockerfile and update dev docs by @chmouel in #1927
- Clarification About GitOps Command Execution on Pushed Commits by @zakisk in #1911
- fix: strip spaces and newlines from the comment before matching by @chmouel in #1924
- pac-Prow has been renamed to boussole by @chmouel in #1928
- fix(golangci-lint): fix forcetypeassert errors by @chmouel in #1933
- fix handle multiline trigger comment var properly by @chmouel in #1934
- Fix GitOps Command Issue on Pushed Commit by Unautorized User by @zakisk in #1922
Full Changelog: v0.32.0...v0.33.0