Skip to content

Commit 3af98dd

Browse files
OracleLabsAutomationelkorchi
authored andcommitted
[GR-57970] Backport to 24.1: Make js.webassembly option stable.
PullRequest: js/3257
2 parents 4deb7c0 + c6cbcdd commit 3af98dd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The main focus is on user-observable behavior of the engine.
55
Changelog may include unreleased versions.
66
See [release calendar](https://www.graalvm.org/release-calendar/) for release dates.
77

8+
## Version 24.1.1
9+
* Made option `js.webassembly` stable.
10+
811
## Version 24.1.0
912
* ECMAScript 2024 mode/features enabled by default.
1013
* Implemented the [Make eval-introduced global vars redeclarable](https://github.com/tc39/proposal-redeclarable-global-eval-vars) proposal.

graal-js/src/com.oracle.truffle.js/src/com/oracle/truffle/js/runtime/JSContextOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ public Map<String, String> apply(String value) {
540540
@CompilationFinal private boolean useUTCForLegacyDates;
541541

542542
public static final String WEBASSEMBLY_NAME = JS_OPTION_PREFIX + "webassembly";
543-
@Option(name = WEBASSEMBLY_NAME, category = OptionCategory.EXPERT, help = "Enable WebAssembly JavaScript API.") //
543+
@Option(name = WEBASSEMBLY_NAME, category = OptionCategory.USER, stability = OptionStability.STABLE, help = "Enable WebAssembly JavaScript API.") //
544544
public static final OptionKey<Boolean> WEBASSEMBLY = new OptionKey<>(false);
545545
@CompilationFinal private boolean webAssembly;
546546

0 commit comments

Comments
 (0)