diff --git a/package.json b/package.json index c7712352d..e091fdbde 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@databricks/databricks-vscode", - "version": "2.4.8", + "version": "2.5.0", "private": true, "workspaces": [ "packages/*" diff --git a/packages/databricks-vscode-types/CHANGELOG.md b/packages/databricks-vscode-types/CHANGELOG.md index 216d678fb..7a608e877 100644 --- a/packages/databricks-vscode-types/CHANGELOG.md +++ b/packages/databricks-vscode-types/CHANGELOG.md @@ -1,3 +1,9 @@ +# Release: v2.5.0 + +## packages/databricks-vscode-types + +## (2024-12-12) + # Release: v2.4.8 ## packages/databricks-vscode-types diff --git a/packages/databricks-vscode-types/package.json b/packages/databricks-vscode-types/package.json index 0077b14f4..d32009359 100644 --- a/packages/databricks-vscode-types/package.json +++ b/packages/databricks-vscode-types/package.json @@ -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", diff --git a/packages/databricks-vscode/CHANGELOG.md b/packages/databricks-vscode/CHANGELOG.md index 9a2dddedd..a0e278f7b 100644 --- a/packages/databricks-vscode/CHANGELOG.md +++ b/packages/databricks-vscode/CHANGELOG.md @@ -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 diff --git a/packages/databricks-vscode/NOTICE.md b/packages/databricks-vscode/NOTICE.md index f9aa0166f..c8e908ca8 100644 --- a/packages/databricks-vscode/NOTICE.md +++ b/packages/databricks-vscode/NOTICE.md @@ -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 | @@ -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 | diff --git a/packages/databricks-vscode/package.json b/packages/databricks-vscode/package.json index c88c34f63..13a493914 100644 --- a/packages/databricks-vscode/package.json +++ b/packages/databricks-vscode/package.json @@ -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" },