You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release 1.4.0 with the notification about upcoming v2 release
---------
Co-authored-by: releasebot <[email protected]>
Co-authored-by: Ilia Babanov <[email protected]>
Co-authored-by: Julia Crawford (Databricks) <[email protected]>
Copy file name to clipboardExpand all lines: packages/databricks-vscode/CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,12 @@
1
+
# Release: v1.4.0
2
+
3
+
## packages/databricks-vscode
4
+
5
+
## 1.4.0 (2024-08-28)
6
+
7
+
- Added a notification about the upcoming V2 release:
8
+
> **Version 2 of the extension will soon be made the default. With this update it is easier to set up your project, integrate with Databricks Asset Bundles, and run your code remotely. [Learn more](https://docs.databricks.com/dev-tools/vscode-ext/index.html).**
Copy file name to clipboardExpand all lines: packages/databricks-vscode/src/whatsNewPopup.ts
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ import {StateStorage} from "./vscode-objs/StateStorage";
4
4
importpathfrom"path";
5
5
import{exists}from"fs-extra";
6
6
import*assemverfrom"semver";
7
+
import{openExternal}from"./utils/urlUtils";
7
8
8
9
exportasyncfunctionfindFileFowWhatsNew(
9
10
context: ExtensionContext,
@@ -33,6 +34,18 @@ export async function findFileFowWhatsNew(
33
34
returncontext.asAbsolutePath("CHANGELOG.md");
34
35
}
35
36
37
+
asyncfunctionshowV2Notification(){
38
+
constchoice=awaitwindow.showInformationMessage(
39
+
"Version 2 of the extension will soon be made the default. With this update it is easier to set up your project, integrate with Databricks Asset Bundles, and run your code remotely.",
0 commit comments