This repository was archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
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
(5.0) move flag change stuff into FlagTracker facade, simplify value listener
# Conflicts: # CONTRIBUTING.md
# Conflicts: # CONTRIBUTING.md
# Conflicts: # benchmarks/src/jmh/java/com/launchdarkly/client/FlagData.java # benchmarks/src/jmh/java/com/launchdarkly/client/TestValues.java # benchmarks/src/jmh/java/com/launchdarkly/sdk/server/EventProcessorBenchmarks.java # benchmarks/src/jmh/java/com/launchdarkly/sdk/server/LDClientEvaluationBenchmarks.java # benchmarks/src/jmh/java/com/launchdarkly/sdk/server/TestValues.java
# Conflicts: # benchmarks/src/jmh/java/com/launchdarkly/sdk/server/TestValues.java
# Conflicts: # benchmarks/src/jmh/java/com/launchdarkly/sdk/server/EventProcessorBenchmarks.java # benchmarks/src/jmh/java/com/launchdarkly/sdk/server/TestValues.java
Co-authored-by: Sam Stokes <sstokes@launchdarkly.com>
…ic-for-isExperiment simlpify the logic and make it match node/.Net sdks
protect against NPEs if flag/segment JSON contains a null value
# Conflicts: # src/test/java/com/launchdarkly/sdk/server/DataModelSerializationTest.java
#289) * update to okhttp-eventsource patch for stream retry bug, improve test * add test for appropriate stream retry
* add public builder for FeatureFlagsState * javadoc fixes
# Conflicts: # src/main/java/com/launchdarkly/sdk/server/integrations/FileData.java
…h from manifest (#295)
gwhelanLD
approved these changes
Jul 8, 2021
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.6.1] - 2021-07-07
This release fixes two packaging errors that could produce unwanted Java dependency behavior, as described below. There are no changes to the SDK's functionality in this release, and you do not need to modify your code or your build.
Fixed:
com.fasterxml.jackson.core:jackson-core
,com.fasterxml.jackson.core:jackson-databind
) were mistakenly listed as dependencies in the SDK's metadata, causing those packages to be downloaded and included in the classpath even if you were not using them. The SDK does not require Jackson, even though it can optionally be made to use it. This was meant to be fixed in the 5.5.0 release as previously described in the changelog, but was not.Class-Path
attribute that referenced SLF4J and Jackson jars at a specific relative file path. This could cause a warning to be printed if those jars did not exist at that file path, even if they were elsewhere in your classpath. TheClass-Path
attribute is mainly useful for independently-deployable application jars and is not useful here; it has been removed. (#240)