Skip to content

Releases: segmentio/typewriter

Release 6.1.0

31 Jan 18:18
Compare
Choose a tag to compare

Features

Release 6.0.0

30 Jan 00:54
Compare
Choose a tag to compare

Bug Fixes

  • javascript clients accepted context rather than options (#51) (5222145)

BREAKING CHANGES

  • if you previously passed context directly as the final
    parameter to the analytics.js or analytics-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

29 Jan 20:08
Compare
Choose a tag to compare

Bug Fixes

  • all SegmentOptions should be optional (#50) (e332779)

Release 5.1.7

29 Jan 19:29
Compare
Choose a tag to compare

Bug Fixes

Release 5.1.6

29 Jan 19:10
Compare
Choose a tag to compare

Bug Fixes

  • typed options.context in JS track calls (37f88c1)

Release 5.1.5

29 Jan 00:01
Compare
Choose a tag to compare

Bug Fixes

  • optional message parameter in JS clients (#47) (177069d)

Release 5.1.4

25 Jan 19:32
Compare
Choose a tag to compare

Bug Fixes

  • apply strictNullCheck fix in analytics.js client (#46) (fb368f6), closes #43
  • move husky to dev dependencies (#45) (5a6ef07)