Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add taskrun.status.cloudEvents to deprecation.md #5937

Merged
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
1 change: 1 addition & 0 deletions docs/deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ being deprecated.
| [Several fields of Task.Step are deprecated](https://github.com/tektoncd/pipeline/issues/4737) | v0.36.0 | Beta | Feb 25, 2023 |
| [ClusterTask is deprecated](https://github.com/tektoncd/pipeline/issues/4476) | v0.41.0 | Beta | July 13, 2023 |
| [`pipelineRef.bundle` and `taskRef.bundle` are deprecated](https://github.com/tektoncd/pipeline/issues/5514) | v0.41.0 | Alpha | July 13, 2023 |
| [`taskrun.status.cloudEvents` are deprecated](https://github.com/tektoncd/community/blob/main/teps/0074-deprecate-pipelineresources.md)) | v0.44.0 | Alpha | Oct 11, 2023 |
JeromeJu marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 2 additions & 1 deletion docs/pipeline-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -13403,7 +13403,8 @@ Kubernetes meta/v1.Time
</td>
<td>
<em>(Optional)</em>
<p>CloudEvents describe the state of each cloud event requested via a
<p>Deprecated.
CloudEvents describe the state of each cloud event requested via a
CloudEventResource.</p>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions pkg/apis/pipeline/v1beta1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pkg/apis/pipeline/v1beta1/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2877,7 +2877,7 @@
}
},
"cloudEvents": {
"description": "CloudEvents describe the state of each cloud event requested via a CloudEventResource.",
"description": "Deprecated. CloudEvents describe the state of each cloud event requested via a CloudEventResource.",
"type": "array",
"items": {
"default": {},
Expand Down Expand Up @@ -2976,7 +2976,7 @@
],
"properties": {
"cloudEvents": {
"description": "CloudEvents describe the state of each cloud event requested via a CloudEventResource.",
"description": "Deprecated. CloudEvents describe the state of each cloud event requested via a CloudEventResource.",
"type": "array",
"items": {
"default": {},
Expand Down
1 change: 1 addition & 0 deletions pkg/apis/pipeline/v1beta1/taskrun_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ type TaskRunStatusFields struct {
// +listType=atomic
Steps []StepState `json:"steps,omitempty"`

// Deprecated.
// CloudEvents describe the state of each cloud event requested via a
// CloudEventResource.
// +optional
Expand Down