Skip to content

Commit b0dc1b8

Browse files
[GR-35461] Update espresso changelog.
PullRequest: graal/10783
2 parents 4c4d01d + 5901293 commit b0dc1b8

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

espresso/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
# Espresso Changelog
22

3+
## Version 22.1.0
4+
35
## Version 22.0.0
6+
### User-visible changes
7+
* New HotSwap support for changing fields. Enable with the `--java.ArbitraryChangesSupport=true` experimental flag.
8+
* New HotSwap support for changing class access modifiers. Enable with the `--java.ArbitraryChangesSupport=true` experimental flag.
9+
* Added support for running native code with the LLVM runtime. This can be enabled with the `--java.NativeBackend=nfi-llvm` experimental flag.
10+
Native JDK libraries can be installed with `gu install espresso-llvm`. When installed, those libraries will be picked up by the `nfi-llvm` native backend.
11+
This allows to bypass some limitations of the default native backend (`nfi-dlmopen`). In particular, it avoids crashes that can happen on some glibc versions when using multiple contexts.
412
### Internal changes
513
* Espresso adopted the new Frame API.
14+
### Noteworthy fixes
15+
* Fix Strings sometimes not properly displayed in the debugger view through JDWP
616

717

818
## Version 21.3.0

espresso/ci_common/common.jsonnet

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,15 @@ local benchmark_suites = ['dacapo', 'renaissance', 'scala-dacapo'];
3434
setup+: [
3535
['cd', base.suite_name],
3636
],
37+
guard : {
38+
excludes : ["**.md", "<graal>/**.md"]
39+
},
3740
},
3841

3942
linux: self.common + sulong_deps.linux + {
4043
packages+: {
4144
'00:devtoolset': '==7', # GCC 7.3.1, make 4.2.1, binutils 2.28, valgrind 3.13.0
42-
'01:binutils': '>=2.34',
45+
'01:binutils': '==2.34',
4346
git: '>=1.8.3',
4447
'sys:cmake': '==3.15.2',
4548
ruby: "==2.6.5",

0 commit comments

Comments
 (0)