Skip to content

Commit 7352a0a

Browse files
authored
Cherry pick fix for native notebook support into release branch (microsoft#15369)
* Fix problem with notebook apis not being used. (microsoft#15366) * Update changelog * Remove news file
1 parent 84a7c15 commit 7352a0a

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
([#15232](https://github.com/Microsoft/vscode-python/issues/15232))
3030
1. Ensure target environment is activated in the terminal when running install scripts.
3131
([#15285](https://github.com/Microsoft/vscode-python/issues/15285))
32+
1. Allow support for using notebook APIs in the VS code stable build.
33+
([#15364](https://github.com/Microsoft/vscode-python/issues/15364))
3234

3335
### Code Health
3436

src/client/common/application/notebook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class VSCodeNotebook implements IVSCodeNotebook {
8585
@inject(IDisposableRegistry) private readonly disposables: IDisposableRegistry,
8686
@inject(IApplicationEnvironment) readonly env: IApplicationEnvironment,
8787
) {
88-
if (this.useProposedApi && this.env.channel === 'insiders') {
88+
if (this.useProposedApi) {
8989
this.addEventHandlers();
9090
this.canUseNotebookApi = true;
9191
}

0 commit comments

Comments
 (0)