3B Onboarding version 6.21 changelog
Revision as of 08:58, 26 February 2025 by Admin (talk | contribs) (Created page with "== Fixes == * Due to an issue with CORS, retreiving session details could cause an error when onboarding components were embedded externally. This has been patched Note: - All applications have been re-built with a minor change to session handling. By default, a user's session is 60 minutes (3600 seconds), however if you need to change this behaviour, update the window.globals object as follows:<syntaxhighlight lang="javascript"> window['globals'] = { sessionId: '...")
Fixes
- Due to an issue with CORS, retreiving session details could cause an error when onboarding components were embedded externally. This has been patched
Note:
- All applications have been re-built with a minor change to session handling. By default, a user's session is 60 minutes (3600 seconds), however if you need to change this behaviour, update the window.globals object as follows:
window['globals'] = {
sessionId: '{!GETSESSIONID()}',
siteUrl: '{!$Site.baseUrl}',
orgUrl: '{!orgUrl}',
sessionValidity: 7200 //2 hrs
}
window['globals'] = globals;
Make sure that the sessionValidity is equal to or less than the Authorized User (through the Authorization Connected App) session length (or when the user is logged out due to inactivity).
New
- Added feature management for tracking and analytics
Link:
https://login.salesforce.com/packaging/installPackage.apexp?p0=04tJ5000000D4rK