Skip to content

Commit ef67879

Browse files
Update to JupyterLab 4.0.0a34 (#6732)
* Update `@jupyterlab` and `@lumino`packages * Remove docprovider and collaboration packages * Fix rendermime * Drop `@types/react` * Fix `ICompletionProviderManager` * Bump jupyterlab Python package * Update Jupyter Server config * Ignore F821 for now * Try `LabServerApp` * Update Playwright Snapshots * Update Playwright Snapshots * Remove the `--collaborative` flag --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 80c04e1 commit ef67879

File tree

26 files changed

+2244
-2929
lines changed

26 files changed

+2244
-2929
lines changed

.github/workflows/buildutils.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: |
29-
python -m pip install -U "jupyterlab>=4.0.0a33,<5" hatch
29+
python -m pip install -U "jupyterlab>=4.0.0a34,<5" hatch
3030
jlpm
3131
jlpm run build
3232
@@ -76,6 +76,6 @@ jobs:
7676

7777
- name: Install dependencies
7878
run: |
79-
python -m pip install -U "jupyterlab>=4.0.0a33,<5" pip
79+
python -m pip install -U "jupyterlab>=4.0.0a34,<5" pip
8080
jlpm
8181
jlpm run build

app/index.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ async function main() {
9898
require('@jupyterlab/completer-extension').default.filter(({ id }) =>
9999
[
100100
'@jupyterlab/completer-extension:base-service',
101-
'@jupyterlab/completer-extension:tracker'
101+
'@jupyterlab/completer-extension:manager'
102102
].includes(id)
103103
),
104104
require('@jupyterlab/console-extension').default.filter(({ id }) =>
@@ -123,7 +123,7 @@ async function main() {
123123
require('@jupyterlab/filebrowser-extension').default.filter(({ id }) =>
124124
[
125125
'@jupyterlab/filebrowser-extension:factory',
126-
'@jupyterlab/filebrowser-extension:defaultFileBrowser'
126+
'@jupyterlab/filebrowser-extension:default-file-browser'
127127
].includes(id)
128128
),
129129
require('@jupyterlab/fileeditor-extension').default.filter(({ id }) =>
@@ -152,7 +152,6 @@ async function main() {
152152
require('@jupyterlab/translation-extension'),
153153
require('@jupyterlab/ui-components-extension'),
154154
// Add the "Hub Control Panel" menu option when running in JupyterHub
155-
require('@jupyterlab/collaboration-extension'),
156155
require('@jupyterlab/hub-extension')
157156
];
158157

app/package.json

+106-113
Original file line numberDiff line numberDiff line change
@@ -23,74 +23,71 @@
2323
"@jupyter-notebook/tree-extension": "~7.0.0-alpha.12",
2424
"@jupyter-notebook/ui-components": "~7.0.0-alpha.12",
2525
"@jupyter/ydoc": "~0.3.1",
26-
"@jupyterlab/application": "~4.0.0-alpha.18",
27-
"@jupyterlab/application-extension": "~4.0.0-alpha.18",
28-
"@jupyterlab/apputils": "~4.0.0-alpha.18",
29-
"@jupyterlab/apputils-extension": "~4.0.0-alpha.18",
30-
"@jupyterlab/cell-toolbar": "~4.0.0-alpha.18",
31-
"@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.18",
32-
"@jupyterlab/celltags": "~4.0.0-alpha.18",
33-
"@jupyterlab/celltags-extension": "~4.0.0-alpha.18",
34-
"@jupyterlab/codeeditor": "~4.0.0-alpha.18",
35-
"@jupyterlab/codemirror": "~4.0.0-alpha.18",
36-
"@jupyterlab/codemirror-extension": "~4.0.0-alpha.18",
37-
"@jupyterlab/collaboration": "~4.0.0-alpha.18",
38-
"@jupyterlab/collaboration-extension": "~4.0.0-alpha.18",
39-
"@jupyterlab/completer": "~4.0.0-alpha.18",
40-
"@jupyterlab/completer-extension": "~4.0.0-alpha.18",
41-
"@jupyterlab/console": "~4.0.0-alpha.18",
42-
"@jupyterlab/console-extension": "~4.0.0-alpha.18",
43-
"@jupyterlab/coreutils": "~6.0.0-alpha.18",
44-
"@jupyterlab/debugger": "~4.0.0-alpha.18",
45-
"@jupyterlab/debugger-extension": "~4.0.0-alpha.18",
46-
"@jupyterlab/docmanager": "~4.0.0-alpha.18",
47-
"@jupyterlab/docmanager-extension": "~4.0.0-alpha.18",
48-
"@jupyterlab/docprovider": "~4.0.0-alpha.18",
49-
"@jupyterlab/documentsearch": "~4.0.0-alpha.18",
50-
"@jupyterlab/documentsearch-extension": "~4.0.0-alpha.18",
51-
"@jupyterlab/filebrowser": "~4.0.0-alpha.18",
52-
"@jupyterlab/filebrowser-extension": "~4.0.0-alpha.18",
53-
"@jupyterlab/fileeditor": "~4.0.0-alpha.18",
54-
"@jupyterlab/fileeditor-extension": "~4.0.0-alpha.18",
55-
"@jupyterlab/htmlviewer": "~4.0.0-alpha.18",
56-
"@jupyterlab/htmlviewer-extension": "~4.0.0-alpha.18",
57-
"@jupyterlab/hub-extension": "~4.0.0-alpha.18",
58-
"@jupyterlab/javascript-extension": "~4.0.0-alpha.18",
59-
"@jupyterlab/json-extension": "~4.0.0-alpha.18",
60-
"@jupyterlab/lsp": "~4.0.0-alpha.18",
61-
"@jupyterlab/lsp-extension": "~4.0.0-alpha.18",
62-
"@jupyterlab/mainmenu": "~4.0.0-alpha.18",
63-
"@jupyterlab/mainmenu-extension": "~4.0.0-alpha.18",
64-
"@jupyterlab/markedparser-extension": "~4.0.0-alpha.18",
65-
"@jupyterlab/mathjax2-extension": "~4.0.0-alpha.18",
66-
"@jupyterlab/notebook": "~4.0.0-alpha.18",
67-
"@jupyterlab/notebook-extension": "~4.0.0-alpha.18",
68-
"@jupyterlab/observables": "~5.0.0-alpha.18",
69-
"@jupyterlab/outputarea": "~4.0.0-alpha.18",
70-
"@jupyterlab/pdf-extension": "~4.0.0-alpha.18",
71-
"@jupyterlab/rendermime": "~4.0.0-alpha.18",
72-
"@jupyterlab/rendermime-extension": "~4.0.0-alpha.18",
73-
"@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.18",
74-
"@jupyterlab/running-extension": "~4.0.0-alpha.18",
75-
"@jupyterlab/services": "~7.0.0-alpha.18",
76-
"@jupyterlab/settingeditor": "~4.0.0-alpha.18",
77-
"@jupyterlab/settingeditor-extension": "~4.0.0-alpha.18",
78-
"@jupyterlab/settingregistry": "~4.0.0-alpha.18",
79-
"@jupyterlab/shortcuts-extension": "~4.0.0-alpha.18",
80-
"@jupyterlab/statedb": "~4.0.0-alpha.18",
81-
"@jupyterlab/statusbar": "~4.0.0-alpha.18",
82-
"@jupyterlab/terminal": "~4.0.0-alpha.18",
83-
"@jupyterlab/terminal-extension": "~4.0.0-alpha.18",
84-
"@jupyterlab/theme-dark-extension": "~4.0.0-alpha.18",
85-
"@jupyterlab/theme-light-extension": "~4.0.0-alpha.18",
86-
"@jupyterlab/toc-extension": "~6.0.0-alpha.18",
87-
"@jupyterlab/tooltip": "~4.0.0-alpha.18",
88-
"@jupyterlab/tooltip-extension": "~4.0.0-alpha.18",
89-
"@jupyterlab/translation": "~4.0.0-alpha.18",
90-
"@jupyterlab/translation-extension": "~4.0.0-alpha.18",
91-
"@jupyterlab/ui-components": "~4.0.0-alpha.33",
92-
"@jupyterlab/ui-components-extension": "~4.0.0-alpha.18",
93-
"@jupyterlab/vega5-extension": "~4.0.0-alpha.18",
26+
"@jupyterlab/application": "~4.0.0-alpha.19",
27+
"@jupyterlab/application-extension": "~4.0.0-alpha.19",
28+
"@jupyterlab/apputils": "~4.0.0-alpha.19",
29+
"@jupyterlab/apputils-extension": "~4.0.0-alpha.19",
30+
"@jupyterlab/cell-toolbar": "~4.0.0-alpha.19",
31+
"@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.19",
32+
"@jupyterlab/celltags": "~4.0.0-alpha.19",
33+
"@jupyterlab/celltags-extension": "~4.0.0-alpha.19",
34+
"@jupyterlab/codeeditor": "~4.0.0-alpha.19",
35+
"@jupyterlab/codemirror": "~4.0.0-alpha.19",
36+
"@jupyterlab/codemirror-extension": "~4.0.0-alpha.19",
37+
"@jupyterlab/completer": "~4.0.0-alpha.19",
38+
"@jupyterlab/completer-extension": "~4.0.0-alpha.19",
39+
"@jupyterlab/console": "~4.0.0-alpha.19",
40+
"@jupyterlab/console-extension": "~4.0.0-alpha.19",
41+
"@jupyterlab/coreutils": "~6.0.0-alpha.19",
42+
"@jupyterlab/debugger": "~4.0.0-alpha.19",
43+
"@jupyterlab/debugger-extension": "~4.0.0-alpha.19",
44+
"@jupyterlab/docmanager": "~4.0.0-alpha.19",
45+
"@jupyterlab/docmanager-extension": "~4.0.0-alpha.19",
46+
"@jupyterlab/documentsearch": "~4.0.0-alpha.19",
47+
"@jupyterlab/documentsearch-extension": "~4.0.0-alpha.19",
48+
"@jupyterlab/filebrowser": "~4.0.0-alpha.19",
49+
"@jupyterlab/filebrowser-extension": "~4.0.0-alpha.19",
50+
"@jupyterlab/fileeditor": "~4.0.0-alpha.19",
51+
"@jupyterlab/fileeditor-extension": "~4.0.0-alpha.19",
52+
"@jupyterlab/htmlviewer": "~4.0.0-alpha.19",
53+
"@jupyterlab/htmlviewer-extension": "~4.0.0-alpha.19",
54+
"@jupyterlab/hub-extension": "~4.0.0-alpha.19",
55+
"@jupyterlab/javascript-extension": "~4.0.0-alpha.19",
56+
"@jupyterlab/json-extension": "~4.0.0-alpha.19",
57+
"@jupyterlab/lsp": "~4.0.0-alpha.19",
58+
"@jupyterlab/lsp-extension": "~4.0.0-alpha.19",
59+
"@jupyterlab/mainmenu": "~4.0.0-alpha.19",
60+
"@jupyterlab/mainmenu-extension": "~4.0.0-alpha.19",
61+
"@jupyterlab/markedparser-extension": "~4.0.0-alpha.19",
62+
"@jupyterlab/mathjax2-extension": "~4.0.0-alpha.19",
63+
"@jupyterlab/notebook": "~4.0.0-alpha.19",
64+
"@jupyterlab/notebook-extension": "~4.0.0-alpha.19",
65+
"@jupyterlab/observables": "~5.0.0-alpha.19",
66+
"@jupyterlab/outputarea": "~4.0.0-alpha.19",
67+
"@jupyterlab/pdf-extension": "~4.0.0-alpha.19",
68+
"@jupyterlab/rendermime": "~4.0.0-alpha.19",
69+
"@jupyterlab/rendermime-extension": "~4.0.0-alpha.19",
70+
"@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.19",
71+
"@jupyterlab/running-extension": "~4.0.0-alpha.19",
72+
"@jupyterlab/services": "~7.0.0-alpha.19",
73+
"@jupyterlab/settingeditor": "~4.0.0-alpha.19",
74+
"@jupyterlab/settingeditor-extension": "~4.0.0-alpha.19",
75+
"@jupyterlab/settingregistry": "~4.0.0-alpha.19",
76+
"@jupyterlab/shortcuts-extension": "~4.0.0-alpha.19",
77+
"@jupyterlab/statedb": "~4.0.0-alpha.19",
78+
"@jupyterlab/statusbar": "~4.0.0-alpha.19",
79+
"@jupyterlab/terminal": "~4.0.0-alpha.19",
80+
"@jupyterlab/terminal-extension": "~4.0.0-alpha.19",
81+
"@jupyterlab/theme-dark-extension": "~4.0.0-alpha.19",
82+
"@jupyterlab/theme-light-extension": "~4.0.0-alpha.19",
83+
"@jupyterlab/toc-extension": "~6.0.0-alpha.19",
84+
"@jupyterlab/tooltip": "~4.0.0-alpha.19",
85+
"@jupyterlab/tooltip-extension": "~4.0.0-alpha.19",
86+
"@jupyterlab/translation": "~4.0.0-alpha.19",
87+
"@jupyterlab/translation-extension": "~4.0.0-alpha.19",
88+
"@jupyterlab/ui-components": "~4.0.0-alpha.34",
89+
"@jupyterlab/ui-components-extension": "~4.0.0-alpha.19",
90+
"@jupyterlab/vega5-extension": "~4.0.0-alpha.19",
9491
"@lumino/algorithm": "~2.0.0-beta.0",
9592
"@lumino/application": "~2.0.0-beta.1",
9693
"@lumino/commands": "~2.0.0-beta.1",
@@ -119,50 +116,49 @@
119116
"@jupyter-notebook/tree": "^7.0.0-alpha.12",
120117
"@jupyter-notebook/tree-extension": "^7.0.0-alpha.12",
121118
"@jupyter-notebook/ui-components": "^7.0.0-alpha.12",
122-
"@jupyterlab/application-extension": "^4.0.0-alpha.18",
123-
"@jupyterlab/apputils-extension": "^4.0.0-alpha.18",
124-
"@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.18",
125-
"@jupyterlab/celltags": "^4.0.0-alpha.18",
126-
"@jupyterlab/celltags-extension": "^4.0.0-alpha.18",
127-
"@jupyterlab/codemirror": "^4.0.0-alpha.18",
128-
"@jupyterlab/codemirror-extension": "^4.0.0-alpha.18",
129-
"@jupyterlab/collaboration-extension": "^4.0.0-alpha.18",
130-
"@jupyterlab/completer-extension": "^4.0.0-alpha.18",
131-
"@jupyterlab/console-extension": "^4.0.0-alpha.18",
132-
"@jupyterlab/coreutils": "^6.0.0-alpha.18",
133-
"@jupyterlab/debugger-extension": "^4.0.0-alpha.18",
134-
"@jupyterlab/docmanager-extension": "^4.0.0-alpha.18",
135-
"@jupyterlab/documentsearch-extension": "^4.0.0-alpha.18",
136-
"@jupyterlab/filebrowser-extension": "^4.0.0-alpha.18",
137-
"@jupyterlab/fileeditor-extension": "^4.0.0-alpha.18",
138-
"@jupyterlab/htmlviewer-extension": "^4.0.0-alpha.18",
139-
"@jupyterlab/hub-extension": "^4.0.0-alpha.18",
140-
"@jupyterlab/javascript-extension": "^4.0.0-alpha.18",
141-
"@jupyterlab/json-extension": "^4.0.0-alpha.18",
142-
"@jupyterlab/lsp": "^4.0.0-alpha.18",
143-
"@jupyterlab/lsp-extension": "^4.0.0-alpha.18",
144-
"@jupyterlab/mainmenu-extension": "^4.0.0-alpha.18",
145-
"@jupyterlab/markedparser-extension": "^4.0.0-alpha.18",
146-
"@jupyterlab/mathjax2-extension": "^4.0.0-alpha.18",
147-
"@jupyterlab/notebook-extension": "^4.0.0-alpha.18",
148-
"@jupyterlab/pdf-extension": "^4.0.0-alpha.18",
149-
"@jupyterlab/rendermime-extension": "^4.0.0-alpha.18",
150-
"@jupyterlab/running-extension": "^4.0.0-alpha.18",
151-
"@jupyterlab/settingeditor": "^4.0.0-alpha.18",
152-
"@jupyterlab/settingeditor-extension": "^4.0.0-alpha.18",
153-
"@jupyterlab/shortcuts-extension": "^4.0.0-alpha.18",
154-
"@jupyterlab/terminal-extension": "^4.0.0-alpha.18",
155-
"@jupyterlab/theme-dark-extension": "^4.0.0-alpha.18",
156-
"@jupyterlab/theme-light-extension": "^4.0.0-alpha.18",
157-
"@jupyterlab/toc-extension": "^6.0.0-alpha.18",
158-
"@jupyterlab/tooltip-extension": "^4.0.0-alpha.18",
159-
"@jupyterlab/translation-extension": "^4.0.0-alpha.18",
160-
"@jupyterlab/ui-components-extension": "^4.0.0-alpha.18",
161-
"@jupyterlab/vega5-extension": "^4.0.0-alpha.18"
119+
"@jupyterlab/application-extension": "^4.0.0-alpha.19",
120+
"@jupyterlab/apputils-extension": "^4.0.0-alpha.19",
121+
"@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.19",
122+
"@jupyterlab/celltags": "^4.0.0-alpha.19",
123+
"@jupyterlab/celltags-extension": "^4.0.0-alpha.19",
124+
"@jupyterlab/codemirror": "^4.0.0-alpha.19",
125+
"@jupyterlab/codemirror-extension": "^4.0.0-alpha.19",
126+
"@jupyterlab/completer-extension": "^4.0.0-alpha.19",
127+
"@jupyterlab/console-extension": "^4.0.0-alpha.19",
128+
"@jupyterlab/coreutils": "^6.0.0-alpha.19",
129+
"@jupyterlab/debugger-extension": "^4.0.0-alpha.19",
130+
"@jupyterlab/docmanager-extension": "^4.0.0-alpha.19",
131+
"@jupyterlab/documentsearch-extension": "^4.0.0-alpha.19",
132+
"@jupyterlab/filebrowser-extension": "^4.0.0-alpha.19",
133+
"@jupyterlab/fileeditor-extension": "^4.0.0-alpha.19",
134+
"@jupyterlab/htmlviewer-extension": "^4.0.0-alpha.19",
135+
"@jupyterlab/hub-extension": "^4.0.0-alpha.19",
136+
"@jupyterlab/javascript-extension": "^4.0.0-alpha.19",
137+
"@jupyterlab/json-extension": "^4.0.0-alpha.19",
138+
"@jupyterlab/lsp": "^4.0.0-alpha.19",
139+
"@jupyterlab/lsp-extension": "^4.0.0-alpha.19",
140+
"@jupyterlab/mainmenu-extension": "^4.0.0-alpha.19",
141+
"@jupyterlab/markedparser-extension": "^4.0.0-alpha.19",
142+
"@jupyterlab/mathjax2-extension": "^4.0.0-alpha.19",
143+
"@jupyterlab/notebook-extension": "^4.0.0-alpha.19",
144+
"@jupyterlab/pdf-extension": "^4.0.0-alpha.19",
145+
"@jupyterlab/rendermime-extension": "^4.0.0-alpha.19",
146+
"@jupyterlab/running-extension": "^4.0.0-alpha.19",
147+
"@jupyterlab/settingeditor": "^4.0.0-alpha.19",
148+
"@jupyterlab/settingeditor-extension": "^4.0.0-alpha.19",
149+
"@jupyterlab/shortcuts-extension": "^4.0.0-alpha.19",
150+
"@jupyterlab/terminal-extension": "^4.0.0-alpha.19",
151+
"@jupyterlab/theme-dark-extension": "^4.0.0-alpha.19",
152+
"@jupyterlab/theme-light-extension": "^4.0.0-alpha.19",
153+
"@jupyterlab/toc-extension": "^6.0.0-alpha.19",
154+
"@jupyterlab/tooltip-extension": "^4.0.0-alpha.19",
155+
"@jupyterlab/translation-extension": "^4.0.0-alpha.19",
156+
"@jupyterlab/ui-components-extension": "^4.0.0-alpha.19",
157+
"@jupyterlab/vega5-extension": "^4.0.0-alpha.19"
162158
},
163159
"devDependencies": {
164-
"@jupyterlab/builder": "^4.0.0-alpha.18",
165-
"@jupyterlab/buildutils": "^4.0.0-alpha.18",
160+
"@jupyterlab/builder": "^4.0.0-alpha.19",
161+
"@jupyterlab/buildutils": "^4.0.0-alpha.19",
166162
"@types/rimraf": "^3.0.2",
167163
"css-loader": "~5.0.1",
168164
"fs-extra": "^8.1.0",
@@ -182,7 +178,6 @@
182178
"name": "Jupyter Notebook",
183179
"extensions": [
184180
"@jupyter-notebook/application-extension",
185-
"@jupyterlab/collaboration-extension",
186181
"@jupyter-notebook/console-extension",
187182
"@jupyter-notebook/docmanager-extension",
188183
"@jupyter-notebook/documentsearch-extension",
@@ -229,13 +224,11 @@
229224
"@jupyterlab/celltags",
230225
"@jupyterlab/codeeditor",
231226
"@jupyterlab/codemirror",
232-
"@jupyterlab/collaboration",
233227
"@jupyterlab/completer",
234228
"@jupyterlab/console",
235229
"@jupyterlab/coreutils",
236230
"@jupyterlab/debugger",
237231
"@jupyterlab/docmanager",
238-
"@jupyterlab/docprovider",
239232
"@jupyterlab/documentsearch",
240233
"@jupyterlab/filebrowser",
241234
"@jupyterlab/fileeditor",

buildutils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"watch": "tsc -w --listEmittedFiles"
3131
},
3232
"dependencies": {
33-
"@jupyterlab/buildutils": "^4.0.0-alpha.18",
33+
"@jupyterlab/buildutils": "^4.0.0-alpha.19",
3434
"commander": "^6.2.0",
3535
"fs-extra": "^9.1.0",
3636
"typescript": "~4.9.3"

jupyter_config.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"LabApp": { "collaborative": true, "expose_app_in_browser": true },
3-
"JupyterNotebookApp": { "collaborative": true, "expose_app_in_browser": true }
2+
"LabApp": { "expose_app_in_browser": true },
3+
"JupyterNotebookApp": { "expose_app_in_browser": true }
44
}

notebook/app.py

-7
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def get_page_config(self): # noqa:C901
4747
"fullStaticUrl": ujoin(self.base_url, "static", self.name),
4848
"frontendUrl": ujoin(self.base_url, "/"),
4949
"exposeAppInBrowser": app.expose_app_in_browser,
50-
"collaborative": app.collaborative,
5150
}
5251

5352
if "hub_prefix" in app.serverapp.tornado_settings:
@@ -228,17 +227,11 @@ class JupyterNotebookApp(NotebookConfigShimMixin, LabServerApp):
228227
help="Whether to expose the global app instance to browser via window.jupyterapp",
229228
)
230229

231-
collaborative = Bool(False, config=True, help="Whether to enable collaborative mode.")
232-
233230
flags = flags
234231
flags["expose-app-in-browser"] = (
235232
{"JupyterNotebookApp": {"expose_app_in_browser": True}},
236233
"Expose the global app instance to browser via window.jupyterapp.",
237234
)
238-
flags["collaborative"] = (
239-
{"JupyterNotebookApp": {"collaborative": True}},
240-
"Whether to enable collaborative mode.",
241-
)
242235

243236
@default("static_dir")
244237
def _default_static_dir(self):

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"watch:lib": "lerna exec --stream --scope @jupyter-notebook/metapackage jlpm watch"
4444
},
4545
"devDependencies": {
46-
"@jupyterlab/buildutils": "^4.0.0-alpha.18",
46+
"@jupyterlab/buildutils": "^4.0.0-alpha.19",
4747
"@typescript-eslint/eslint-plugin": "^4.2.0",
4848
"@typescript-eslint/parser": "^4.2.0",
4949
"eslint": "^7.10.0",

packages/application-extension/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@
4141
"dependencies": {
4242
"@jupyter-notebook/application": "^7.0.0-alpha.12",
4343
"@jupyter-notebook/ui-components": "^7.0.0-alpha.12",
44-
"@jupyterlab/application": "^4.0.0-alpha.18",
45-
"@jupyterlab/apputils": "^4.0.0-alpha.18",
46-
"@jupyterlab/celltags": "^4.0.0-alpha.18",
47-
"@jupyterlab/codeeditor": "^4.0.0-alpha.18",
48-
"@jupyterlab/console": "^4.0.0-alpha.18",
49-
"@jupyterlab/coreutils": "^6.0.0-alpha.18",
50-
"@jupyterlab/docmanager": "^4.0.0-alpha.18",
51-
"@jupyterlab/docregistry": "^4.0.0-alpha.18",
52-
"@jupyterlab/mainmenu": "^4.0.0-alpha.18",
53-
"@jupyterlab/settingregistry": "^4.0.0-alpha.18",
54-
"@jupyterlab/translation": "^4.0.0-alpha.18",
44+
"@jupyterlab/application": "^4.0.0-alpha.19",
45+
"@jupyterlab/apputils": "^4.0.0-alpha.19",
46+
"@jupyterlab/celltags": "^4.0.0-alpha.19",
47+
"@jupyterlab/codeeditor": "^4.0.0-alpha.19",
48+
"@jupyterlab/console": "^4.0.0-alpha.19",
49+
"@jupyterlab/coreutils": "^6.0.0-alpha.19",
50+
"@jupyterlab/docmanager": "^4.0.0-alpha.19",
51+
"@jupyterlab/docregistry": "^4.0.0-alpha.19",
52+
"@jupyterlab/mainmenu": "^4.0.0-alpha.19",
53+
"@jupyterlab/settingregistry": "^4.0.0-alpha.19",
54+
"@jupyterlab/translation": "^4.0.0-alpha.19",
5555
"@lumino/coreutils": "^2.0.0-beta.0",
5656
"@lumino/disposable": "^2.0.0-beta.1",
5757
"@lumino/widgets": "^2.0.0-beta.1"

0 commit comments

Comments
 (0)