Circuitbreaker Versions Save

Circuit Breakers in Go

v2.2.1

6 years ago

v2.2.0

7 years ago

2.2.0 - 2016-08-09

Added

  • Externally provided event listener channel (@spencerkimball)

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • Reduce allocations around last failure time storage
  • Use the Clock for window code as well
  • Remove test data race
  • Fix race condition in state() (@tamird)

v2.1.7

7 years ago

Added

  • Nothing

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • Set Backoff.MaxElapsedTime to 0 as default [@matope]
  • Use a lock when modifying nextBackoff
  • Fix goroutine leak when using timeouts [@isaldana]
  • Fix window buckets that should be empty [@isaldana]
  • Update backoff package, which has been renamed

v2.1.6

8 years ago

2.1.6 - 2016-02-02

Added

  • Nothing

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • client.Do() was not returning the error when it timed out [@ryanmurf]

v2.1.5

8 years ago

2.1.5 - 2015-11-19

Added

  • Nothing

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • Respect backoff.Stop [@bc-vincent-zhao]

v2.1.4

8 years ago

2.1.4 - 2015-09-01

Added

  • Nothing

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • HTTP client was using a new panel object instead of the one it added the breaker to [@ryanmurf]

v2.1.3

8 years ago

2.1.3 - 2015-08-05

Added

  • Configurable bucket time and number [@thraxil]
  • Use mock clock for test [@andreas]

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • Bug in statsd bucket name documentation / example [@thraxil]

v2.1.2

9 years ago

Added

  • Nothing

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • Simplify Call() for rate breaker, fixing a reset bug [@Melraidin]

v2.1.1

9 years ago

Added

  • Nothing

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • Ensure the half opens counter resets when the breaker resets, or auto-resetting may not occur

v2.1.0

9 years ago

Added

  • Failure, Sucess counts and Error Rate is now calculated over a sliding window
  • Number of buckets in the window and the time the window spans are tuneable

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • A race condition in Call()