You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ This changelog summarizes major changes between GraalVM SDK versions. The main f
8
8
* GR-63588 A new entry (`Invalidated`) was added to the `opt deopt` truffle compilation logs. It is `true` or `false` depending on whether the compilation was also invalidated.
9
9
* GR-66817 Make `--polyglot` the default for language launchers, so there is no need to specify it anymore to use other languages in standalones. As a result, `AbstractLanguageLauncher#getDefaultLanguages()` and `Launcher#canPolyglot()` have been deprecated.
10
10
* GR-65404 Remove `PolyglotLauncher` as it is no longer used.
11
+
* GR-68613: JavaScript polyglot isolate now includes support for the WebAssembly (Wasm) language.
11
12
12
13
## Version 25.0.0
13
14
* GR-60636 Truffle now stops compiling when the code cache fills up on HotSpot. A warning is printed when that happens.
Creates and registers the polyglot isolate resource distribution and isolate resource meta-POM distribution.
1476
1479
The created polyglot isolate resource distribution is named `<ID>_ISOLATE_RESOURCES`, inheriting the Maven group ID
@@ -1483,25 +1486,27 @@ def register_polyglot_isolate_distributions(language_suite, register_project, re
1483
1486
:type register_project: (mx.Project) -> None
1484
1487
:param register_distribution: A callback to dynamically register the distribution, obtained as a parameter from `mx_register_dynamic_suite_constituents`.
Copy file name to clipboardExpand all lines: truffle/src/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/polyglot/SandboxPolicyTest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@
86
86
@RunWith(Parameterized.class)
87
87
publicclassSandboxPolicyTest {
88
88
89
-
privatestaticfinalStringMISSING_ISOLATE_LIBRARY_MESSAGE = "No native isolate library found for language";
89
+
privatestaticfinalStringMISSING_ISOLATE_LIBRARY_MESSAGE = "No native isolate library is available for the requested language(s)";
90
90
privatestaticfinalStringUNSUPPORTED_ISOLATE_POLICY_MESSAGE = "but the current Truffle runtime only supports the TRUSTED or CONSTRAINED sandbox policies.";
0 commit comments