Skip to content

Commit

Permalink
Releasing version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyCI committed Jun 2, 2020
1 parent 14b660c commit 47ca806
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to the LaunchDarkly EventSource implementation for Java will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [2.3.0] - 2020-06-02
### Added:
- `EventSource.Builder.logger()` and the `Logger` interface allow a custom logging implementation to be used instead of SLF4J.
- `EventSource.Builder.loggerBaseName()` allows customization of the logger name when using the default SLF4J implementation.
- Greatly improved unit test coverage; the CI build will now enforce coverage goals (see `CONTRIBUTING.md`).

### Fixed:
- Explicitly closing the stream could cause a misleading log line saying that the connection error handler had shut it down.
- Explicitly closing the stream could also cause an unnecessary backoff delay (with a log line about waiting X amount of time) before the stream task actually shut down.
- Fixed a bug that could cause the randomized jitter not to be applied to reconnection delays if the reconnect interval (in milliseconds) was a power of two.

## [2.2.0] - 2020-05-08
### Added:
- `EventSource.Builder.threadPriority()` specifies that `EventSource` should create its worker threads with a specific priority.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.3.0-SNAPSHOT
version=2.3.0
ossrhUsername=
ossrhPassword=

Expand Down

0 comments on commit 47ca806

Please sign in to comment.