Compare commits

...

3 Commits
main ... 7.1.x

Author SHA1 Message Date
jtpio 48690a3f13 Publish 7.1.3
2 years ago
Lumberbot (aka Jack) c1453abee5
Backport PR #7327: Fix scrollbar always showing up by default (#7328)
2 years ago
Lumberbot (aka Jack) 22eedd39e0
Backport PR #7308: Ignore links to GitHub user and organisation profiles (#7309)
2 years ago

@ -175,7 +175,7 @@ jobs:
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1
with:
ignore_links: 'https://playwright.dev/docs/test-cli/ https://blog.jupyter.org/the-big-split-9d7b88a031a7 https://blog.jupyter.org/jupyter-ascending-1bf5b362d97e https://mybinder.org/v2/gh/jupyter/notebook/main https://nbviewer.jupyter.org https://stackoverflow.com'
ignore_links: 'https://playwright.dev/docs/test-cli/ https://blog.jupyter.org/the-big-split-9d7b88a031a7 https://blog.jupyter.org/jupyter-ascending-1bf5b362d97e https://mybinder.org/v2/gh/jupyter/notebook/main https://nbviewer.jupyter.org https://stackoverflow.com https://github.com/[^/]+/?$'
ignore_glob: 'ui-tests/test/notebooks/*'
test_lint:

