Skip to content

Commit 73a147f

Browse files
Update Databricks CLI to v0.215.0 (#1118)
Update Databricks CLI to v0.215.0 --------- Co-authored-by: eng-dev-ecosystem-bot <eng-dev-ecosystem-bot@users.noreply.github.com> Co-authored-by: kartikgupta-db <kartik.gupta@databricks.com>
1 parent 4a00f9c commit 73a147f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

packages/databricks-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@
650650
"useYarn": false
651651
},
652652
"cli": {
653-
"version": "0.212.4"
653+
"version": "0.215.0"
654654
},
655655
"scripts": {
656656
"vscode:prepublish": "rm -rf out && yarn run package:compile && yarn run package:wrappers:write && yarn run package:jupyter-init-script:write && yarn run package:copy-webview-toolkit && yarn run generate-telemetry",

packages/databricks-vscode/src/cli/CliWrapper.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,14 +140,12 @@ describe(__filename, () => {
140140
assert.equal(profiles.length, 2);
141141
assert.equal(profiles[0].name, "DEFAULT");
142142
assert.equal(profiles[0].host, "https://cloud.databricks.com/");
143-
assert.equal(profiles[0].authType, "pat");
144143

145144
assert.equal(profiles[1].name, "STAGING");
146145
assert.equal(
147146
profiles[1].host,
148147
"https://staging.cloud.databricks.com/"
149148
);
150-
assert.equal(profiles[1].authType, "pat");
151149
});
152150
});
153151

@@ -198,11 +196,9 @@ host = example.com
198196

199197
assert.equal(profiles[0].name, "correct");
200198
assert.equal(profiles[0].host, "https://cloud.databricks.com/");
201-
assert.equal(profiles[0].authType, "pat");
202199

203200
assert.equal(profiles[1].name, "no-token");
204201
assert.equal(profiles[1].host, "https://cloud.databricks.com/");
205-
assert.equal(profiles[1].authType, "");
206202

207203
const typoLog = logs.find((log) => log.msg?.includes("typo-host"));
208204
assert.ok(typoLog !== undefined);

0 commit comments

Comments
 (0)