Skip to content
Open
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
4 changes: 2 additions & 2 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
### CLI

* Moved file-based OAuth token cache management from the SDK to the CLI. No user-visible change; part of a three-PR sequence that makes the CLI the sole owner of its token cache.
* Added experimental OS-native secure token storage behind the `--secure-storage` flag on `databricks auth login` and the `DATABRICKS_AUTH_STORAGE=secure` environment variable. Hidden from help during MS1. Legacy file-backed token storage remains the default.
* Added experimental OS-native secure token storage opt-in via `DATABRICKS_AUTH_STORAGE=secure` or `[__settings__].auth_storage = secure` in `.databrickscfg`. Legacy file-backed token storage remains the default.
* Added experimental OS-native secure token storage, opt-in via the `--secure-storage` flag on `databricks auth login` or the `DATABRICKS_AUTH_STORAGE=secure` environment variable. Legacy file-backed token storage remains the default.
* Remove the `--experimental-is-unified-host` flag and stop reading `experimental_is_unified_host` from `.databrickscfg` profiles and the `DATABRICKS_EXPERIMENTAL_IS_UNIFIED_HOST` env var. Unified hosts are now detected exclusively from `/.well-known/databricks-config` discovery. The `experimental_is_unified_host` field is retained as a no-op in `databricks.yml` for schema compatibility.

### Bundles

Expand Down
39 changes: 0 additions & 39 deletions acceptance/auth/credentials/unified-host/out.requests.txt

This file was deleted.

5 changes: 0 additions & 5 deletions acceptance/auth/credentials/unified-host/out.test.toml

This file was deleted.

12 changes: 0 additions & 12 deletions acceptance/auth/credentials/unified-host/output.txt

This file was deleted.

12 changes: 0 additions & 12 deletions acceptance/auth/credentials/unified-host/script

This file was deleted.

3 changes: 0 additions & 3 deletions acceptance/auth/credentials/unified-host/test.toml

This file was deleted.

10 changes: 7 additions & 3 deletions bundle/config/workspace.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ type Workspace struct {
AzureLoginAppID string `json:"azure_login_app_id,omitempty"`

// Unified host specific attributes.
//
// ExperimentalIsUnifiedHost is a deprecated no-op. Unified hosts are now
// detected automatically from /.well-known/databricks-config. The field is
// retained so existing databricks.yml files using it still validate against
// the bundle schema.
ExperimentalIsUnifiedHost bool `json:"experimental_is_unified_host,omitempty"`
AccountID string `json:"account_id,omitempty"`
WorkspaceID string `json:"workspace_id,omitempty"`
Expand Down Expand Up @@ -135,9 +140,8 @@ func (w *Workspace) Config(ctx context.Context) *config.Config {
AzureLoginAppID: w.AzureLoginAppID,

// Unified host
Experimental_IsUnifiedHost: w.ExperimentalIsUnifiedHost,
AccountID: w.AccountID,
WorkspaceID: w.WorkspaceID,
AccountID: w.AccountID,
WorkspaceID: w.WorkspaceID,
}

for k := range config.ConfigAttributes {
Expand Down
Loading