Skip to content

Commit

Permalink
Release: v0.0.9 (#349)
Browse files Browse the repository at this point in the history
## packages/databricks-vscode
## <small>0.0.9 (2023-01-09)</small>

* Bump bricks to v0.0.15 (#339)
([29a93a0](29a93a0)),
closes
[#339](#339)
* Don't show start icon for terminating clusters (#338)
([6a6b7f4](6a6b7f4)),
closes
[#338](#338)
* update dependencies (#336)
([1850d1c](1850d1c)),
closes
[#336](#336)
* Update JSON5 to 2.2.2 (#346)
([9f38691](9f38691)),
closes
[#346](#346)
* Use Databricks license for the extension (#320)
([263c7eb](263c7eb)),
closes
[#320](#320)



## packages/databricks-sdk-js
## <small>0.0.9 (2023-01-09)</small>

* update dependencies (#336)
([1850d1c](1850d1c)),
closes
[#336](#336)
* Use Databricks license for the extension (#320)
([263c7eb](263c7eb)),
closes
[#320](#320)



## packages/databricks-vscode-types
## <small>0.0.9 (2023-01-09)</small>

* update dependencies (#336)
([1850d1c](1850d1c)),
closes
[#336](#336)
* Update JSON5 to 2.2.2 (#346)
([9f38691](9f38691)),
closes
[#346](#346)
* Use Databricks license for the extension (#320)
([263c7eb](263c7eb)),
closes
[#320](#320)

Co-authored-by: releasebot <[email protected]>
Co-authored-by: kartikgupta-db <[email protected]>
  • Loading branch information
3 people authored Jan 9, 2023
1 parent 263c7eb commit 16c72f9
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 11 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@databricks/databricks-vscode",
"version": "0.0.8",
"version": "0.0.9",
"private": true,
"workspaces": [
"packages/*"
Expand Down Expand Up @@ -43,4 +43,4 @@
"resolutions": {
"json5": "2.2.2"
}
}
}
8 changes: 8 additions & 0 deletions packages/databricks-sdk-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Release: v0.0.9

## packages/databricks-sdk-js

## <small>0.0.9 (2023-01-09)</small>

- Update license to Databricks License

# Release: v0.0.8

## packages/databricks-sdk-js
Expand Down
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.8",
"version": "0.0.9",
"description": "Databricks SDK",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/databricks-vscode-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Release: v0.0.9

## packages/databricks-vscode-types

## <small>0.0.9 (2023-01-09)</small>

- Update license to Databricks License

# Release: v0.0.8

## packages/databricks-vscode-types
Expand Down
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.8",
"version": "0.0.9",
"description": "Package with types and interfaces to develop extensions to the Databricks VSCode plugin",
"main": "index.js",
"types": "index.d.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/databricks-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Release: v0.0.9

## packages/databricks-vscode

## <small>0.0.9 (2023-01-09)</small>

- Fix: Don't show `start cluster` icon for terminating clusters. Wait for termination.
- Update license to Databricks License

# Release: v0.0.8

## packages/databricks-vscode
Expand Down
9 changes: 2 additions & 7 deletions 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": "LicenseRef-LICENSE",
"version": "0.0.8",
"version": "0.0.9",
"engines": {
"vscode": "^1.69.1"
},
Expand Down Expand Up @@ -252,12 +252,7 @@
},
{
"command": "databricks.connection.attachClusterQuickPick",
"when": "view == configurationView && viewItem == clusterDetached",
"group": "inline@1"
},
{
"command": "databricks.connection.attachClusterQuickPick",
"when": "view == configurationView && viewItem == clusterRunning || view == configurationView && viewItem == clusterStopped || view == configurationView && viewItem == clusterPending",
"when": "view == configurationView && viewItem == clusterDetached || view == configurationView && viewItem =~ /^databricks.cluster.*$/",
"group": "inline@1"
},
{
Expand Down

0 comments on commit 16c72f9

Please sign in to comment.