-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Update to the latest Notebook API (#15416) #15602
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Updated to used the latest Notebook (proposed) API. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Fix failing smoke tests on CI. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,7 +28,7 @@ | |
| "theme": "dark" | ||
| }, | ||
| "engines": { | ||
| "vscode": "^1.51.0" | ||
| "vscode": "^1.54.0" | ||
| }, | ||
| "keywords": [ | ||
| "python", | ||
|
|
@@ -2082,7 +2082,7 @@ | |
| "@types/tmp": "0.0.33", | ||
| "@types/untildify": "^3.0.0", | ||
| "@types/uuid": "^3.4.3", | ||
| "@types/vscode": "~1.51.0", | ||
| "@types/vscode": "~1.53.0", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this different than the version of the engine?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. None of the API we are using for Notebooks is in stable, its all proposed API. |
||
| "@types/webpack-bundle-analyzer": "^2.13.0", | ||
| "@types/winreg": "^1.2.30", | ||
| "@types/xml2js": "^0.4.2", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brettcannon We don't want anyone on any older version of VS Code to get this new update.
The API changes are not backwards compatible.
Hence the restriction to ensure only those with 1.54 get this update.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@DonJayamanne then should this be "1.54.0" instead of "^1.54.0"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, thanks @joyceerhl , done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VSCode didn't like that in the engines setting, i think its not supported, leaving as ^.