June 1, 2017
Tealium Universal Tag (utag.js)
- Removed use of global variable
i
– previously used in loop through global variableutag_cfg_ovrd
(config override object) - Removed legacy s2s support (as this was previously removed from Tealium iQ.) Cloud Delivery supported in Tealium Customer Data Hub.
- Adds support for error handler function passed into
utag.ut.loader
utility function. This is only for modern browsers (older browser may the standard callbackcb
function instead)
utag.ut.loader({
"src" : "https://www.example.com/path/file.js",
"cb" : function(){console.log("CALLBACK")},
"error" : function(){console.log("ERROR IN LOADING")}
});
Tealium for Java
- Added Datasource
- New variable
tealium_datasource
added - Persistent file name changed to
account.profile.data
(if upgrading from prior version, file no longer accessible) - Bug fix for unit test
Tealium for C sharp
- Event Tracking
- Track event names with optional additional data. Provide completion blocks to handle any responses.
- Collect Module
- Support for sending event data to a collection endpoint. If needed, override the defaults to Tealium’s VData endpoint.
- AppData Module
- Provides automatic inclusion of useful app data (session id, random number and timestamp) to each events, as well as user defined optional data.
- Logger Module
- Provides log output for debugging purposes.
- Sample application included showing example interaction with the main classes.