diff --git a/changelog.md b/changelog.md index 1e9b617a1..7611692ac 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +Upcoming (TBD) +============== + +Bug Fixes +-------- +* Fix incomplete release of Boundary tunnels from beta. + + 2.18.4 (2026/08/29) ============== diff --git a/mycli/client_connection.py b/mycli/client_connection.py index 900c9d0e7..6a64a1d05 100644 --- a/mycli/client_connection.py +++ b/mycli/client_connection.py @@ -132,12 +132,12 @@ def connect( sys.exit(1) elif boundary_target_id: use_keyring = False - boundary_executable = self.config.get('boundary_beta', {}).get('boundary_executable', 'boundary') or 'boundary' - boundary_address = self.config.get('boundary_beta', {}).get('address') or None - boundary_auth_method_id = self.config.get('boundary_beta', {}).get('auth_method_id') or None - boundary_options = self.config.get('boundary_beta', {}).get('boundary_options') or None - boundary_test_command = self.config.get('boundary_beta', {}).get('boundary_test_command') or None - boundary_auth_command = self.config.get('boundary_beta', {}).get('boundary_auth_command') or None + boundary_executable = self.config.get('boundary', {}).get('boundary_executable', 'boundary') or 'boundary' + boundary_address = self.config.get('boundary', {}).get('address') or None + boundary_auth_method_id = self.config.get('boundary', {}).get('auth_method_id') or None + boundary_options = self.config.get('boundary', {}).get('boundary_options') or None + boundary_test_command = self.config.get('boundary', {}).get('boundary_test_command') or None + boundary_auth_command = self.config.get('boundary', {}).get('boundary_auth_command') or None try: self.boundary_tunnel = BoundaryTunnel( target_id=boundary_target_id, diff --git a/test/pytests/test_client_connection.py b/test/pytests/test_client_connection.py index e149dcb5d..9cf12a067 100644 --- a/test/pytests/test_client_connection.py +++ b/test/pytests/test_client_connection.py @@ -740,7 +740,7 @@ def close(self) -> None: client = DummyClient( config={ 'main': {'password_sources': KNOWN_PASSWORD_SOURCES}, - 'boundary_beta': { + 'boundary': { 'boundary_executable': '/opt/bin/boundary', 'address': 'https://boundary.example.com', 'auth_method_id': 'ampw_123',