Major
Detail
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
                                                
                                            #26484
                                                
                                                In-app template for grid and tables: Function "Verifier for use as list item" does not get component model
                                                
                                            #26536
                                                
                                                When rendering HTML from TLScript expressions, configured renderers are not taken into account
                                                
                                            #26797
                                                
                                                Transaction with user input: invisible properties of the form model cannot be assigned values (initialized)
                                                
                                            #26885
                                                
                                                Constraints on declarative forms with arguments from a container reference lead to errors for new elements
                                                
                                            #26921
                                                
                                                ClassCastException when evaluating security rules that refer to (non-structuredElement) singletons of a module.
                                                
                                            #26922
                                                
                                                With generated subject classes, a default provider of an attribute in a non-structure class does not get a create context
                                                
                                            #26988
                                                
                                                In-app documentation generator does not extract documentation for overwritten config properties
                                                
                                            #27027
                                                
                                                Declarative forms: SelectField disappears after upload if option list depends on mandatory property
                                                
                                            #27042
                                                
                                                MaintenanceJspBase should write to the log first, then to the client, instead of the other way around.
                                                
                                            
                        Bugfix
                         
                    
                    Migration scripts stored in the engine are no longer imported when starting an application on a new software version since #26377, because the migration directories are no longer identified as such.
Data migration
If a data state of an application has been rebuilt with the code state of TL_7.5.0-M1, this data state de-facto does not contain a data version. A simple boot with a new code state now tries to execute all migrations "from the beginning of time". This usually leads to an error. In this case, the data version must be entered into the database before restarting the application:
INSERT INTO TL_PROPERTIES ('node', 'propKey', 'propValue') VALUES('__global__', 'databaseVersion.tl-model-search', 'Ticket_25800_inconsistent_signature_create_handler'); INSERT INTO TL_PROPERTIES ('node', 'propKey', 'propValue') VALUES('__global__', 'databaseVersion.tl', 'Ticket_26117_security_object'); INSERT INTO TL_PROPERTIES ('node', 'propKey', 'propValue') VALUES('__global__', 'databaseVersion.tl-bpe', 'Ticket_25210_Model_references_in_form_definitions'); INSERT INTO TL_PROPERTIES ('node', 'propKey', 'propValue') VALUES('__global__', 'databaseVersion.tl-element', 'Ticket_26460_remove_TLStructuredType_part'); INSERT INTO TL_PROPERTIES ('node', 'propKey', 'propValue') VALUES('__global__', 'databaseVersion.tl-contact', 'Ticket_26398_remove_table_interfaces');
  
  Test
- Create application.
 - Boot and shutdown application.
 - Create migration script in application (Launch-Config "Create migration template (...)").
 - Start application.
 - The execution of the migration script must be announced in the log.
 
See also #26798