Relase Notes 2026.2

The 2026.2 release introduces three new features and two fixes.

FEATURE: User API DataPage Extended Support for Filters and Sorts

This release adds extended support for specifying filter and sort parameters on the User API DataPage endpoint. Clients can now request custom filtering and sorting similar to the internal API. It is no longer necessary to create a separate endpoint for each filter and sort setup. You can use parameters like:

../endpoint?filter={filter}&sort={sort}

To enable this feature, you need to allow it using the AllowCustomFilters parameter in the XsltDataPage.

FEATURE: Close Modal Windows on Escape

This micro-feature allows modal windows in the client application to be closed by pressing the Escape key. It should only be added to modal windows where using Escape is unambiguous, so probably not for Yes/No dialogues.

Currently, it works in:

  • Column Settings dialog
  • About dialog
  • Dialogs created in models that have an “X” close button in the top-right corner

FEATURE: Keyboard Shortcut for Search Function

Another micro-feature that allows users of the client application to quickly open the search window using the Ctrl+F shortcut. Users of projects with extensive search requirements will find this very useful.

FIX: Duplicate key error inserting OrigamTraceWorkflowStep

We fixed an issue where inserting trace workflow steps could fail with a primary key violation (duplicate key) and related foreign key conflict when tracing workflows via the user API. This fix improves workflow trace handling and prevents the HTTP 500 error.

FIX: Path.Combine was incorrectly used for model path

Resolved an issue in Architect 2025.10 where expanding a menu binding dropdown could fail with an “Illegal characters in path” error due to System.IO.Path.Combine being used to build model paths containing characters such as “<>”. The fix removes the incorrect use of Path.Combine for model paths and restores the ability to list menu items in the dropdown.