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
prepare 4.13.0 release #189
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
bump eventsource version so we're no longer getting JSR305 annotations
…s-clarification extract gradle properties clarification to separate PR
Removed .fossa.yml, removed fossa job from circleci, removed fossa ba…
add optional metric value to track()
* artifact/repository rename + doc update * cleaning up markdown files * cleaning up markdown files * cleaning up markdown files * cleaning up markdown files * absolute contributing url * adding "server-side" to the title * adding "server-side" to the title * relative link * add a note to the changelog about the artifact name change
…per build (#126) * re-introduce ossrh properties which were removed a while back * adding a comment * bump felix versions
attempt to fix releases
use Set instead of List for user targets
…eads (4.x) change in-memory store to use an immutable map and lockless reads
update build to Gradle 6 and streamline packaging tests
(4.x) add getters for all properties on EvaluationReason; deprecate subclasses
(4.x) add scoped configuration for HTTP options
Java SDK should only log exception stacktraces at debug level
bwoskow-ld
approved these changes
Apr 22, 2020
Member
bwoskow-ld
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.
👍
eli-darkly
added a commit
that referenced
this pull request
Apr 30, 2020
(5.0) finish updating to okhttp 4.x
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.
[4.13.0] - 2020-04-21
Added:
Components.httpConfiguration()andLDConfig.Builder.http(), and the new classHttpConfigurationBuilder, provide a subcomponent configuration model that groups together HTTP-related options such asconnectTimeoutMillisandproxyHost- similar to howComponents.streamingDataSource()works for streaming-related options orComponents.sendEvents()for event-related options. The individualLDConfig.Buildermethods for those options will still work, but are deprecated and will be removed in version 5.0.EvaluationReasonnow has getter methods likegetRuleIndex()that were previously only on specific reason subclasses. The subclasses will be removed in version 5.0.Changed:
(Note that this means if there is a sustained database outage, you may see repeated reconnections as the SDK receives the data from LaunchDarkly again, tries to store it again, and gets another database error. Starting in version 5.0, there will be a more efficient mechanism in which the stream will only be restarted once the database becomes available again; that is not possible in this version because of limitations in the feature store interface.)
Fixed:
ERRORorWARNlevel, and the stacktrace only appears if you have enabledDEBUGlevel.Deprecated:
LDConfig.BuildermethodsconnectTimeout,connectTimeoutMillis,proxyHost,proxyPort,proxyUsername,proxyPassword,sslSocketFactory,wrapperName, andwrapperVersion. UseLDConfig.Builder.http()andComponents.httpConfiguration()instead.EvaluationReasonsubclasses. Use the property getter methods onEvaluationReasoninstead.