File tree 2 files changed +18
-2
lines changed
2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,13 @@ and this project adheres to
8
8
9
9
## [ Unreleased]
10
10
11
+ ### Changed
12
+
13
+ - cosmwasm-vm: Disable reference-types and bulk-memory proposals during
14
+ validation. ([ #2349 ] )
15
+
16
+ [ #2349 ] : https://github.com/CosmWasm/cosmwasm/pull/2349
17
+
11
18
## [ 1.5.9] - 2024-12-10
12
19
13
20
### Added
Original file line number Diff line number Diff line change @@ -23,14 +23,23 @@ pub struct ParsedWasm<'a> {
23
23
impl < ' a > ParsedWasm < ' a > {
24
24
pub fn parse ( wasm : & ' a [ u8 ] ) -> VmResult < Self > {
25
25
let mut validator = Validator :: new_with_features ( WasmFeatures {
26
+ mutable_global : true ,
27
+ saturating_float_to_int : true ,
28
+ sign_extension : true ,
29
+ multi_value : true ,
26
30
deterministic_only : true ,
27
- component_model : false ,
31
+
32
+ reference_types : false ,
33
+ bulk_memory : false ,
28
34
simd : false ,
29
35
relaxed_simd : false ,
30
36
threads : false ,
37
+ tail_call : false ,
31
38
multi_memory : false ,
39
+ exceptions : false ,
32
40
memory64 : false ,
33
- ..Default :: default ( )
41
+ extended_const : false ,
42
+ component_model : false ,
34
43
} ) ;
35
44
36
45
let mut this = Self {
You can’t perform that action at this time.
0 commit comments