forked from oracle/graal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51ac9dd
commit db04937
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/truffle/CHANGELOG.md merge=union | ||
/sdk/CHANGELOG.md merge=union | ||
/sdk/CHANGELOG.md merge=union | ||
/espresso/CHANGELOG.md merge=union |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Espresso Changelog | ||
|
||
## Version 21.3.0 | ||
### User-visible changes | ||
* Java 17 guest and host support. | ||
* Support using interop buffer-like object as a `byte[]` in espresso. | ||
* Add buffer interop messages to the explicit interop API. | ||
* The Polyglot API is not enabled by default anymore. When needed, contexts should be created with the `java.Polyglot` option set to `true`. | ||
* The HotSwapAPI is not auto-enabled by debugging anymore. When needed, contexts should be created with the `java.HotSwapAPI` option set to `true`. | ||
* Avoid illegal reflective access warnings with host Java >= 11. | ||
### Internal changes | ||
* The Static Object Model has moved to Truffle. | ||
* On-Stack-Replacement using the new Truffle bytecode OSR API. | ||
* Detect and report trivial methods. | ||
* Enable saturated type flows. | ||
### Noteworthy fixes | ||
* Performance and functional related to JDWP. | ||
* Fix some crashes observed when using the JNA. |