TopLogic - the automated application engine
  • Releases
  • Dokumentation
  • Github
  • Discord
  1. Home
  2. Releases
  3. TL_7.11.0
  4. #29325

7.11.0
TopLogic Release

2026-06-19

enhancement

major
#29084
JSON Schema Support for Typed Configuration
minor
#29334
Status code as argument for responses in REST requests

defect

major
#28993
Filters of dynamic columns ignore the attribute type
#29042
Error in column filter for double values
#29234
OpenAPI server cannot return binary responses
#29325
Generated JSON schema marks a non-nullable layout-template property (dialog title) as nullable/optional
#29336
7.10: Bookmark links do not work for logged-in users
#29338
CreateTLSingletonProcessor creates duplicate annotations
minor
#28456
Reference to missing files in subsession.jsp
#28485
Immutable/Disbled Boolean fields accessible/focusable via tab
#28651
Unnecessary space for inline tables
#28725
Pointless scroll bar in the help editor
#29053
TL-Script: format() with null input returns IllegalArgumentException
#29066
"SafeHTML not started" error with scripted tests
#29069
A calculated attribute of the type "General search expression" cannot return a closure
#29074
The form data of a component cannot be accessed in a value transformation of a component channel
#29075
After changing the model, calculated attributes that have become invalid can no longer be edited
#29076
API key in REST interface configuration is not hidden
#29091
Values of a composition attribute cannot be edited if previously used in the same form
#29240
Update possible with incorrect attributes
#29284
Flow diagram: Font metric does not fit - texts flow beyond their frame
#29304
Replacement value attribute is not applied correctly in transient objects
#29339
Failed migration in #28305
#29340
TL Script: Optimizing database queries with transient objects fails
defect

major

#29325

Generated JSON schema marks a non-nullable layout-template property (dialog title) as nullable/optional

Observed while building layout-template arguments from the generated JSON schema(toplogic://schema/layout-template/{name}).

Symptom

For the template com.top_logic/dialog.template.xml, the title property is declared non-nullable with an item-default:

<property name="title" type="PolymorphicConfiguration"> <item-default/> <non-nullable/> </property>

but the generated JSON schema presents it as nullable/optional:

"title": { "title": "Title provider", "anyOf": [ { "type": "null" }, { "$ref": "toplogic://schema/config/com.top_logic.layout.component.title.TitleProvider" } ] }

Because the schema offers {"type": "null"}, a schema-driven client (here: an AI agent authoring the arguments) reads title as optional and omits it.

Consequence

When title is omitted, the non-nullable item-default resolves to a ConstantTitle$Config whose getTitle() is @Mandatory and unset. The resulting component cannot be instantiated:

Property 'com.top_logic.layout.component.title.ConstantTitle$Config.getTitle()': Property is mandatory but not set.

This error is only logged (caught in DatabaseLayoutCacheEntry.put(...), "Cannot parse layout '...'") and the layout silently fails to build - it is not surfaced to the caller.

Expected

The generated schema should reflect the contract:

  • A <non-nullable/> property should not include {"type": "null"} in its anyOf (it is not optional).
  • For a non-nullable item-default whose concrete default config has @Mandatory nested properties (e.g. ConstantTitle.getTitle()), the schema should surface those nested properties as required, so a client can supply a complete value rather than producing an un-instantiable default.

Notes

  • Reproduced against engine 8.0.0-alpha3 via the layout-template config-schema endpoint.
  • The same shape likely affects any layout-template property declared non-nullable with an item-default that carries mandatory nested fields.
  • Manifested in the tl-ai agentic layout editor, where the agent omitted title and produced an un-instantiable dialog; once the error was reported back (build-time validation with an own protocol), the agent supplied a correct ConstantTitle value.
  • Get Started
  • Github
  • Discord
  • Das Unternehmen hinter TopLogic
  • Softwareentwicklung heute
  • Kontakt

© Copyright – Business Operation Systems GmbH

  • top-logic.com
  • Nutzungsbedingungen
  • Impressum
  • Rechtlicher Hinweis
  • Datenschutz
  • DE
  • Login