Skip to content

Backport of Document the deprecation of include_terminated into release/0.16.x #4829

New issue

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

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

Already on GitHub? # to your account

Merged
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,18 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.

## Next

### Deprecations/Changes

* The `boundary daemon` command has been deprecated in favor of the new
`boundary cache` command. The behavior remains the same. The `boundary search`
command is unchanged.
([PR](https://github.com/hashicorp/boundary/pull/4808))
* The include_terminated field in the list sessions request will be removed
in an upcoming release. After the deprecation process is complete and the
field is removed terminated sessions will be returned
in all list session responses unless filtered out using the filter field.
([PR](https://github.com/hashicorp/boundary/pull/4602))

### Bug Fixes

* Fix a dead lock issue where the controller could get stuck with all of its
2 changes: 1 addition & 1 deletion internal/gen/controller.swagger.json
Original file line number Diff line number Diff line change
@@ -4221,7 +4221,7 @@
},
{
"name": "include_terminated",
"description": "Experimental. By default only non-terminated (i.e. pending, active, canceling) are returned.\nSet this option to include terminated sessions as well.",
"description": "Deprecated. Should be removed in 0.18.0 since pagination removes the need\nfor the optimization that this provided.\nBy default only non-terminated (i.e. pending, active, canceling) are returned.\nSet this option to include terminated sessions as well. If not set paginated\nresponses may not include terminated sessions either in the response or in\nthe removed_ids.",
"in": "query",
"required": false,
"type": "boolean"
Loading