-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prepare 2.15.0 release #183
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add debug logging for various things
don't send extra feature events when getting flags from Electron main client
final readme updates for beta
remove Electron from the electron branch
* Initial commit. * Upgraded jest types * Update config.yml * Exported ts definitions. * Added ts docs and updated readme. * Updated readme. Replaced default imports to ensure maximum compatibility with ts. * Update packages/ldclient-react/README.md Co-Authored-By: yusinto <yusinto@gmail.com> * Removed unused import. * PR feedback re documentation. * Update README.md * Update README.md * Update README.md * Update README.md * Changed api to functions based on pr comments. * Update home.js * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Updated consumer doco and tsdocs. * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * React SDK - Implement alternative to allFlags (#150) * Added target flags param when initialising ldClient to give users a chance to not use allFlags. * Update README.md * Update README.md * Update README.md * Update README.md * Replace localstorage with empty object.
reorganize readme content into 3 files
# Conflicts: # CHANGELOG.md # lerna.json # packages/ldclient-js-common/package.json # packages/ldclient-js/package.json # packages/ldclient-react/package.json
ensure that build happens before publish for ldclient-react
deprecate samplingInterval
* improve log message for stream connection failures * update the reconnection warning so that it only displays for the first set of each reconnection attempts * also test that the original put is getting called * updating tests * updating tests * Revert "updating tests" This reverts commit 84163cdf8b5af6a6e969d777b946a8a2973919ed. * better abstraction * minor change
remove common package, no more monorepo
use spread operator instead of Object.assign
don't close client on beforeunload, but do flush events
# Conflicts: # index.html # package-lock.json # package.json
add new JS SDK test/demo page
bwoskow-ld
approved these changes
Nov 5, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[2.15.0] - 2019-11-05
Changed:
launchdarkly-js-sdk-common
package has been moved out of this repository intojs-sdk-common
, and will now be versioned separately. Applications should never refer to the common package directly; it is brought in automatically bylaunchdarkly-js-client-sdk
. Changes made in the common code that affect JS SDK functionality will be noted in the main changelog here.example
directory, which may be useful for testing not only of the JS SDK but of feature flag evaluation in general.Fixed:
beforeunload
event handler no longer callsclose
on the client, which was causing the SDK to become unusable if the page did not actually close after this event fired (for instance if the browser navigated to a URL that launched an external application, or if anotherbeforeunload
handler cancelled leaving the page). Instead, it now only flushes events. There is also anunload
handler that flushes any additional events that might have been created by any code that ran during thebeforeunload
stage. (#181)Object.assign
that caused errors in Internet Explorer unless a polyfill for that function was present. These were removed earlier in the 2.1.1 release, but had been mistakenly added again.Deprecated:
samplingInterval
configuration property is deprecated and will be removed in a future version. The intended use case for thesamplingInterval
feature was to reduce analytics event network usage in high-traffic applications. This feature is being deprecated in favor of summary counters, which are meant to track all events.