From a1b22c819bc306d8fe2461a8d17fc9a5d7aa8f07 Mon Sep 17 00:00:00 2001 From: LaunchDarklyCI Date: Sat, 28 Mar 2020 01:00:26 +0000 Subject: [PATCH] Releasing version 1.4.1 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92be855..39af1ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [1.4.1] - 2020-03-27 +### Fixed: +- An error in the backoff logic added in v1.4.0 could cause a panic after many successive retries, due to the exponential backoff value exceeding `math.MaxInt64` resulting in a negative number being passed to `random.Int63n`. + ## [1.4.0] - 2020-03-25 ### Added: - New option `StreamOptionErrorHandler` provides an alternate way to receive errors and control how `Stream` behaves after an error.