@jupyterlab/notebook 3.1.9 → 3.1.13

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.
Files changed (3) hide show
  1. package/lib/model.js +1 -1
  2. package/package.json +16 -17
  3. package/LICENSE +0 -33
package/lib/model.js CHANGED
@@ -247,7 +247,7 @@ export class NotebookModel {
247
247
  if (newer) {
248
248
  msg = this._trans.__(`This notebook has been converted from an older notebook format (v%1)
249
249
  to the current notebook format (v%2).
250
- The next time you save this notebook, the current notebook format (vthis._nbformat) will be used.
250
+ The next time you save this notebook, the current notebook format (v%2) will be used.
251
251
  'Older versions of Jupyter may not be able to read the new format.' To preserve the original format version,
252
252
  close the notebook without saving it.`, origNbformat, this._nbformat);
253
253
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/notebook",
3
- "version": "3.1.9",
3
+ "version": "3.1.13",
4
4
  "description": "JupyterLab - Notebook",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,19 +41,19 @@
41
41
  "watch": "tsc -b --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@jupyterlab/apputils": "^3.1.9",
45
- "@jupyterlab/cells": "^3.1.9",
46
- "@jupyterlab/codeeditor": "^3.1.9",
47
- "@jupyterlab/coreutils": "^5.1.9",
48
- "@jupyterlab/docregistry": "^3.1.9",
49
- "@jupyterlab/nbformat": "^3.1.9",
50
- "@jupyterlab/observables": "^4.1.9",
51
- "@jupyterlab/rendermime": "^3.1.9",
52
- "@jupyterlab/services": "^6.1.9",
53
- "@jupyterlab/shared-models": "^3.1.9",
54
- "@jupyterlab/statusbar": "^3.1.9",
55
- "@jupyterlab/translation": "^3.1.9",
56
- "@jupyterlab/ui-components": "^3.1.9",
44
+ "@jupyterlab/apputils": "^3.1.13",
45
+ "@jupyterlab/cells": "^3.1.13",
46
+ "@jupyterlab/codeeditor": "^3.1.13",
47
+ "@jupyterlab/coreutils": "^5.1.13",
48
+ "@jupyterlab/docregistry": "^3.1.13",
49
+ "@jupyterlab/nbformat": "^3.1.13",
50
+ "@jupyterlab/observables": "^4.1.13",
51
+ "@jupyterlab/rendermime": "^3.1.13",
52
+ "@jupyterlab/services": "^6.1.13",
53
+ "@jupyterlab/shared-models": "^3.1.13",
54
+ "@jupyterlab/statusbar": "^3.1.13",
55
+ "@jupyterlab/translation": "^3.1.13",
56
+ "@jupyterlab/ui-components": "^3.1.13",
57
57
  "@lumino/algorithm": "^1.3.3",
58
58
  "@lumino/coreutils": "^1.5.3",
59
59
  "@lumino/domutils": "^1.2.3",
@@ -66,7 +66,7 @@
66
66
  "react": "^17.0.1"
67
67
  },
68
68
  "devDependencies": {
69
- "@jupyterlab/testutils": "^3.1.9",
69
+ "@jupyterlab/testutils": "^3.1.13",
70
70
  "@types/jest": "^26.0.10",
71
71
  "jest": "^26.4.2",
72
72
  "rimraf": "~3.0.0",
@@ -77,6 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "styleModule": "style/index.js",
81
- "gitHead": "74670b4ab798a62c6c24e35722a247c65c748bbd"
80
+ "styleModule": "style/index.js"
82
81
  }
package/LICENSE DELETED
@@ -1,33 +0,0 @@
1
- Copyright (c) 2015-2021 Project Jupyter Contributors
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without
5
- modification, are permitted provided that the following conditions are met:
6
-
7
- 1. Redistributions of source code must retain the above copyright notice, this
8
- list of conditions and the following disclaimer.
9
-
10
- 2. Redistributions in binary form must reproduce the above copyright notice,
11
- this list of conditions and the following disclaimer in the documentation
12
- and/or other materials provided with the distribution.
13
-
14
- 3. Neither the name of the copyright holder nor the names of its
15
- contributors may be used to endorse or promote products derived from
16
- this software without specific prior written permission.
17
-
18
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
-
29
- Semver File License
30
- ===================
31
-
32
- The semver.py file is from https://github.com/podhmo/python-semver
33
- which is licensed under the "MIT" license. See the semver.py file for details.