+72
-70
lines changedFilter options
+72
-70
lines changed Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
1
1
# `wasm-bindgen` Change Log
2
2
--------------------------------------------------------------------------------
3
3
4
-
## Unreleased
4
+
## [0.2.94](https://github.com/rustwasm/wasm-bindgen/compare/0.2.93...0.2.94)
5
+
6
+
Released 2024-10-09
5
7
6
8
### Added
7
9
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ name = "wasm-bindgen"
13
13
readme = "README.md"
14
14
repository = "https://github.com/rustwasm/wasm-bindgen"
15
15
rust-version = "1.57"
16
-
version = "0.2.93"
16
+
version = "0.2.94"
17
17
18
18
[package.metadata.docs.rs]
19
19
features = ["serde-serialize"]
@@ -45,7 +45,7 @@ cfg-if = "1.0.0"
45
45
once_cell = "1.12"
46
46
serde = { version = "1.0", optional = true }
47
47
serde_json = { version = "1.0", optional = true }
48
-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.93" }
48
+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.94" }
49
49
50
50
[dev-dependencies]
51
51
wasm-bindgen-test = { path = 'crates/test' }
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
11
11
name = "wasm-bindgen-backend"
12
12
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
13
13
rust-version = "1.57"
14
-
version = "0.2.93"
14
+
version = "0.2.94"
15
15
16
16
[features]
17
17
extra-traits = ["syn/extra-traits"]
@@ -24,4 +24,4 @@ once_cell = "1.12"
24
24
proc-macro2 = "1.0"
25
25
quote = '1.0'
26
26
syn = { version = '2.0', features = ['full'] }
27
-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.93" }
27
+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.94" }
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
11
11
name = "wasm-bindgen-cli-support"
12
12
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support"
13
13
rust-version = "1.76"
14
-
version = "0.2.93"
14
+
version = "0.2.94"
15
15
16
16
[dependencies]
17
17
anyhow = "1.0"
@@ -23,9 +23,9 @@ serde_json = "1.0"
23
23
tempfile = "3.0"
24
24
unicode-ident = "1.0.5"
25
25
walrus = "0.22"
26
-
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.93' }
27
-
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.93' }
28
-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.93' }
29
-
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.93' }
30
-
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.93' }
31
-
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.93' }
26
+
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.94' }
27
+
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.94' }
28
+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.94' }
29
+
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.94' }
30
+
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.94' }
31
+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.94' }
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
14
14
name = "wasm-bindgen-cli"
15
15
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
16
16
rust-version = "1.76"
17
-
version = "0.2.93"
17
+
version = "0.2.94"
18
18
19
19
[package.metadata.binstall]
20
20
bin-dir = "wasm-bindgen-{ version }-{ target }/{ bin }{ binary-ext }"
@@ -32,8 +32,8 @@ serde_derive = "1.0"
32
32
serde_json = "1.0"
33
33
ureq = { version = "2.7", default-features = false, features = ["brotli", "gzip"] }
34
34
walrus = { version = "0.22", features = ['parallel'] }
35
-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.93" }
36
-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.93" }
35
+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.94" }
36
+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.94" }
37
37
38
38
[dev-dependencies]
39
39
assert_cmd = "2"
Original file line number Diff line number Diff line change
@@ -6,26 +6,6 @@ export function __wbg_set_wasm(val) {
6
6
}
7
7
8
8
9
-
const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder;
10
-
11
-
let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true });
12
-
13
-
cachedTextDecoder.decode();
14
-
15
-
let cachedUint8ArrayMemory0 = null;
16
-
17
-
function getUint8ArrayMemory0() {
18
-
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
19
-
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
20
-
}
21
-
return cachedUint8ArrayMemory0;
22
-
}
23
-
24
-
function getStringFromWasm0(ptr, len) {
25
-
ptr = ptr >>> 0;
26
-
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
27
-
}
28
-
29
9
const heap = new Array(128).fill(undefined);
30
10
31
11
heap.push(undefined, null, true, false);
@@ -45,6 +25,26 @@ function takeObject(idx) {
45
25
dropObject(idx);
46
26
return ret;
47
27
}
28
+
29
+
const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder;
30
+
31
+
let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true });
32
+
33
+
cachedTextDecoder.decode();
34
+
35
+
let cachedUint8ArrayMemory0 = null;
36
+
37
+
function getUint8ArrayMemory0() {
38
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
39
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
40
+
}
41
+
return cachedUint8ArrayMemory0;
42
+
}
43
+
44
+
function getStringFromWasm0(ptr, len) {
45
+
ptr = ptr >>> 0;
46
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
47
+
}
48
48
/**
49
49
* @param {number} test
50
50
* @returns {number}
@@ -109,11 +109,11 @@ export function __wbg_test2_39fe629b9aa739cf() {
109
109
return addHeapObject(ret);
110
110
};
111
111
112
-
export function __wbindgen_throw(arg0, arg1) {
113
-
throw new Error(getStringFromWasm0(arg0, arg1));
114
-
};
115
-
116
112
export function __wbindgen_object_drop_ref(arg0) {
117
113
takeObject(arg0);
118
114
};
119
115
116
+
export function __wbindgen_throw(arg0, arg1) {
117
+
throw new Error(getStringFromWasm0(arg0, arg1));
118
+
};
119
+
Original file line number Diff line number Diff line change
@@ -11,12 +11,12 @@ license = "MIT OR Apache-2.0"
11
11
name = "wasm-bindgen-externref-xform"
12
12
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/externref-xform"
13
13
rust-version = "1.76"
14
-
version = "0.2.93"
14
+
version = "0.2.94"
15
15
16
16
[dependencies]
17
17
anyhow = "1.0"
18
18
walrus = "0.22"
19
-
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.93" }
19
+
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.94" }
20
20
21
21
[dev-dependencies]
22
22
rayon = "1.0"
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ name = "wasm-bindgen-futures"
10
10
readme = "./README.md"
11
11
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures"
12
12
rust-version = "1.57"
13
-
version = "0.4.43"
13
+
version = "0.4.44"
14
14
15
15
[package.metadata.docs.rs]
16
16
all-features = true
@@ -19,8 +19,8 @@ rustdoc-args = ["--cfg", "docsrs"]
19
19
[dependencies]
20
20
cfg-if = "1.0.0"
21
21
futures-core = { version = '0.3.8', default-features = false, optional = true }
22
-
js-sys = { path = "../js-sys", version = '0.3.70' }
23
-
wasm-bindgen = { path = "../..", version = '0.2.93' }
22
+
js-sys = { path = "../js-sys", version = '0.3.71' }
23
+
wasm-bindgen = { path = "../..", version = '0.2.94' }
24
24
25
25
[features]
26
26
futures-core-03-stream = ['futures-core']
Original file line number Diff line number Diff line change
@@ -14,14 +14,14 @@ name = "js-sys"
14
14
readme = "./README.md"
15
15
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys"
16
16
rust-version = "1.57"
17
-
version = "0.3.70"
17
+
version = "0.3.71"
18
18
19
19
[lib]
20
20
doctest = false
21
21
test = false
22
22
23
23
[dependencies]
24
-
wasm-bindgen = { path = "../..", version = "0.2.93" }
24
+
wasm-bindgen = { path = "../..", version = "0.2.94" }
25
25
26
26
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
27
27
wasm-bindgen-futures = { path = '../futures' }
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
11
11
name = "wasm-bindgen-macro-support"
12
12
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support"
13
13
rust-version = "1.57"
14
-
version = "0.2.93"
14
+
version = "0.2.94"
15
15
16
16
[features]
17
17
extra-traits = ["syn/extra-traits"]
@@ -22,5 +22,5 @@ strict-macro = []
22
22
proc-macro2 = "1.0"
23
23
quote = '1.0'
24
24
syn = { version = '2.0', features = ['visit', 'full'] }
25
-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.93" }
26
-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.93" }
25
+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.94" }
26
+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.94" }
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4