Skip to content

Commit b1eeb38

Browse files
committed
some cleanup and minor fixes
1 parent 6ad75aa commit b1eeb38

File tree

4 files changed

+16
-27
lines changed

4 files changed

+16
-27
lines changed

CHANGELOG.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# Release Notes
22

33
**v1.5.0:**
4-
- added support for [Widgets](#widgets) when running Notebooks
4+
- added support for [Widgets](README.md/#widgets) when running Notebooks
55

66
**v1.4.1:**
77
- fixed issue where the creation of `_sqldf` was also done for non-select statements resulting in duplicate exeuction of e.g. `INSERT` statements
88
- performance improvement when switching between Azure Databricks Connections
99

1010
**v1.4.0:**
1111
- fixed an issue with the `Create cluster` link
12-
- rework [Azure Connection Manager](#setup-and-configuration-azure-connection-manager) so it automatically uses existing crednetials without prompt
13-
- added `Open Explorer` action to locally synced workspace items in [Workspace Manager](#workspace-manager)
12+
- rework [Azure Connection Manager](README.md/#setup-and-configuration-azure-connection-manager) so it automatically uses existing crednetials without prompt
13+
- added `Open Explorer` action to locally synced workspace items in [Workspace Manager](README.md/#workspace-manager)
1414

1515
**v1.3.1:**
16-
- changed [Azure Connection Manager](#setup-and-configuration-azure-connection-manager) to use VSCode authentication instead of Azure Account Extension
16+
- changed [Azure Connection Manager](README.md/#setup-and-configuration-azure-connection-manager) to use VSCode authentication instead of Azure Account Extension
1717
- fixed issue with downloading workspace folders
1818

1919
**v1.3.0:**
@@ -25,8 +25,8 @@
2525
- fixed parsing of `apiRootUrl` when reading from the config (only taking schema+authority now)
2626

2727
**v1.2.4:**
28-
- added `Pin` and `Unpin` to [Cluster Manager](#cluster-manager)
29-
- minor fixes [Cluster Manager](#cluster-manager)
28+
- added `Pin` and `Unpin` to [Cluster Manager](README.md/#cluster-manager)
29+
- minor fixes [Cluster Manager](README.md/#cluster-manager)
3030
- improved input via textboxes
3131

3232
**v1.2.3:**
@@ -41,7 +41,7 @@
4141
- fixed an issue with `%run` and absolute paths ([#93](/../../issues/93))
4242
- fixed an issue with `Files in Repos` ([#101](/../../issues/101))
4343
- fixed an issues with CLI Connection Manager ([#99](/../../issues/99))
44-
- fixed an issue when up-/downloading whole folders recursively in [Workspace Manager](#workspace-manager)
44+
- fixed an issue when up-/downloading whole folders recursively in [Workspace Manager](README.md/#workspace-manager)
4545
- prepare to make extension work in the web
4646
- reworked API connection to use generic [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) instead of Axios library
4747
- added build config for web-extension
@@ -59,17 +59,17 @@
5959
- added auto-refresh for new notebook kernels
6060

6161
**v1.1.2:**
62-
- make [File System Integration](#file-system-integration) work without non-notebook files (e.g. Files in Repos)
62+
- make [File System Integration](README.md/#file-system-integration) work without non-notebook files (e.g. Files in Repos)
6363

6464
**v1.1.1:**
65-
- make [File System Integration](#file-system-integration) work without having to open the Databricks tab first
66-
- fixed issues with [File System Integration](#file-system-integration)
65+
- make [File System Integration](README.md/#file-system-integration) work without having to open the Databricks tab first
66+
- fixed issues with [File System Integration](README.md/#file-system-integration)
6767
- folders with a single sub-folder only now work
6868
- fixed an issue where Repos did not work/could not be browsed properly
6969
- switch focus to VSCode Explorer when adding DBFS/Workspace to the VSCode workspace
70-
- added `Pull` Button to the [Repo Manager](#repo-manager) to pull the latest changes from Git
70+
- added `Pull` Button to the [Repo Manager](README.md/#repo-manager) to pull the latest changes from Git
7171
- added proper HTML output for notebooks/executions that returned HTML as plain text
72-
- fixed issue with [Workspace Manager](#workspace-manager) where files could not be downloaded properly anymore
72+
- fixed issue with [Workspace Manager](README.md/#workspace-manager) where files could not be downloaded properly anymore
7373

7474
**v1.1.0:**
7575
- added File System APIs for `dbfs:/` (same as in Databricks) and also `dbws:/` for the workspace/notebooks
@@ -79,8 +79,8 @@
7979
- added packaging of the source code with webpack for improved loading times
8080

8181
**v1.0.0:**
82-
- added support for [Notebook Kernel](#notebook-kernel) to allow execution of code on the Databricks cluster from within VSCode notebooks
82+
- added support for [Notebook Kernel](README.md/#notebook-kernel) to allow execution of code on the Databricks cluster from within VSCode notebooks
8383
- major improvements for useability and user-interaction
8484
- performance improvements when refreshing tree-views
8585
- improved logging and output of messages
86-
- use native VSCode icons instead of custom ones
86+
- use native VSCode icons instead of custom ones

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ To mitigate those limitations, we highly recommend to:
236236

237237
You can also update the values of all already loaded widgets at once using the `Update Widgets` button in the notebook toolbar. If you simply update the widgets, they will not be re-evaluated (in case they are dynamic)! To re-evaluated them, you need to run the cell(s) where the widget(s) are created again.
238238

239-
240239
# File System Integration
241240
![File System Integration](/images/FileSystemIntegration.jpg?raw=true "File System Integration")
242241

package.json

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "databricks-vscode",
33
"displayName": "Databricks VSCode",
4-
"description": "Extension to manage your Databricks workspace and ease local development",
5-
"version": "1.5.0",
4+
"description": "Run notebooks cell-by-cell, browse and edit your Databricks Workspace, DBFS, Clusters, Jobs, Secrets, Repos and SQL. Supports Azure Databricks, Databricks on AWS and Databricks on GCP.",
5+
"version": "1.5.1",
66
"publisher": "paiqo",
77
"icon": "resources/databricks_extension.png",
88
"author": {
@@ -47,18 +47,9 @@
4747
"AWS",
4848
"GCP",
4949
"data",
50-
"notebookKernelInteractive",
5150
"notebookKernelJupyterNotebook"
5251
],
5352
"activationEvents": [
54-
"onView:databricksConnections",
55-
"onView:databricksWorkspace",
56-
"onView:databricksClusters",
57-
"onView:databricksJobs",
58-
"onView:databricksFS",
59-
"onView:databricksSecrets",
60-
"onView:databricksSql",
61-
"onView:databricksRepos",
6253
"onFileSystem:dbfs",
6354
"onFileSystem:dbws"
6455
],

src/extension.ts

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import { FSHelper } from './helpers/FSHelper';
3434
import { DatabricksKernelManager } from './vscode/notebook/DatabricksKernelManager';
3535
import { DatabricksSQLTreeItem } from './vscode/treeviews/sql/DatabricksSQLTreeItem';
3636
import { DatabricksSecretTreeItem } from './vscode/treeviews/secrets/DatabricksSecretTreeItem';
37-
import { Helper } from './helpers/Helper';
3837

3938
export async function activate(context: vscode.ExtensionContext) {
4039

0 commit comments

Comments
 (0)