Skip to content

Commit f56a27c

Browse files
Update to JupyterLab v4.5.0a2 (#7694)
* Update to JupyterLab v4.5.0a2 * update playwright * Update Playwright Snapshots * Update Playwright Snapshots * add video and audio extensions * use upstream selectionChanged * remove httpx pin * use the same mermaid as lab * fix packaging * Revert "use the same mermaid as lab" This reverts commit f401700. --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6caeba2 commit f56a27c

File tree

26 files changed

+4573
-2605
lines changed

26 files changed

+4573
-2605
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,6 @@ notebook/templates/*.html
145145
# pixi environments
146146
.pixi
147147
*.egg-info
148+
149+
# Temporary files used for testing
150+
tmp/

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ repos:
4545
files: "^notebook"
4646
stages: [manual]
4747
args: ["--install-types", "--non-interactive"]
48-
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.5.0a1,<4.6"]
48+
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.5.0a2,<4.6"]
4949

5050
- repo: https://github.com/pre-commit/pygrep-hooks
5151
rev: 'v1.10.0'

app/package.json

Lines changed: 136 additions & 132 deletions
Large diffs are not rendered by default.

buildutils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"watch": "tsc -w --listEmittedFiles"
3030
},
3131
"dependencies": {
32-
"@jupyterlab/buildutils": "~4.5.0-alpha.1",
32+
"@jupyterlab/buildutils": "~4.5.0-alpha.2",
3333
"commander": "^6.2.0",
3434
"fs-extra": "^9.1.0",
3535
"semver": "^7.6.3",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"yjs": "^13.5.40"
5252
},
5353
"devDependencies": {
54-
"@jupyterlab/buildutils": "~4.5.0-alpha.1",
54+
"@jupyterlab/buildutils": "~4.5.0-alpha.2",
5555
"@typescript-eslint/eslint-plugin": "^5.55.0",
5656
"@typescript-eslint/parser": "^5.55.0",
5757
"eslint": "^8.36.0",

packages/application-extension/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@
4040
"dependencies": {
4141
"@jupyter-notebook/application": "^7.5.0-alpha.0",
4242
"@jupyter-notebook/ui-components": "^7.5.0-alpha.0",
43-
"@jupyterlab/application": "~4.5.0-alpha.1",
44-
"@jupyterlab/apputils": "~4.6.0-alpha.1",
45-
"@jupyterlab/codeeditor": "~4.5.0-alpha.1",
46-
"@jupyterlab/console": "~4.5.0-alpha.1",
47-
"@jupyterlab/coreutils": "~6.5.0-alpha.1",
48-
"@jupyterlab/docmanager": "~4.5.0-alpha.1",
49-
"@jupyterlab/docregistry": "~4.5.0-alpha.1",
50-
"@jupyterlab/mainmenu": "~4.5.0-alpha.1",
51-
"@jupyterlab/rendermime": "~4.5.0-alpha.1",
52-
"@jupyterlab/settingregistry": "~4.5.0-alpha.1",
53-
"@jupyterlab/translation": "~4.5.0-alpha.1",
43+
"@jupyterlab/application": "~4.5.0-alpha.2",
44+
"@jupyterlab/apputils": "~4.6.0-alpha.2",
45+
"@jupyterlab/codeeditor": "~4.5.0-alpha.2",
46+
"@jupyterlab/console": "~4.5.0-alpha.2",
47+
"@jupyterlab/coreutils": "~6.5.0-alpha.2",
48+
"@jupyterlab/docmanager": "~4.5.0-alpha.2",
49+
"@jupyterlab/docregistry": "~4.5.0-alpha.2",
50+
"@jupyterlab/mainmenu": "~4.5.0-alpha.2",
51+
"@jupyterlab/rendermime": "~4.5.0-alpha.2",
52+
"@jupyterlab/settingregistry": "~4.5.0-alpha.2",
53+
"@jupyterlab/translation": "~4.5.0-alpha.2",
5454
"@lumino/coreutils": "^2.2.1",
5555
"@lumino/disposable": "^2.1.4",
5656
"@lumino/widgets": "^2.7.1"

packages/application/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
"watch": "tsc -b --watch"
4343
},
4444
"dependencies": {
45-
"@jupyterlab/application": "~4.5.0-alpha.1",
46-
"@jupyterlab/coreutils": "~6.5.0-alpha.1",
47-
"@jupyterlab/docregistry": "~4.5.0-alpha.1",
48-
"@jupyterlab/rendermime-interfaces": "~3.13.0-alpha.1",
49-
"@jupyterlab/ui-components": "~4.5.0-alpha.1",
45+
"@jupyterlab/application": "~4.5.0-alpha.2",
46+
"@jupyterlab/coreutils": "~6.5.0-alpha.2",
47+
"@jupyterlab/docregistry": "~4.5.0-alpha.2",
48+
"@jupyterlab/rendermime-interfaces": "~3.13.0-alpha.2",
49+
"@jupyterlab/ui-components": "~4.5.0-alpha.2",
5050
"@lumino/algorithm": "^2.0.3",
5151
"@lumino/coreutils": "^2.2.1",
5252
"@lumino/messaging": "^2.0.3",

packages/console-extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
},
4040
"dependencies": {
4141
"@jupyter-notebook/application": "^7.5.0-alpha.0",
42-
"@jupyterlab/application": "~4.5.0-alpha.1",
43-
"@jupyterlab/console": "~4.5.0-alpha.1",
44-
"@jupyterlab/coreutils": "~6.5.0-alpha.1",
42+
"@jupyterlab/application": "~4.5.0-alpha.2",
43+
"@jupyterlab/console": "~4.5.0-alpha.2",
44+
"@jupyterlab/coreutils": "~6.5.0-alpha.2",
4545
"@lumino/algorithm": "^2.0.3"
4646
},
4747
"devDependencies": {

packages/docmanager-extension/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
},
4040
"dependencies": {
4141
"@jupyter-notebook/application": "^7.5.0-alpha.0",
42-
"@jupyterlab/application": "~4.5.0-alpha.1",
43-
"@jupyterlab/coreutils": "~6.5.0-alpha.1",
44-
"@jupyterlab/docmanager": "~4.5.0-alpha.1",
45-
"@jupyterlab/docregistry": "~4.5.0-alpha.1",
46-
"@jupyterlab/services": "~7.5.0-alpha.1",
42+
"@jupyterlab/application": "~4.5.0-alpha.2",
43+
"@jupyterlab/coreutils": "~6.5.0-alpha.2",
44+
"@jupyterlab/docmanager": "~4.5.0-alpha.2",
45+
"@jupyterlab/docregistry": "~4.5.0-alpha.2",
46+
"@jupyterlab/services": "~7.5.0-alpha.2",
4747
"@lumino/algorithm": "^2.0.3",
4848
"@lumino/signaling": "^2.1.4"
4949
},

packages/documentsearch-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
},
4040
"dependencies": {
4141
"@jupyter-notebook/application": "^7.5.0-alpha.0",
42-
"@jupyterlab/application": "~4.5.0-alpha.1",
43-
"@jupyterlab/documentsearch": "~4.5.0-alpha.1",
42+
"@jupyterlab/application": "~4.5.0-alpha.2",
43+
"@jupyterlab/documentsearch": "~4.5.0-alpha.2",
4444
"@lumino/widgets": "^2.7.1"
4545
},
4646
"devDependencies": {

0 commit comments

Comments
 (0)