Skip to content

Commit 912c528

Browse files
committed
Fixing gates.
1 parent 01e8f78 commit 912c528

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

sdk/CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ This changelog summarizes major changes between GraalVM SDK versions. The main f
88
* 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.
99
* 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.
1010
* GR-65404 Remove `PolyglotLauncher` as it is no longer used.
11-
* GR-63009: The WebAssembly (Wasm) language is now available as a polyglot isolate.
12-
* GR-63009: JavaScript polyglot isolate now includes support for the WebAssembly (Wasm) language.
1311
* GR-68613: JavaScript polyglot isolate now includes support for the WebAssembly (Wasm) language.
1412

1513
## Version 25.0.0

truffle/src/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/polyglot/SandboxPolicyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
@RunWith(Parameterized.class)
8787
public class SandboxPolicyTest {
8888

89-
private static final String MISSING_ISOLATE_LIBRARY_MESSAGE = "No native isolate library found for language";
89+
private static final String MISSING_ISOLATE_LIBRARY_MESSAGE = "No native isolate library is available for the requested language(s)";
9090
private static final String UNSUPPORTED_ISOLATE_POLICY_MESSAGE = "but the current Truffle runtime only supports the TRUSTED or CONSTRAINED sandbox policies.";
9191

9292
private final Configuration configuration;

0 commit comments

Comments
 (0)