faraday_middleware-circuit_breaker 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58839ba030df8c51e5a2bda81aad28ba586fbe0a3f0a3cffc817a8f171ea830c
4
- data.tar.gz: 053b87ffe546b0ec2c42db10ce41b7dc6a890f1d1c7b08793858f2599190c4f5
3
+ metadata.gz: 9159c85c1f3656910b9f1948f93845bd3e895ad930249d6cbd7d9610e25873cb
4
+ data.tar.gz: 38dcea3968dd24d39052d4600029f26133e6578c28b09139a1207e3cd740330a
5
5
  SHA512:
6
- metadata.gz: 5aaf8fa2fd96875159b0bc42537a5211dd33dd975a4731f80c04bdb43ec848cfb5c6a646727b128ef90aefc9cccbf58224347fec01a4f42df05a7f8bf849a3c7
7
- data.tar.gz: eb314d3a44362297d1c9ba025444abb6d1c26e61ac36b0e669291d36aa15f8436b54ef24d6dc27790b1981d225abd303e51f0f0b7fb70860448b5f5aac3f6d00
6
+ metadata.gz: e961f28f395dcb4be457a447f85bbb8edd0b18c3d24a512c6364314656d750e485cd0ad0108b5df5eb9f47a8262f7ce39e584db840f945789515e07a180452b4
7
+ data.tar.gz: 8997803fa7417905d82944fe44378f719dd12414c28dc23fbb0fbbe1deae8f3547c4840ec7c09e7ccdbb98d55a8c958a90a3372a534b452415bf5b5d76b0a0c2
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.1]
10
+ ### Fixed
11
+
12
+ - Fixed `ArgumentError: Unknown option: data_store. Valid options are :timeout, threshold, fallback, notifiers, data_store,, error_handler`
13
+ due to an extra comma introduced in the valid option list.
14
+
9
15
  ## [0.4.0]
10
16
  ### Added
11
17
 
@@ -6,7 +6,7 @@ module FaradayMiddleware
6
6
  module CircuitBreaker
7
7
  class OptionSet
8
8
 
9
- VALID_OPTIONS = %w(timeout threshold fallback notifiers data_store, error_handler)
9
+ VALID_OPTIONS = %w(timeout threshold fallback notifiers data_store error_handler)
10
10
 
11
11
  attr_accessor :timeout, :threshold, :fallback, :notifiers, :data_store, :error_handler
12
12
 
@@ -1,5 +1,5 @@
1
1
  module FaradayMiddleware
2
2
  module CircuitBreaker
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faraday_middleware-circuit_breaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pierre-Louis Gottfrois
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-04 00:00:00.000000000 Z
11
+ date: 2020-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday