jupyter-ijavascript-utils 1.63.0 → 1.65.0
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/DOCS.md +10 -0
- package/Dockerfile +1 -1
- package/README.md +10 -0
- package/package.json +4 -3
package/DOCS.md
CHANGED
|
@@ -73,7 +73,17 @@ and can try right in your browser.
|
|
|
73
73
|
Give it a try here:
|
|
74
74
|
[](https://mybinder.org/v2/gh/paulroth3d/jupyter-ijavascript-utils/main?labpath=example.ipynb)
|
|
75
75
|
|
|
76
|
+
## NOTE - iJavaScript Stalemate
|
|
77
|
+
|
|
78
|
+
iJavaScript currently requires node v20 to run, and fails on versions higher due to zeromq issues [See bug 297 on iJavaScript](https://github.com/n-riesco/ijavascript/issues/297)
|
|
79
|
+
|
|
80
|
+
Additionally, vega has now moved to ESM Modules - [vega versions](https://www.npmjs.com/package/vega?activeTab=versions), and [vega-lite versions](https://www.npmjs.com/package/vega-lite?activeTab=versions)
|
|
81
|
+
|
|
82
|
+
iJavaScript only supports ESM Modules with [esm-hook](https://www.npmjs.com/package/esm-hook) - [see issue 210](https://github.com/n-riesco/ijavascript/issues/210)
|
|
83
|
+
|
|
76
84
|
## What's New
|
|
85
|
+
* 1.65 - update module type to explicitly state commonJS
|
|
86
|
+
* 1.64 - using the latest version of vega/vega-lite prior to ESM update
|
|
77
87
|
* 1.62 - Update to Array.peekableIterator to include peekItr() as sugar for .peek
|
|
78
88
|
* 1.61 - Docs Updated
|
|
79
89
|
* 1.60 - Make post-processing of documents easier with {@link module:ijs.markDocumentPosition|ijs.markDocumentPosition}
|
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -53,7 +53,17 @@ This is not intended to be the only way to accomplish many of these tasks, and a
|
|
|
53
53
|
|
|
54
54
|

|
|
55
55
|
|
|
56
|
+
## NOTE - iJavaScript Stalemate
|
|
57
|
+
|
|
58
|
+
iJavaScript currently requires node v20 to run, and fails on versions higher due to zeromq issues [See bug 297 on iJavaScript](https://github.com/n-riesco/ijavascript/issues/297)
|
|
59
|
+
|
|
60
|
+
Additionally, vega has now moved to ESM Modules - [vega versions](https://www.npmjs.com/package/vega?activeTab=versions), and [vega-lite versions](https://www.npmjs.com/package/vega-lite?activeTab=versions)
|
|
61
|
+
|
|
62
|
+
iJavaScript only supports ESM Modules with [esm-hook](https://www.npmjs.com/package/esm-hook) - [see issue 210](https://github.com/n-riesco/ijavascript/issues/210)
|
|
63
|
+
|
|
56
64
|
# What's New
|
|
65
|
+
* 1.65 - update module type to explicitly state commonJS
|
|
66
|
+
* 1.64 - using the latest version of vega/vega-lite prior to ESM update
|
|
57
67
|
* 1.62 - Update to Array.peekableIterator to include peekItr() as sugar for .peek
|
|
58
68
|
* 1.61 - Docs Updated
|
|
59
69
|
* 1.60 - Make post-processing of documents easier with ijs.utils.markDocumentPosition
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jupyter-ijavascript-utils",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.65.0",
|
|
4
4
|
"description": "Utilities for working with iJavaScript - a Jupyter Kernel",
|
|
5
5
|
"homepage": "https://jupyter-ijavascript-utils.onrender.com/",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"type": "commonjs",
|
|
7
8
|
"main": "src/index.js",
|
|
8
9
|
"scripts": {
|
|
9
10
|
"prebuild": "npm run lint && npm run test:coverage",
|
|
@@ -58,9 +59,9 @@
|
|
|
58
59
|
"promise-sequential": "^1.1.1",
|
|
59
60
|
"svgdom": "0.1.16",
|
|
60
61
|
"uuid": "^8.3.2",
|
|
61
|
-
"vega": "^
|
|
62
|
+
"vega": "^5.33.0",
|
|
62
63
|
"vega-datasets": "2.3.0",
|
|
63
|
-
"vega-lite": "^
|
|
64
|
+
"vega-lite": "^5.23.0",
|
|
64
65
|
"vega-lite-api": "^5.0.0"
|
|
65
66
|
}
|
|
66
67
|
}
|