@earthmover/icechunk 2.0.0-alpha.8 → 2.0.0-alpha.9

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 (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -108,3 +108,9 @@ For WASM:
108
108
  yarn build --target wasm32-wasip1-threads
109
109
  NAPI_RS_FORCE_WASI=1 yarn test
110
110
  ```
111
+
112
+ > [!IMPORTANT]
113
+ > Building the WASM target requires Rust 1.95+ (or a nightly after 2026-01-19).
114
+ > Rust 1.94 has a bug where `std::thread::spawn` is unconditionally disabled on all WASI targets,
115
+ > including `wasm32-wasip1-threads` which supports threading.
116
+ > See [rust-lang/rust#151309](https://github.com/rust-lang/rust/pull/151309) for the fix.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@earthmover/icechunk",
3
- "version": "2.0.0-alpha.8",
3
+ "version": "2.0.0-alpha.9",
4
4
  "description": "JavaScript/TypeScript bindings for Icechunk",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -108,9 +108,9 @@
108
108
  },
109
109
  "packageManager": "yarn@4.12.0",
110
110
  "optionalDependencies": {
111
- "@earthmover/icechunk-win32-x64-msvc": "2.0.0-alpha.8",
112
- "@earthmover/icechunk-linux-x64-gnu": "2.0.0-alpha.8",
113
- "@earthmover/icechunk-darwin-arm64": "2.0.0-alpha.8",
114
- "@earthmover/icechunk-wasm32-wasi": "2.0.0-alpha.8"
111
+ "@earthmover/icechunk-win32-x64-msvc": "2.0.0-alpha.9",
112
+ "@earthmover/icechunk-linux-x64-gnu": "2.0.0-alpha.9",
113
+ "@earthmover/icechunk-darwin-arm64": "2.0.0-alpha.9",
114
+ "@earthmover/icechunk-wasm32-wasi": "2.0.0-alpha.9"
115
115
  }
116
116
  }