-
Notifications
You must be signed in to change notification settings - Fork 48
prepare 3.5.0 release #116
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
Merged
Merged
Conversation
This file contains hidden or 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
fix version string
add new version of allFlags() that captures more metadata
add ability to filter for client-side flags only
implement evaluation with explanations
cache flag data in allFlags
# Conflicts: # src/LaunchDarkly/LDClient.php
add option to reduce front-end metadata for untracked flags
remove lockfile
# Conflicts: # composer.lock
add DynamoDB integration
# Conflicts: # composer.lock
add Consul integration
simplify & move feature requester/event publisher code
arun251
approved these changes
Jan 31, 2019
Contributor
arun251
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
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.
[3.5.0] - 2019-01-30
Added:
ld-relay, similar to the existing Redis integration. SeeLaunchDarkly\Integrations\ConsulandLaunchDarkly\Integrations\DynamoDb, and the reference guide Using a persistent feature store.redis_timeoutto the desired number of seconds. (Thanks, jjozefowicz!)LaunchDarkly\Integrations\Files.allFlagsStatemethod now accepts a new option,detailsOnlyForTrackedFlags, which reduces the size of the JSON representation of the flag state by omitting some metadata. Specifically, it omits any data that is normally used for generating detailed evaluation events if a flag does not have event tracking or debugging turned on.Changed:
feature_requesterandevent_publisherconfiguration options now work differently: you can still set them to an instance of an implementation object, but you can also set them to a class or a class name (i.e. the same as thefeature_requester_classoption), or a factory function. Therefore, the_classversions of these options are no longer necessary. However, the old semantics still work, so you can for instance setevent_publisher_classto"LaunchDarkly\GuzzleEventPublisher", even though the new preferred way is to setevent_publishertoLaunchDarkly\Integrations\Guzzle::featureRequester().Fixed:
allFlagsStateis now slightly smaller even if you do not use the new option described above, because it omits the flag property for event tracking unless that property is true.$_anonymousproperty of theLDUserclass was showing up as public rather than protected. (Thanks, dstockto!)