Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If applicable, add screenshots to help explain your problem.

**System information:**

1. Paste the output ot the `Help: About` command (CMD-Shift-P).
1. Paste the output of the `Help: About` command (CMD-Shift-P).
2. Databricks Extension Version

**Databricks Extension Logs**
Expand Down
2 changes: 1 addition & 1 deletion packages/databricks-vscode-types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export async function activate(context: vscode.ExtensionContext) {
### Adding a view to the Databricks activity bar

```js
"contributes" {
"contributes": {
// ...
"views": {
"databricksBar": [
Expand Down
10 changes: 5 additions & 5 deletions packages/databricks-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
## (2025-03-04)

- Add Documentation panel
- Ensure run button is visibilite for notebook editors
- Ensure run button is visible for notebook editors
- Properly terminate debug session if the workflow webview was closed
- Update Databricks CLI to v0.242.0

Expand Down Expand Up @@ -573,7 +573,7 @@ CLI Changes

- Fix: Fix error handling when repos limit is reached, fixes [#726](https://github.com/databricks/databricks-vscode/issues/726)
- Patch: Port error handling code from GO SDK
- Telemety: Record SDK AuthType instead of VSCode AuthType
- Telemetry: Record SDK AuthType instead of VSCode AuthType
- Fix: Bump dependencies
- Feature: Support all authentication methods for interactive debugging with dbconnect.
- Fix: Improve error message to switch from repos to workspace FS.
Expand Down Expand Up @@ -606,7 +606,7 @@ CLI Changes
## <small>0.3.11 (2023-04-25)</small>

- Feature: All customers should start seeing prompt for switching to using Workspace as sync destination.
- Feature: Move autcompletion for globals to `__builtins__.py` from internal stubs.
- Feature: Move autocompletion for globals to `__builtins__.py` from internal stubs.
- Fix: Prepend cwd to PYTHONPATH so that local changes take precedence over installed libraries, fixes [#673](https://github.com/databricks/databricks-vscode/issues/673)

# Release: v0.3.10
Expand Down Expand Up @@ -682,7 +682,7 @@ CLI Changes
- Feature: Add `databricks.overrideDatabricksConfigFile` VS Code setting to override the location of `.databrickscfg` file, closes [#518](https://github.com/databricks/databricks-vscode/issues/518)
- Fix: jump-to-error links were not displayed when `Run File on Databricks` runs failed
- Fix: sync was hanging when moving files
- Fix: Files with certain special charecters (such as #-hash) in their names were not synced correctly.
- Fix: Files with certain special characters (such as #-hash) in their names were not synced correctly.

# Release: v0.3.2

Expand Down Expand Up @@ -856,7 +856,7 @@ CLI Changes
- 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
- Improve handling cases where the user doesn't have 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

Expand Down
6 changes: 3 additions & 3 deletions packages/databricks-vscode/DATABRICKS.quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The Databricks extension for Visual Studio Code enables you to connect to your remote Databricks workspaces from Visual Studio Code.

> 📘 **Note**: The [User Guide](https://docs.databricks.com/dev-tools/vscode-ext.html) contains comprehesive documentation about the Databricks extension.
> 📘 **Note**: The [User Guide](https://docs.databricks.com/dev-tools/vscode-ext.html) contains comprehensive documentation about the Databricks extension.

# Features

Expand Down Expand Up @@ -90,7 +90,7 @@ The extension provides easy setup for cell-by-cell running and debugging noteboo

Databricks Asset Bundles make it possible to describe Databricks resources such as jobs, pipelines, and notebooks as source files. These source files provide an end-to-end definition of a project, including how it should be structured, tested, and deployed, which makes it easier to collaborate on projects during active development. For more information, see [Databricks Asset Bundles](https://docs.databricks.com/en/dev-tools/bundles/index.html).

### <a id="deploy-dab"></a>Deploying Databricks Asset Bundles?
### <a id="deploy-dab"></a>Deploying Databricks Asset Bundles

1. In the Databricks extension panel, find the "Bundle Resource Explorer" view.
2. Click on the "Deploy" button.
Expand Down Expand Up @@ -123,7 +123,7 @@ By default, a job is run using a jobs cluster. You can change this behavior and

If you are using Databricks extension v1, your project will automatically be migrated a [Databricks Asset Bundle](#what-is-dab) when you open it in v2. The migration process will create a new [`databricks.yml`](#what-is-databricksyml) file in the root of your project and move the configurations from the old `.databricks/project.json` to the new `databricks.yml` file.

> **Note**: This means that you will start seeing a `databricks.yml` file in your project root directory and in your version control system change logs. We recommend comitting this file to your version control system.
> **Note**: This means that you will start seeing a `databricks.yml` file in your project root directory and in your version control system change logs. We recommend committing this file to your version control system.

## <a id="what-is-databricksyml"></a>What is databricks.yml?

Expand Down
2 changes: 1 addition & 1 deletion packages/databricks-vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The extension is available from the [Visual Studio Marketplace](https://marketpl
- The [Quick Start Guide](DATABRICKS.quickstart.md) provides an overview
of common features.
- The [User Guide](https://docs.databricks.com/dev-tools/vscode-ext.html)
contains comprehesive documentation about the Databricks extension.
contains comprehensive documentation about the Databricks extension.

### Telemetry

Expand Down
Loading