Release Notes 2024.6

2024.6.1.3442

This minor release provides several fixes introduced in previous versions and a new configuration feature.

Configuration options for HTTP form requests

In case your application is handling file uploads, for example by using custom controller, you might encounter a problem with limit on multipart body length. By default .net limit is approx. 128 MB, which might be too low for your needs. Minor release 2022.4.7 provides one time remedy to the problem by setting limit to approx. 2 GB. This release introduces support for configuration of handling such request in appsettings.json. The names of configuration elements follow names of the variables in .net FormOptions class. Snippet of configuration section with default values:

"HttpFormSettings": {
    "MultipartBodyLengthLimit": 134217728,
    "MultipartHeadersLengthLimit": 16384,
    "ValueLengthLimit": 4194304
}

Fixes

There are three fixes introduced in previous version that are delivered with this release. Pressing enter in combobox field with new value support doesn’t always spawn new value dialog anymore. We’ve improved support for fast keyboard operations with comboboxes, so value is selected even when typing very quickly and pressing tab two times in quick succession shouldn’t be problem as well.