jupyter-ijavascript-utils 1.62.0 → 1.64.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 CHANGED
@@ -73,7 +73,16 @@ and can try right in your browser.
73
73
  Give it a try here:
74
74
  [![Binder:what can I do with this](https://mybinder.org/badge_logo.svg)](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.64 - using the latest version of vega/vega-lite prior to ESM update
77
86
  * 1.62 - Update to Array.peekableIterator to include peekItr() as sugar for .peek
78
87
  * 1.61 - Docs Updated
79
88
  * 1.60 - Make post-processing of documents easier with {@link module:ijs.markDocumentPosition|ijs.markDocumentPosition}
package/Dockerfile CHANGED
@@ -1,3 +1,3 @@
1
1
  # syntax=docker/dockerfile:1
2
2
 
3
- FROM darkbluestudios/jupyter-ijavascript-utils:binder_1.62.0
3
+ FROM darkbluestudios/jupyter-ijavascript-utils:binder_1.64.0
package/README.md CHANGED
@@ -53,7 +53,16 @@ This is not intended to be the only way to accomplish many of these tasks, and a
53
53
 
54
54
  ![Screenshot of example notebook](docResources/img/mainExampleNotebook.png)
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.64 - using the latest version of vega/vega-lite prior to ESM update
57
66
  * 1.62 - Update to Array.peekableIterator to include peekItr() as sugar for .peek
58
67
  * 1.61 - Docs Updated
59
68
  * 1.60 - Make post-processing of documents easier with ijs.utils.markDocumentPosition
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyter-ijavascript-utils",
3
- "version": "1.62.0",
3
+ "version": "1.64.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",
@@ -58,9 +58,9 @@
58
58
  "promise-sequential": "^1.1.1",
59
59
  "svgdom": "0.1.16",
60
60
  "uuid": "^8.3.2",
61
- "vega": "^5.22.1",
61
+ "vega": "^5.33.0",
62
62
  "vega-datasets": "2.3.0",
63
- "vega-lite": "^5.2.0",
63
+ "vega-lite": "^5.23.0",
64
64
  "vega-lite-api": "^5.0.0"
65
65
  }
66
66
  }