Releases: segmentio/typewriter
Releases · segmentio/typewriter
Release 6.1.0
Release 6.0.0
Bug Fixes
BREAKING CHANGES
-
if you previously passed
context
directly as the final
parameter to theanalytics.js
oranalytics-node
clients, then you'll
need to update it, like so:If you made a call like:
typewriter.thingHappened({ when: 'now' }, { groupId: 123 })
Then you would need to update it to:
typewriter.thingHappened({ when: 'now' }, { context: { groupId: 123 } })
This allows you to pass
integrations
and other fields in through this
object, and aligns the TypeScript declarations with the underlying library.
Release 5.1.8
Release 5.1.7
Release 5.1.6
Bug Fixes
- typed
options.context
in JS track calls (37f88c1)