Skip to content
Merged
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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@databricks/databricks-vscode",
"version": "2.13.1",
"version": "2.14.0",
"private": true,
"workspaces": [
"packages/*"
Expand Down
6 changes: 6 additions & 0 deletions packages/databricks-vscode-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Release: v2.14.0

## packages/databricks-vscode-types

## (2026-08-20)

# Release: v2.13.1

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

## packages/databricks-vscode

## (2026-08-20)

- Introduce frictionless Python environment setup that makes local Python setup for Databricks development just work. Because the extension already knows the compute you are targeting — a cluster's DBR version or a serverless environment version — it uses that single input to automatically build a local `.venv` whose Python version and package set exactly match the runtime, eliminating the classic "works locally, breaks on Databricks" mismatch. This release delivers the fully automated uv path: one click in VS Code (or the `databricks environments setup-local` CLI command) resolves the target, fetches runtime-pinned dependency artifacts, installs the correct Python, and provisions a matched environment with `databricks-connect` ready to go (#2124) ([315f77d](https://github.com/databricks/databricks-vscode/commit/315f77d))
- Add explicit per-row Copy actions to the configuration view (#2115) ([fe1e4aa](https://github.com/databricks/databricks-vscode/commit/fe1e4aa))
- Update Databricks CLI to v1.13.0 (#2136, #2109) ([43af52d](https://github.com/databricks/databricks-vscode/commit/43af52d)) — see the [CLI release notes](https://github.com/databricks/cli/releases) for changes

# Release: v2.13.1

## packages/databricks-vscode
Expand Down
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": "LicenseRef-LICENSE",
"version": "2.13.1",
"version": "2.14.0",
"engines": {
"vscode": "^1.86.0",
"node": ">=22.0"
Expand Down
Loading