You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: Update Cartographer. This fixes an issue where sending custom values sent as arrays would not be serialized correctly.
Fix: Make DateFormat access thread safe. This fixes an issue where generated timestamps could be sometimes be malformed and not conform to the ISO 8601 standard.
Fix: Using Properties#putProducts was stored as an array instead of a list, and not serialized correctly. This caused it to be unusable by Segment and server side integrations. If you're stuck on a previous version for some reason, you can manually store it as a list:
List<Product> products = newArrayList<>();
products.add(newProduct("foo", "bar", 10));
// add other products to this list.Propertiesproperties = newProperties();
properties.put("products", products);