5.15 Release notes
Upgrade guides
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 settingAccess 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
, where0
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
andconst
supportclass
support- Rest, spread, and destructuring
- Template strings
- Modules
- Nullish coalescing and optional chaining (
a ?? b
anda?.b?.c
) - Library features like
ArrayBuffer
,BigInt
,DataView
,Map
,Promise
,Proxy
,Reflect
, andSet
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.