Skip to content
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
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Upcoming (TBD)
==============

Features
--------
* Promote Boundary tunnel feature out of beta.


Bug Fixes
--------
* Default split-line prompt was missing trailing space.
Expand Down
2 changes: 1 addition & 1 deletion mycli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ class CliArgs:
)
boundary_id: str | None = clickdc.option(
type=str,
help='BETA: open a HashiCorp Boundary tunnel to TARGET_ID and connect through it.',
help='Open a HashiCorp Boundary tunnel to TARGET_ID and connect through it.',
)
checkup: bool = clickdc.option(
is_flag=True,
Expand Down
2 changes: 1 addition & 1 deletion mycli/myclirc
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ default_password_field = password
# Field/property containing the username, if --vault-username-field is not provided.
default_username_field = username

[boundary_beta]
[boundary]
# Path to the HashiCorp Boundary executable used by --boundary-id.
boundary_executable = boundary

Expand Down
2 changes: 1 addition & 1 deletion test/myclirc
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ default_password_field = password
# Field/property containing the username, if --vault-username-field is not provided.
default_username_field = username

[boundary_beta]
[boundary]
# Path to the HashiCorp Boundary executable used by --boundary-id.
boundary_executable = boundary

Expand Down
Loading