@ -108,6 +108,26 @@ increasing awareness of the notebook state and enabling users to quickly navigat
<!-- <START NEW CHANGELOG ENTRY> -->
## 7.1.3
([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.1.2...c1453abee561292f2182c4bda6cb6383224c1fcb))
### Bugs fixed
- Fix scrollbar always showing up by default [#7327](https://github.com/jupyter/notebook/pull/7327) ([@jtpio](https://github.com/jtpio))
### Maintenance and upkeep improvements
- Ignore links to GitHub user and organisation profiles [#7308](https://github.com/jupyter/notebook/pull/7308) ([@jtpio](https://github.com/jtpio))
### Contributors to this release
([GitHub contributors page for this release](https://github.com/jupyter/notebook/graphs/contributors?from=2024-03-14&to=2024-04-17&type=c))
[@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-03-14..2024-04-17&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-03-14..2024-04-17&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akrassowski+updated%3A2024-03-14..2024-04-17&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ameeseeksmachine+updated%3A2024-03-14..2024-04-17&type=Issues)
<!-- <END NEW CHANGELOG ENTRY> -->
## 7.1.2
([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.1.1...ca41222a9c8d75356c6d67d3bd36e34d71cce2d8))
@ -128,8 +148,6 @@ increasing awareness of the notebook state and enabling users to quickly navigat
[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2024-02-26..2024-03-14&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2024-02-26..2024-03-14&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-02-26..2024-03-14&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-02-26..2024-03-14&type=Issues)
<!-- <END NEW CHANGELOG ENTRY> -->
## 7.1.1
([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.1.0...da7b8d400e96ceff0eec834badd891bc5d5f154d))

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/app",
"version": "7.1.2",
"version": "7.1.3",
"private": true,
"scripts": {
"build": "webpack",
@ -12,17 +12,17 @@
"resolutions": {
"@codemirror/state": "~6.2.1",
"@codemirror/view": "~6.21.3",
"@jupyter-notebook/application": "~7.1.2",
"@jupyter-notebook/application-extension": "~7.1.2",
"@jupyter-notebook/console-extension": "~7.1.2",
"@jupyter-notebook/docmanager-extension": "~7.1.2",
"@jupyter-notebook/documentsearch-extension": "~7.1.2",
"@jupyter-notebook/help-extension": "~7.1.2",
"@jupyter-notebook/notebook-extension": "~7.1.2",
"@jupyter-notebook/terminal-extension": "~7.1.2",
"@jupyter-notebook/tree": "~7.1.2",
"@jupyter-notebook/tree-extension": "~7.1.2",
"@jupyter-notebook/ui-components": "~7.1.2",
"@jupyter-notebook/application": "~7.1.3",
"@jupyter-notebook/application-extension": "~7.1.3",
"@jupyter-notebook/console-extension": "~7.1.3",
"@jupyter-notebook/docmanager-extension": "~7.1.3",
"@jupyter-notebook/documentsearch-extension": "~7.1.3",
"@jupyter-notebook/help-extension": "~7.1.3",
"@jupyter-notebook/notebook-extension": "~7.1.3",
"@jupyter-notebook/terminal-extension": "~7.1.3",
"@jupyter-notebook/tree": "~7.1.3",
"@jupyter-notebook/tree-extension": "~7.1.3",
"@jupyter-notebook/ui-components": "~7.1.3",
"@jupyter/ydoc": "~1.1.1",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/application-extension": "~4.1.5",
@ -120,17 +120,17 @@
"yjs": "~13.6.8"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application-extension": "^7.1.2",
"@jupyter-notebook/console-extension": "^7.1.2",
"@jupyter-notebook/docmanager-extension": "^7.1.2",
"@jupyter-notebook/documentsearch-extension": "^7.1.2",
"@jupyter-notebook/help-extension": "^7.1.2",
"@jupyter-notebook/notebook-extension": "^7.1.2",
"@jupyter-notebook/terminal-extension": "^7.1.2",
"@jupyter-notebook/tree": "^7.1.2",
"@jupyter-notebook/tree-extension": "^7.1.2",
"@jupyter-notebook/ui-components": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyter-notebook/application-extension": "^7.1.3",
"@jupyter-notebook/console-extension": "^7.1.3",
"@jupyter-notebook/docmanager-extension": "^7.1.3",
"@jupyter-notebook/documentsearch-extension": "^7.1.3",
"@jupyter-notebook/help-extension": "^7.1.3",
"@jupyter-notebook/notebook-extension": "^7.1.3",
"@jupyter-notebook/terminal-extension": "^7.1.3",
"@jupyter-notebook/tree": "^7.1.3",
"@jupyter-notebook/tree-extension": "^7.1.3",
"@jupyter-notebook/ui-components": "^7.1.3",
"@jupyterlab/application-extension": "~4.1.5",
"@jupyterlab/apputils-extension": "~4.1.5",
"@jupyterlab/attachments": "~4.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/buildutils",
"version": "7.1.2",
"version": "7.1.3",
"private": true,
"description": "Jupyter Notebook - Build Utilities",
"homepage": "https://github.com/jupyter/notebook",

@ -5,7 +5,7 @@ import re
from collections import namedtuple
# Use "hatch version xx.yy.zz" to handle version changes
__version__ = "7.1.2"
__version__ = "7.1.3"
# PEP440 version parser
_version_regex = re.compile(

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/metapackage",
"version": "7.1.2",
"version": "7.1.3",
"private": true,
"description": "Jupyter Notebook - Metapackage",
"homepage": "https://github.com/jupyter/notebook",
@ -20,18 +20,18 @@
"watch": "tsc -b -w --preserveWatchOutput"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application-extension": "^7.1.2",
"@jupyter-notebook/console-extension": "^7.1.2",
"@jupyter-notebook/docmanager-extension": "^7.1.2",
"@jupyter-notebook/documentsearch-extension": "^7.1.2",
"@jupyter-notebook/help-extension": "^7.1.2",
"@jupyter-notebook/lab-extension": "^7.1.2",
"@jupyter-notebook/notebook-extension": "^7.1.2",
"@jupyter-notebook/terminal-extension": "^7.1.2",
"@jupyter-notebook/tree": "^7.1.2",
"@jupyter-notebook/tree-extension": "^7.1.2",
"@jupyter-notebook/ui-components": "^7.1.2"
"@jupyter-notebook/application": "^7.1.3",
"@jupyter-notebook/application-extension": "^7.1.3",
"@jupyter-notebook/console-extension": "^7.1.3",
"@jupyter-notebook/docmanager-extension": "^7.1.3",
"@jupyter-notebook/documentsearch-extension": "^7.1.3",
"@jupyter-notebook/help-extension": "^7.1.3",
"@jupyter-notebook/lab-extension": "^7.1.3",
"@jupyter-notebook/notebook-extension": "^7.1.3",
"@jupyter-notebook/terminal-extension": "^7.1.3",
"@jupyter-notebook/tree": "^7.1.3",
"@jupyter-notebook/tree-extension": "^7.1.3",
"@jupyter-notebook/ui-components": "^7.1.3"
},
"devDependencies": {
"typescript": "~5.0.2"

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/application-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Application Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,8 +38,8 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/ui-components": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyter-notebook/ui-components": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/apputils": "~4.2.5",
"@jupyterlab/codeeditor": "~4.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/application",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Application",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/console-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Console Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,7 +38,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/console": "~4.1.5",
"@jupyterlab/coreutils": "~6.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/docmanager-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Document Manager Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,7 +38,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/coreutils": "~6.1.5",
"@jupyterlab/docmanager": "~4.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/documentsearch-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Document Search Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,7 +38,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/documentsearch": "~4.1.5",
"@lumino/widgets": "^2.3.1"

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/help-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Help Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,7 +38,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/ui-components": "^7.1.2",
"@jupyter-notebook/ui-components": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/apputils": "~4.2.5",
"@jupyterlab/mainmenu": "~4.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/lab-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Lab Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -43,7 +43,7 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/apputils": "~4.2.5",
"@jupyterlab/coreutils": "~6.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/notebook-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Notebook Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,7 +38,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/apputils": "~4.2.5",
"@jupyterlab/cells": "~4.1.5",

@ -45,7 +45,9 @@ body[data-notebook='notebooks'] .jp-Notebook-cell {
}
/* Empty space at the bottom of the notebook (similar to classic) */
body[data-notebook='notebooks'] .jp-Notebook.jp-mod-scrollPastEnd::after {
body[data-notebook='notebooks']
.jp-Notebook.jp-mod-scrollPastEnd
.jp-WindowedPanel-outer::after {
min-height: 100px;
}

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/terminal-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Terminal Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,7 +38,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/coreutils": "~6.1.5",
"@jupyterlab/terminal": "~4.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/tree-extension",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Tree Extension",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,8 +38,8 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/tree": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyter-notebook/tree": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/apputils": "~4.2.5",
"@jupyterlab/coreutils": "~6.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/tree",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - Tree",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {
@ -38,7 +38,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyter-notebook/application": "^7.1.2",
"@jupyter-notebook/application": "^7.1.3",
"@jupyterlab/application": "~4.1.5",
"@jupyterlab/apputils": "~4.2.5",
"@jupyterlab/coreutils": "~6.1.5",

@ -1,6 +1,6 @@
{
"name": "@jupyter-notebook/ui-components",
"version": "7.1.2",
"version": "7.1.3",
"description": "Jupyter Notebook - UI components",
"homepage": "https://github.com/jupyter/notebook",
"bugs": {

@ -2059,17 +2059,17 @@ __metadata:
version: 0.0.0-use.local
resolution: "@jupyter-notebook/app@workspace:app"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application-extension": ^7.1.2
"@jupyter-notebook/console-extension": ^7.1.2
"@jupyter-notebook/docmanager-extension": ^7.1.2
"@jupyter-notebook/documentsearch-extension": ^7.1.2
"@jupyter-notebook/help-extension": ^7.1.2
"@jupyter-notebook/notebook-extension": ^7.1.2
"@jupyter-notebook/terminal-extension": ^7.1.2
"@jupyter-notebook/tree": ^7.1.2
"@jupyter-notebook/tree-extension": ^7.1.2
"@jupyter-notebook/ui-components": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyter-notebook/application-extension": ^7.1.3
"@jupyter-notebook/console-extension": ^7.1.3
"@jupyter-notebook/docmanager-extension": ^7.1.3
"@jupyter-notebook/documentsearch-extension": ^7.1.3
"@jupyter-notebook/help-extension": ^7.1.3
"@jupyter-notebook/notebook-extension": ^7.1.3
"@jupyter-notebook/terminal-extension": ^7.1.3
"@jupyter-notebook/tree": ^7.1.3
"@jupyter-notebook/tree-extension": ^7.1.3
"@jupyter-notebook/ui-components": ^7.1.3
"@jupyterlab/application-extension": ~4.1.5
"@jupyterlab/apputils-extension": ~4.1.5
"@jupyterlab/attachments": ~4.1.5
@ -2140,12 +2140,12 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/application-extension@^7.1.2, @jupyter-notebook/application-extension@workspace:packages/application-extension":
"@jupyter-notebook/application-extension@^7.1.3, @jupyter-notebook/application-extension@workspace:packages/application-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/application-extension@workspace:packages/application-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/ui-components": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyter-notebook/ui-components": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/apputils": ~4.2.5
"@jupyterlab/codeeditor": ~4.1.5
@ -2165,7 +2165,7 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/application@^7.1.2, @jupyter-notebook/application@workspace:packages/application":
"@jupyter-notebook/application@^7.1.3, @jupyter-notebook/application@workspace:packages/application":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/application@workspace:packages/application"
dependencies:
@ -2205,11 +2205,11 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/console-extension@^7.1.2, @jupyter-notebook/console-extension@workspace:packages/console-extension":
"@jupyter-notebook/console-extension@^7.1.3, @jupyter-notebook/console-extension@workspace:packages/console-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/console": ~4.1.5
"@jupyterlab/coreutils": ~6.1.5
@ -2219,11 +2219,11 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/docmanager-extension@^7.1.2, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension":
"@jupyter-notebook/docmanager-extension@^7.1.3, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/coreutils": ~6.1.5
"@jupyterlab/docmanager": ~4.1.5
@ -2236,11 +2236,11 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/documentsearch-extension@^7.1.2, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension":
"@jupyter-notebook/documentsearch-extension@^7.1.3, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/documentsearch": ~4.1.5
"@lumino/widgets": ^2.3.1
@ -2249,11 +2249,11 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/help-extension@^7.1.2, @jupyter-notebook/help-extension@workspace:packages/help-extension":
"@jupyter-notebook/help-extension@^7.1.3, @jupyter-notebook/help-extension@workspace:packages/help-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension"
dependencies:
"@jupyter-notebook/ui-components": ^7.1.2
"@jupyter-notebook/ui-components": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/apputils": ~4.2.5
"@jupyterlab/mainmenu": ~4.1.5
@ -2265,11 +2265,11 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/lab-extension@^7.1.2, @jupyter-notebook/lab-extension@workspace:packages/lab-extension":
"@jupyter-notebook/lab-extension@^7.1.3, @jupyter-notebook/lab-extension@workspace:packages/lab-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/apputils": ~4.2.5
"@jupyterlab/builder": ~4.1.5
@ -2289,27 +2289,27 @@ __metadata:
version: 0.0.0-use.local
resolution: "@jupyter-notebook/metapackage@workspace:packages/_metapackage"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application-extension": ^7.1.2
"@jupyter-notebook/console-extension": ^7.1.2
"@jupyter-notebook/docmanager-extension": ^7.1.2
"@jupyter-notebook/documentsearch-extension": ^7.1.2
"@jupyter-notebook/help-extension": ^7.1.2
"@jupyter-notebook/lab-extension": ^7.1.2
"@jupyter-notebook/notebook-extension": ^7.1.2
"@jupyter-notebook/terminal-extension": ^7.1.2
"@jupyter-notebook/tree": ^7.1.2
"@jupyter-notebook/tree-extension": ^7.1.2
"@jupyter-notebook/ui-components": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyter-notebook/application-extension": ^7.1.3
"@jupyter-notebook/console-extension": ^7.1.3
"@jupyter-notebook/docmanager-extension": ^7.1.3
"@jupyter-notebook/documentsearch-extension": ^7.1.3
"@jupyter-notebook/help-extension": ^7.1.3
"@jupyter-notebook/lab-extension": ^7.1.3
"@jupyter-notebook/notebook-extension": ^7.1.3
"@jupyter-notebook/terminal-extension": ^7.1.3
"@jupyter-notebook/tree": ^7.1.3
"@jupyter-notebook/tree-extension": ^7.1.3
"@jupyter-notebook/ui-components": ^7.1.3
typescript: ~5.0.2
languageName: unknown
linkType: soft
"@jupyter-notebook/notebook-extension@^7.1.2, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension":
"@jupyter-notebook/notebook-extension@^7.1.3, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/apputils": ~4.2.5
"@jupyterlab/cells": ~4.1.5
@ -2346,11 +2346,11 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/terminal-extension@^7.1.2, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension":
"@jupyter-notebook/terminal-extension@^7.1.3, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/coreutils": ~6.1.5
"@jupyterlab/terminal": ~4.1.5
@ -2360,12 +2360,12 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/tree-extension@^7.1.2, @jupyter-notebook/tree-extension@workspace:packages/tree-extension":
"@jupyter-notebook/tree-extension@^7.1.3, @jupyter-notebook/tree-extension@workspace:packages/tree-extension":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/tree-extension@workspace:packages/tree-extension"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/tree": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyter-notebook/tree": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/apputils": ~4.2.5
"@jupyterlab/coreutils": ~6.1.5
@ -2386,11 +2386,11 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/tree@^7.1.2, @jupyter-notebook/tree@workspace:packages/tree":
"@jupyter-notebook/tree@^7.1.3, @jupyter-notebook/tree@workspace:packages/tree":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/tree@workspace:packages/tree"
dependencies:
"@jupyter-notebook/application": ^7.1.2
"@jupyter-notebook/application": ^7.1.3
"@jupyterlab/application": ~4.1.5
"@jupyterlab/apputils": ~4.2.5
"@jupyterlab/coreutils": ~6.1.5
@ -2411,7 +2411,7 @@ __metadata:
languageName: unknown
linkType: soft
"@jupyter-notebook/ui-components@^7.1.2, @jupyter-notebook/ui-components@workspace:packages/ui-components":
"@jupyter-notebook/ui-components@^7.1.3, @jupyter-notebook/ui-components@workspace:packages/ui-components":
version: 0.0.0-use.local
resolution: "@jupyter-notebook/ui-components@workspace:packages/ui-components"
dependencies:

Loading…
Cancel
Save