@lynx-js/web-core 0.15.3 → 0.15.4

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/CHANGELOG.md +28 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @lynx-js/web-core
2
2
 
3
+ ## 0.15.4
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: support `__ElementFromBinary` ([#1391](https://github.com/lynx-family/lynx-stack/pull/1391))
8
+
9
+ - fix: crash on chrome<96 ([#1361](https://github.com/lynx-family/lynx-stack/pull/1361))
10
+
11
+ https://github.com/wasm-bindgen/wasm-bindgen/issues/4211#issuecomment-2505965903
12
+
13
+ https://github.com/WebAssembly/binaryen/issues/7358
14
+
15
+ The rust toolchain enables WASM feature `reference types` by default.
16
+
17
+ However this feature is not supported by chromium lower than version 96
18
+
19
+ Therefore we found a workaround for it.
20
+
21
+ In this implementation we detect if browser supports `reference types` first.
22
+
23
+ If user's browser supported it, we load the wasm file with `reference types` on, otherwise we load the wasm file with `reference types` off.
24
+
25
+ - Updated dependencies [[`22ca433`](https://github.com/lynx-family/lynx-stack/commit/22ca433eb96b39724c6eb47ce0a938d291bbdef2), [`8645d12`](https://github.com/lynx-family/lynx-stack/commit/8645d1240ecb2005da52ab2ffeb10a5d08cc9cc2), [`143e481`](https://github.com/lynx-family/lynx-stack/commit/143e481b4353b3c3d2e8d9cc4f201442ca56f097)]:
26
+ - @lynx-js/web-mainthread-apis@0.15.4
27
+ - @lynx-js/web-constants@0.15.4
28
+ - @lynx-js/web-worker-runtime@0.15.4
29
+ - @lynx-js/web-worker-rpc@0.15.4
30
+
3
31
  ## 0.15.3
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/web-core",
3
- "version": "0.15.3",
3
+ "version": "0.15.4",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "keywords": [],
@@ -25,14 +25,14 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "@lynx-js/offscreen-document": "0.1.3",
28
- "@lynx-js/web-constants": "0.15.3",
29
- "@lynx-js/web-mainthread-apis": "0.15.3",
30
- "@lynx-js/web-worker-rpc": "0.15.3",
31
- "@lynx-js/web-worker-runtime": "0.15.3"
28
+ "@lynx-js/web-constants": "0.15.4",
29
+ "@lynx-js/web-mainthread-apis": "0.15.4",
30
+ "@lynx-js/web-worker-rpc": "0.15.4",
31
+ "@lynx-js/web-worker-runtime": "0.15.4"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@lynx-js/lynx-core": "0.1.2",
35
- "@lynx-js/web-elements": "0.8.2"
35
+ "@lynx-js/web-elements": "0.8.3"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@lynx-js/lynx-core": "0.1.2",