Skip to content

Releases: launchdarkly/js-client-sdk

1.7.4

23 May 18:07
a6ae2c6
Compare
Choose a tag to compare

[1.7.4] - 2018-05-23

Fixed

  • Fixed a bug that caused events not to be sent if options.sendEvents was explicitly set to true.
  • HTTP requests will no longer fail if there is a charset specified in the response's Content-Type header. (#87)

1.7.3

08 May 18:22
Compare
Choose a tag to compare

[1.7.3] - 2018-05-08

Fixed

  • The client no longer creates an empty XMLHttpRequest at startup time (which could interfere with unit tests).

1.7.2

07 May 23:58
Compare
Choose a tag to compare
1.7.2 Pre-release
Pre-release

[1.7.2] - 2018-05-07

Fixed

  • The client no longer creates an empty XMLHttpRequest at startup time (which could interfere with unit tests).

1.7.0

27 Apr 19:56
13456be
Compare
Choose a tag to compare

Changed

  • The build now uses Rollup, Babel and Jest.

Fixed

  • Fixed a bug that caused a syntax error when running in Internet Explorer 11.
  • Fixed an IE 11 incompatibility in the example page index.html.
  • Fixed a bug that caused the SDK to send events on beforeunload even if it should not send events.

Changelog

1.6.2

05 Apr 13:25
5a0eebe
Compare
Choose a tag to compare

Fixed

  • LDClient.track properly sets the user for custom events.

Changelog

1.6.1

30 Mar 19:19
74b8cda
Compare
Choose a tag to compare

Fixed

  • The SDK now polls the URL for changes if (and only if) there are page view goals, to ensure it is accurately reporting page views.

Changelog

1.6.0

28 Mar 22:56
63ed7b1
Compare
Choose a tag to compare

[1.6.0] - 2018-03-28

Changed

  • Added support for a future update to LaunchDarkly that will deliver individual feature flag changes over the streaming connection as they occur, rather than requiring the client to re-request all flags for each change.

1.5.2

28 Mar 19:16
b7cd9c4
Compare
Choose a tag to compare

Added

  • The new flush method on the client object tells the client to deliver any stored analytics events as soon as possible, rather than waiting for the regularly scheduled event-flushing interval.

Fixed

  • Fixed a bug that could prevent events from being generated for page view goals.

Changelog

1.5.1

07 Mar 18:45
87780ff
Compare
Choose a tag to compare

[1.5.1] - 2018-03-07

Fixed

  • Removed usage of the const keyword, to maintain IE10 compatibility. (Thanks, turnerniles!)

1.5.0

05 Mar 21:25
4fd7e80
Compare
Choose a tag to compare

[1.5.0] - 2018-03-05

Added

  • The options object now supports a samplingInterval property. If greater than zero, this causes a fraction of analytics events to be sent to LaunchDarkly: one per that number of events (pseudo-randomly). For instance, setting it to 5 would cause 20% of events to be sent on average.