@jupyterlab/apputils-extension 4.6.0-rc.1 → 4.6.1
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/announcements.js +1 -1
- package/package.json +15 -15
- package/src/announcements.ts +1 -1
package/lib/announcements.js
CHANGED
|
@@ -11,7 +11,7 @@ import { ITranslator, nullTranslator } from '@jupyterlab/translation';
|
|
|
11
11
|
const COMMAND_HELP_OPEN = 'help:open';
|
|
12
12
|
const NEWS_API_URL = '/lab/api/news';
|
|
13
13
|
const UPDATE_API_URL = '/lab/api/update';
|
|
14
|
-
const PRIVACY_URL = 'https://jupyterlab.readthedocs.io/en/
|
|
14
|
+
const PRIVACY_URL = 'https://jupyterlab.readthedocs.io/en/stable/privacy_policies.html';
|
|
15
15
|
/**
|
|
16
16
|
* Call the announcement API
|
|
17
17
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/apputils-extension",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"description": "JupyterLab - Application Utilities Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
"watch": "tsc -b --watch"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@jupyterlab/application": "^4.6.
|
|
46
|
-
"@jupyterlab/apputils": "^4.7.
|
|
47
|
-
"@jupyterlab/coreutils": "^6.6.
|
|
48
|
-
"@jupyterlab/docregistry": "^4.6.
|
|
49
|
-
"@jupyterlab/mainmenu": "^4.6.
|
|
50
|
-
"@jupyterlab/rendermime-interfaces": "^3.14.
|
|
51
|
-
"@jupyterlab/services": "^7.6.
|
|
52
|
-
"@jupyterlab/settingregistry": "^4.6.
|
|
53
|
-
"@jupyterlab/statedb": "^4.6.
|
|
54
|
-
"@jupyterlab/statusbar": "^4.6.
|
|
55
|
-
"@jupyterlab/translation": "^4.6.
|
|
56
|
-
"@jupyterlab/ui-components": "^4.6.
|
|
57
|
-
"@jupyterlab/workspaces": "^4.6.
|
|
45
|
+
"@jupyterlab/application": "^4.6.1",
|
|
46
|
+
"@jupyterlab/apputils": "^4.7.1",
|
|
47
|
+
"@jupyterlab/coreutils": "^6.6.1",
|
|
48
|
+
"@jupyterlab/docregistry": "^4.6.1",
|
|
49
|
+
"@jupyterlab/mainmenu": "^4.6.1",
|
|
50
|
+
"@jupyterlab/rendermime-interfaces": "^3.14.1",
|
|
51
|
+
"@jupyterlab/services": "^7.6.1",
|
|
52
|
+
"@jupyterlab/settingregistry": "^4.6.1",
|
|
53
|
+
"@jupyterlab/statedb": "^4.6.1",
|
|
54
|
+
"@jupyterlab/statusbar": "^4.6.1",
|
|
55
|
+
"@jupyterlab/translation": "^4.6.1",
|
|
56
|
+
"@jupyterlab/ui-components": "^4.6.1",
|
|
57
|
+
"@jupyterlab/workspaces": "^4.6.1",
|
|
58
58
|
"@lumino/algorithm": "^2.0.4",
|
|
59
59
|
"@lumino/commands": "^2.3.3",
|
|
60
60
|
"@lumino/coreutils": "^2.2.2",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"react-toastify": "^9.0.8"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@jupyterlab/testing": "^4.6.
|
|
70
|
+
"@jupyterlab/testing": "^4.6.1",
|
|
71
71
|
"@types/jest": "^29.2.0",
|
|
72
72
|
"jest": "^29.2.0",
|
|
73
73
|
"rimraf": "~5.0.5",
|
package/src/announcements.ts
CHANGED
|
@@ -19,7 +19,7 @@ const COMMAND_HELP_OPEN = 'help:open';
|
|
|
19
19
|
const NEWS_API_URL = '/lab/api/news';
|
|
20
20
|
const UPDATE_API_URL = '/lab/api/update';
|
|
21
21
|
const PRIVACY_URL =
|
|
22
|
-
'https://jupyterlab.readthedocs.io/en/
|
|
22
|
+
'https://jupyterlab.readthedocs.io/en/stable/privacy_policies.html';
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
* Call the announcement API
|