Major
Detail
Bugfix
Major
Detail
#26382
Error messages "Duplicate tag name..." when starting an application in the IDE from a TL-Studio
#26405
TTypeRewriter logs warning "Unable to resolve items by external reference" also unnecessarily
#26431
Changed superclass relationship leads to changed attribute list in the form editor only after a restart
Bugfix
The pattern Files.list(path).forEach(p -> {...}) leaves an open file handle of the listed directory. Instead, you need to write the following:
try (Stream<Path> files = Files.list(path)) { files.forEach(p -> {...}); }
Test
- Start application and check that there are not a thousand open files hanging around in WEB-INF/... hanging around.
- lsof -p <process-id> | sort -k 8 | less