major
minor
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
#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.
defect
When attempting to import a model within the app, an error occurs. The underlying message is
java.lang.IllegalArgumentException: Association end 'tl.model:TLStructuredTypePart$owner#self' is already implemented by 'tl.model:TLStructuredType' in attribute 'localParts'.
at com.top_logic.model.impl.TLModelImpl.addReference(TLModelImpl.java:176)
at com.top_logic.model.util.TLModelUtil.addReference(TLModelUtil.java:711)
at com.top_logic.element.model.ModelResolver.addReference(ModelResolver.java:611)
at com.top_logic.element.model.ModelResolver$4.compute(ModelResolver.java:590)
at com.top_logic.basic.phase.PhaseComputation.complete(PhaseComputation.java:42)
at com.top_logic.element.model.DynamicModelService.loadModel(DynamicModelService.java:432)
at com.top_logic.element.model.DynamicModelService.loadTransientModel(DynamicModelService.java:421)
at com.top_logic.element.model.importer.XMIModelImportHandler.importTlModel(XMIModelImportHandler.java:195)
at com.top_logic.element.model.importer.XMIModelImportHandler.processModelData(XMIModelImportHandler.java:144)
at com.top_logic.layout.messagebox.AbstractCreateConfigurationDialog.lambda$1(AbstractCreateConfigurationDialog.java:176)
at com.top_logic.layout.basic.Command$CommandChain.executeCommand(Command.java:80)
...
Cause
During the migration for #25881, an incorrect "TLStructuredType#parts" attribute was created instead of "TLStructuredType#localParts". After rebooting, the "TLStructuredType#localParts" attribute was created, resulting in two references that implement the same `tl:TLAssociationEnd`.
Test
Verify that the domain object TLStructuredType (“Structured Type”) does not have a parts attribute.
Data Migration
- The automatic data migration (script Ticket_26460_remove_TLStructuredType_part.migration.xml) removes the newly created " localParts " attribute and renames the " parts " attribute.
- Alternatively, in-app: Remove the "TLStructuredType#parts" attribute. (Not recommended, since this means the localParts attribute has not existed since the beginning of time.)