Skip to main content

5.15 Release notes

Upgrade guides

5.15.3 Patch notes

Release date

Cinchy v5.15.3 was released on May 8, 2025.

New capabilities

  • Cinchy v5.15.3+ supports both ascending and descending column ordering for regular indexes. Previously, all ordering defaulted to ascending; you can now explicitly define your preference via the table UI or CQL. Tables exported via the Model Loader or DXD will also adhere to the selected (or default) sort order.
note

If you need to change the ordering of a unique index created via the UI for singular columns, you must disable the unique tag and redefine the index in another request.

Bug fixes

  • Dropdown values for both index columns and included columns will correctly update in the table UI after selecting or removing values.
  • Calculated columns that reference link columns will properly resolve for draft data.

5.15.2 Patch notes

Release date

Cinchy v5.15.2 was released on April 2, 2025.

Bug fixes

  • Link columns with a large amount of records selected in the drop-down will now load correctly in the table view.

5.15.1 Release notes

Release date

Cinchy v5.15.1 was released on March 20, 2025.

Important changes

  • The Connections Experience no longer supports silentRefresh. Session duration can still be controlled by setting Access Token Lifetime (seconds) in the [Cinchy].[Integrated Clients] table for the Connections Experience.
  • For security and compatibility, the Snowflake driver was updated to the v4.x series, a Behaviour Change Release. See Using Connection Pools for additional details.
note

For real-time syncs using Snowflake as the destination, it may be necessary to add PoolingEnabled=false to the Snowflake connection string.

  • By default, the Web component caches Authentication token introspection results for up to 5 minutes (300 seconds), to reduce traffic to IDP. This can be changed in the IDP appsettings.json file by setting the value of IntrospectionOutcomeCacheDurationSeconds, where 0 will disable this cache. Note that the cache may be cleared earlier than the specified duration, so this value represents the maximum time that the introspection result may be cached.
  "ConfigSettings": {
"AppSettings": {
"IntrospectionOutcomeCacheDurationSeconds": 0,
}
}

Enhancements

  • Cinchy v5.15 is compatible with the MySql v9.2.0 driver.
  • Improved performance of non-cached calculated columns.
  • JavaScript engine has been updated, enabling most modern ECMAScript features in User-Defined functions, including:
    • Arrow functions
    • let and const support
    • class support
    • Rest, spread, and destructuring
    • Template strings
    • Modules
    • Nullish coalescing and optional chaining (a ?? b and a?.b?.c)
    • Library features like ArrayBuffer, BigInt, DataView, Map, Promise, Proxy, Reflect, and Set

Bug fixes

  • Connections UI validation will no longer indicate that 0 is invalid for number fields.
  • Values in multi-select columns that link to another link column can once again be toggled on/off using the mouse.