Skip to content

Commit 05d8e5b

Browse files
Releasing version 1.0.3
1 parent f508c2d commit 05d8e5b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the LaunchDarkly SSE Client for Ruby will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [1.0.3] - 2020-03-17
6+
### Fixed:
7+
- The backoff delay logic for reconnecting after a stream failure was broken so that if a failure occurred after a stream had been active for at least `reconnect_reset_interval` (default 60 seconds), retries would use _no_ delay, potentially causing a flood of requests and a spike in CPU usage.
8+
59
## [1.0.2] - 2020-03-10
610
### Removed:
711
- Removed an unused dependency on `rake`. There are no other changes in this release.

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ld-eventsource (1.0.2)
4+
ld-eventsource (1.0.3)
55
concurrent-ruby (~> 1.0)
66
http_tools (~> 0.4.5)
77
socketry (~> 0.5.1)

lib/ld-eventsource/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module SSE
2-
VERSION = "1.0.2"
2+
VERSION = "1.0.3"
33
end

0 commit comments

Comments
 (0)