major
minor
defect
major
minor
#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
enhancement
minor
#26377
FileManager: Remove dependency on java.io.File
If an application is to run directly from WAR files (or WAR fragments), access to resources must not be implemented using `java.io.File`.
Code Migration
- FileManager.getFile(name, create, toplevel) has been removed without replacement.
- Instead of ` FileManager.getFile(name, create=true) `, you must use ` FileManager.createFile(name)`.
- Instead of `FileManager.getFile(name, create=false) `, you must use ` FileManager.getFile(name)`.
Test
Refactoring; no additional testing required. The application must run in the workspace without TL modules.