@jupyterlab/notebook 4.4.0-beta.0 → 4.4.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/notebooklspadapter.js +1 -1
- package/package.json +19 -19
- package/src/notebooklspadapter.ts +1 -1
|
@@ -157,7 +157,7 @@ export class NotebookAdapter extends WidgetLSPAdapter {
|
|
|
157
157
|
this.reloadConnection();
|
|
158
158
|
}
|
|
159
159
|
else {
|
|
160
|
-
console.log('Keeping old LSP connection as the new kernel uses the same
|
|
160
|
+
console.log('Keeping old LSP connection as the new kernel uses the same language');
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/notebook",
|
|
3
|
-
"version": "4.4.0-beta.
|
|
3
|
+
"version": "4.4.0-beta.2",
|
|
4
4
|
"description": "JupyterLab - Notebook",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -41,23 +41,23 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@jupyter/ydoc": "^3.0.0",
|
|
44
|
-
"@jupyterlab/apputils": "^4.5.0-beta.
|
|
45
|
-
"@jupyterlab/cells": "^4.4.0-beta.
|
|
46
|
-
"@jupyterlab/codeeditor": "^4.4.0-beta.
|
|
47
|
-
"@jupyterlab/codemirror": "^4.4.0-beta.
|
|
48
|
-
"@jupyterlab/coreutils": "^6.4.0-beta.
|
|
49
|
-
"@jupyterlab/docregistry": "^4.4.0-beta.
|
|
50
|
-
"@jupyterlab/documentsearch": "^4.4.0-beta.
|
|
51
|
-
"@jupyterlab/lsp": "^4.4.0-beta.
|
|
52
|
-
"@jupyterlab/nbformat": "^4.4.0-beta.
|
|
53
|
-
"@jupyterlab/observables": "^5.4.0-beta.
|
|
54
|
-
"@jupyterlab/rendermime": "^4.4.0-beta.
|
|
55
|
-
"@jupyterlab/services": "^7.4.0-beta.
|
|
56
|
-
"@jupyterlab/settingregistry": "^4.4.0-beta.
|
|
57
|
-
"@jupyterlab/statusbar": "^4.4.0-beta.
|
|
58
|
-
"@jupyterlab/toc": "^6.4.0-beta.
|
|
59
|
-
"@jupyterlab/translation": "^4.4.0-beta.
|
|
60
|
-
"@jupyterlab/ui-components": "^4.4.0-beta.
|
|
44
|
+
"@jupyterlab/apputils": "^4.5.0-beta.2",
|
|
45
|
+
"@jupyterlab/cells": "^4.4.0-beta.2",
|
|
46
|
+
"@jupyterlab/codeeditor": "^4.4.0-beta.2",
|
|
47
|
+
"@jupyterlab/codemirror": "^4.4.0-beta.2",
|
|
48
|
+
"@jupyterlab/coreutils": "^6.4.0-beta.2",
|
|
49
|
+
"@jupyterlab/docregistry": "^4.4.0-beta.2",
|
|
50
|
+
"@jupyterlab/documentsearch": "^4.4.0-beta.2",
|
|
51
|
+
"@jupyterlab/lsp": "^4.4.0-beta.2",
|
|
52
|
+
"@jupyterlab/nbformat": "^4.4.0-beta.2",
|
|
53
|
+
"@jupyterlab/observables": "^5.4.0-beta.2",
|
|
54
|
+
"@jupyterlab/rendermime": "^4.4.0-beta.2",
|
|
55
|
+
"@jupyterlab/services": "^7.4.0-beta.2",
|
|
56
|
+
"@jupyterlab/settingregistry": "^4.4.0-beta.2",
|
|
57
|
+
"@jupyterlab/statusbar": "^4.4.0-beta.2",
|
|
58
|
+
"@jupyterlab/toc": "^6.4.0-beta.2",
|
|
59
|
+
"@jupyterlab/translation": "^4.4.0-beta.2",
|
|
60
|
+
"@jupyterlab/ui-components": "^4.4.0-beta.2",
|
|
61
61
|
"@lumino/algorithm": "^2.0.2",
|
|
62
62
|
"@lumino/coreutils": "^2.2.0",
|
|
63
63
|
"@lumino/disposable": "^2.1.3",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"react": "^18.2.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@jupyterlab/testing": "^4.4.0-beta.
|
|
75
|
+
"@jupyterlab/testing": "^4.4.0-beta.2",
|
|
76
76
|
"@types/jest": "^29.2.0",
|
|
77
77
|
"jest": "^29.2.0",
|
|
78
78
|
"rimraf": "~5.0.5",
|
|
@@ -201,7 +201,7 @@ export class NotebookAdapter extends WidgetLSPAdapter<NotebookPanel> {
|
|
|
201
201
|
this.reloadConnection();
|
|
202
202
|
} else {
|
|
203
203
|
console.log(
|
|
204
|
-
'Keeping old LSP connection as the new kernel uses the same
|
|
204
|
+
'Keeping old LSP connection as the new kernel uses the same language'
|
|
205
205
|
);
|
|
206
206
|
}
|
|
207
207
|
} catch (err) {
|