-
Notifications
You must be signed in to change notification settings - Fork 53
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 5.7.3 release #156
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
log exceptions at error level and stacktraces at debug level
add new version of all_flags that captures more metadata
add ability to filter for only client-side flags
implement evaluation with explanations
fix event generation for a prerequisite that is off
add option to reduce front-end metadata for untracked flags
don't let user fall outside of last bucket in rollout
add event payload ID header
remove rake dependency
update ruby-eventsource to 1.0.3 for backoff bug
fix incorrect initialization of EventProcessor
…heck remove install-time openssl check that breaks if you don't have rake
fail fast for nil SDK key when appropriate
bwoskow-ld
approved these changes
Apr 27, 2020
LaunchDarklyReleaseBot
pushed a commit
that referenced
this pull request
Aug 11, 2021
…traints allow higher minor versions of json and http gems
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.
[5.7.3] - 2020-04-27
Changed:
openssl
would cause a failure at build time. The SDK still requiresopenssl
at runtime, but this check has been removed because it caused therake
problem mentioned below, and becauseopenssl
is normally bundled in modern Ruby versions.Fixed:
LDClient
constructor will fail immediately with a descriptiveArgumentError
if you provide anil
SDK key in a configuration that requires an SDK key (that is, a configuration that will require communicating with LaunchDarkly services). Previously, it would still fail, but without a clear error message. You are still allowed to omit the SDK key in an offline configuration. (#154)rake
which could cause your build to fail if you had a dependency on this SDK and you did not haverake
installed. (#155)