Skip to content

Commit

Permalink
Release: v0.0.3 (#235)
Browse files Browse the repository at this point in the history
## 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]>
  • Loading branch information
github-actions[bot] and web-flow authored Nov 21, 2022
1 parent 5f29a29 commit 0cd1561
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@databricks/databricks-vscode",
"version": "0.0.2",
"version": "0.0.3",
"private": true,
"workspaces": [
"packages/*"
Expand Down
8 changes: 8 additions & 0 deletions packages/databricks-sdk-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@
## <small>0.0.2 (2022-11-15)</small>

- First release

# Release: v0.0.3

## packages/databricks-sdk-js

## <small>0.0.3 (2022-11-21)</small>

- Fix repo list pagination
2 changes: 1 addition & 1 deletion packages/databricks-sdk-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@databricks/databricks-sdk",
"version": "0.0.2",
"version": "0.0.3",
"description": "Databricks SDK",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/databricks-vscode-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@
## <small>0.0.2 (2022-11-15)</small>

- First release

# Release: v0.0.3

## packages/databricks-vscode-types

## <small>0.0.3 (2022-11-21)</small>
2 changes: 1 addition & 1 deletion packages/databricks-vscode-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@databricks/databricks-vscode-types",
"version": "0.0.2",
"version": "0.0.3",
"description": "Package with types and interfaces to develop extensions to the Databricks VSCode plugin",
"main": "index.js",
"types": "index.d.ts",
Expand Down
13 changes: 13 additions & 0 deletions packages/databricks-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,16 @@
## <small>0.0.2 (2022-11-15)</small>

- First private preview release

# Release: v0.0.3

## packages/databricks-vscode

## <small>0.0.3 (2022-11-21)</small>

- Added command `Open full logs` to open the log output folder
- Turn filtering of accessible cluster off by default. Can be enabled using the setting `databricks.clusters.onlyShowAccessibleClusters`
- Allow running ipynb files as workflows
- Improve handling cases where the user doesn't hve administrator permissions in the Databricks workspace
- Show warning when the name of the selected Databricks Repo doesn't match the local workspace name
- Add setting `databricks.bricks.verboseMode` to show debug logs for the sync command
3 changes: 3 additions & 0 deletions packages/databricks-vscode/README.quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ This extension contributes the following settings:
- `databricks.logs.truncationDepth`: The max depth of logs to show without truncation
- `databricks.logs.maxArrayLength`: The maximum number of items to show for array fields
- `databricks.logs.enabled`: Enable/disable logging. Reload window for changes to take effect
- `databricks.clusters.onlyShowAccessibleClusters`: Only show clusters that the user has access to
- `databricks.bricks.verboseMode`: Show debug logs for the sync command

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

Expand All @@ -97,3 +99,4 @@ palette_, available by selecting _View > Command Palette_ or by typing
| `Databricks: Run File as Workflow on Databricks` | Runs the selected Python file as a Workflow in the configured Databricks cluster |
| `Databricks: Show Quickstart` | Show the Quickstart panel |
| `Databricks: Open Databricks configuration file` | Opens the Databricks configuration file for the current project |
| `Databricks: Open full log` | Opens the log output folder for the current project |
2 changes: 1 addition & 1 deletion packages/databricks-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "IDE support for Databricks",
"publisher": "databricks",
"license": "UNLICENSED",
"version": "0.0.2",
"version": "0.0.3",
"engines": {
"vscode": "^1.69.1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from "@databricks/databricks-sdk";
import {Context, context} from "@databricks/databricks-sdk/dist/context";
import {withLogContext} from "@databricks/databricks-sdk/dist/logging";
import {Uri, window} from "vscode";
import {Uri} from "vscode";
import {Loggers} from "../logger";

export class DatabricksWorkspace {
Expand Down

0 comments on commit 0cd1561

Please sign in to comment.