Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: v2.5.0 #1485

Merged
merged 2 commits into from
Dec 13, 2024
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.4.8",
"version": "2.5.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.5.0

## packages/databricks-vscode-types

## (2024-12-12)

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

## packages/databricks-vscode

## (2024-12-12)

- Check out [What's New 2.5](./resources/whats-new/2.5.md)
- New DLT features:
- Add validation and partial update actions
- Show events of the currently running updates
- Expose warning and error events as source code diagnostics
- Show pipeline datasets and their schemas in the resource explorer
- Expose Resource Explorer panel inline actions in context menus
- Increase the polling time for job run statuses
- Fix bundle logs showing 'undefined' or duplicating error messages
- Depend on new python debugger extension for local execution
- Update internal JS SDK
- Update Databricks CLI to v0.236.0

# Release: v2.4.8

## packages/databricks-vscode
Expand Down
4 changes: 2 additions & 2 deletions packages/databricks-vscode/NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This Software contains code from the following open source projects:
| [@nevware21/ts-utils](https://www.npmjs.com/package/@nevware21/ts-utils) | 0.9.5 | MIT | https://github.com/nevware21/ts-utils.git |
| [@types/ini](https://www.npmjs.com/package/@types/ini) | 4.1.1 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped.git |
| [@types/lodash](https://www.npmjs.com/package/@types/lodash) | 4.14.202 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped.git |
| [@types/node](https://www.npmjs.com/package/@types/node) | 18.19.50 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped.git |
| [@types/node](https://www.npmjs.com/package/@types/node) | 18.19.64 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped.git |
| [@types/semver](https://www.npmjs.com/package/@types/semver) | 7.5.8 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped.git |
| [@types/shell-quote](https://www.npmjs.com/package/@types/shell-quote) | 1.7.5 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped.git |
| [@types/triple-beam](https://www.npmjs.com/package/@types/triple-beam) | 1.3.2 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped.git |
Expand Down Expand Up @@ -63,7 +63,7 @@ This Software contains code from the following open source projects:
| [fn.name](https://www.npmjs.com/package/fn.name) | 1.1.0 | MIT | https://github.com/3rd-Eden/fn.name |
| [gaxios](https://www.npmjs.com/package/gaxios) | 6.7.1 | Apache-2.0 | googleapis/gaxios |
| [gcp-metadata](https://www.npmjs.com/package/gcp-metadata) | 6.1.0 | Apache-2.0 | googleapis/gcp-metadata |
| [google-auth-library](https://www.npmjs.com/package/google-auth-library) | 9.14.1 | Apache-2.0 | googleapis/google-auth-library-nodejs.git |
| [google-auth-library](https://www.npmjs.com/package/google-auth-library) | 9.14.2 | Apache-2.0 | googleapis/google-auth-library-nodejs.git |
| [gtoken](https://www.npmjs.com/package/gtoken) | 7.1.0 | MIT | google/node-gtoken |
| [https-proxy-agent](https://www.npmjs.com/package/https-proxy-agent) | 7.0.5 | MIT | https://github.com/TooTallNate/proxy-agents.git |
| [inherits](https://www.npmjs.com/package/inherits) | 2.0.4 | ISC | git://github.com/isaacs/inherits |
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.4.8",
"version": "2.5.0",
"engines": {
"vscode": "^1.86.0"
},
Expand Down
Loading