Skip to content

Commit 0cd1561

Browse files
Release: v0.0.3 (#235)
## packages/databricks-vscode ## <small>0.0.3 (2022-11-21)</small> * [DECO-317] Save logs to logPath provided by VSCode (#225) ([bfcc55c](bfcc55c)), closes [#225](#225) * [DECO-319] Make accessible cluster filtering optin (#233) ([3dbaac6](3dbaac6)), closes [#233](#233) * [DECO-323] Allow running ipynb files as workflows (#226) ([ba368a4](ba368a4)), closes [#226](#226) * [DECO-333] Assume you have all the permissions if can't access workspace confs (#232) ([5f29a29](5f29a29)), closes [#232](#232) * [DECO-87] Show warning when the name of the selected repo doesn't match the local workspace name (#2 ([64242e9](64242e9)), closes [#230](#230) * Add verbose mode for bricks sync (#234) ([45e3650](45e3650)), closes [#234](#234) * Fix typo in enabling loggers (#228) ([31ccbc7](31ccbc7)), closes [#228](#228) * Mark package as free (#231) ([c3d6f5b](c3d6f5b)), closes [#231](#231) ## packages/databricks-sdk-js ## <small>0.0.3 (2022-11-21)</small> * [DECO-330] Fix repo list pagination (#229) ([adb932a](adb932a)), closes [#229](#229) * [DECO-333] Assume you have all the permissions if can't access workspace confs (#232) ([5f29a29](5f29a29)), closes [#232](#232) ## packages/databricks-vscode-types ## <small>0.0.3 (2022-11-21)</small> Co-authored-by: releasebot <[email protected]>
1 parent 5f29a29 commit 0cd1561

File tree

9 files changed

+35
-5
lines changed

9 files changed

+35
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@databricks/databricks-vscode",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"private": true,
55
"workspaces": [
66
"packages/*"

packages/databricks-sdk-js/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,11 @@
55
## <small>0.0.2 (2022-11-15)</small>
66

77
- First release
8+
9+
# Release: v0.0.3
10+
11+
## packages/databricks-sdk-js
12+
13+
## <small>0.0.3 (2022-11-21)</small>
14+
15+
- Fix repo list pagination

packages/databricks-sdk-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@databricks/databricks-sdk",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "Databricks SDK",
55
"repository": {
66
"type": "git",

packages/databricks-vscode-types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@
55
## <small>0.0.2 (2022-11-15)</small>
66

77
- First release
8+
9+
# Release: v0.0.3
10+
11+
## packages/databricks-vscode-types
12+
13+
## <small>0.0.3 (2022-11-21)</small>

packages/databricks-vscode-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@databricks/databricks-vscode-types",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "Package with types and interfaces to develop extensions to the Databricks VSCode plugin",
55
"main": "index.js",
66
"types": "index.d.ts",

packages/databricks-vscode/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,16 @@
55
## <small>0.0.2 (2022-11-15)</small>
66

77
- First private preview release
8+
9+
# Release: v0.0.3
10+
11+
## packages/databricks-vscode
12+
13+
## <small>0.0.3 (2022-11-21)</small>
14+
15+
- Added command `Open full logs` to open the log output folder
16+
- Turn filtering of accessible cluster off by default. Can be enabled using the setting `databricks.clusters.onlyShowAccessibleClusters`
17+
- Allow running ipynb files as workflows
18+
- Improve handling cases where the user doesn't hve administrator permissions in the Databricks workspace
19+
- Show warning when the name of the selected Databricks Repo doesn't match the local workspace name
20+
- Add setting `databricks.bricks.verboseMode` to show debug logs for the sync command

packages/databricks-vscode/README.quickstart.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ This extension contributes the following settings:
7575
- `databricks.logs.truncationDepth`: The max depth of logs to show without truncation
7676
- `databricks.logs.maxArrayLength`: The maximum number of items to show for array fields
7777
- `databricks.logs.enabled`: Enable/disable logging. Reload window for changes to take effect
78+
- `databricks.clusters.onlyShowAccessibleClusters`: Only show clusters that the user has access to
79+
- `databricks.bricks.verboseMode`: Show debug logs for the sync command
7880

7981
## <a id="commands"></a>`Databricks:` Commands
8082

@@ -97,3 +99,4 @@ palette_, available by selecting _View > Command Palette_ or by typing
9799
| `Databricks: Run File as Workflow on Databricks` | Runs the selected Python file as a Workflow in the configured Databricks cluster |
98100
| `Databricks: Show Quickstart` | Show the Quickstart panel |
99101
| `Databricks: Open Databricks configuration file` | Opens the Databricks configuration file for the current project |
102+
| `Databricks: Open full log` | Opens the log output folder for the current project |

packages/databricks-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "IDE support for Databricks",
55
"publisher": "databricks",
66
"license": "UNLICENSED",
7-
"version": "0.0.2",
7+
"version": "0.0.3",
88
"engines": {
99
"vscode": "^1.69.1"
1010
},

packages/databricks-vscode/src/configuration/DatabricksWorkspace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from "@databricks/databricks-sdk";
99
import {Context, context} from "@databricks/databricks-sdk/dist/context";
1010
import {withLogContext} from "@databricks/databricks-sdk/dist/logging";
11-
import {Uri, window} from "vscode";
11+
import {Uri} from "vscode";
1212
import {Loggers} from "../logger";
1313

1414
export class DatabricksWorkspace {

0 commit comments

Comments
 (0)