excess_flow 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1286509536acfa9766f1b264bbed6e5526455b5cfed784549b33664b85a6681
4
- data.tar.gz: e0717e50efd7aeb81e70ac2b58893de61933dc911d240f914900680935efc241
3
+ metadata.gz: fb4d99f396cab3a0284b7d82ec64fbd70c2dff2c43f6eac8420291a522641572
4
+ data.tar.gz: ac6d5775cd62ae23e4b972533dc2837e37ca96cfa02c4e85920a157d4c8b5e5e
5
5
  SHA512:
6
- metadata.gz: 74c46e5def9b54e427e6dc006740138a506a2619b1666bf4834c1d516ddd5a61402eb624affbbbd87ba671a222bbd09d3630ffcf80385d68cf1e30b92b7c9330
7
- data.tar.gz: 1f4350113809b5bbf493dc78efa77f5baaca2338c609aa101cfaa215ad788da5a44d9fc06ed1fd64add64672d3d8d6867e40154cbe91f2aba71a8e0eaf7e886a
6
+ metadata.gz: ae13311decf56aa76a60e043a39b378cc57189bb58a4999982199607a4e76e0f77d97d384c645cef00b0f91d6a6a2d074af1fdc307cbf7cfaff021f8181ce9c0
7
+ data.tar.gz: f1822c55125151241c0521e65a46699afaba66e71e2971371ebdab9064422706aff97168e984666665b80384dc452bb6f114475b88c42d0bb4695de00a5d3e06
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.3
4
+ - Bumping up gems in Gemfile.lock
5
+ - Adding test to test window expiration for `FixedWindowStrategy`
6
+
3
7
  ## 1.0.2
4
8
  - Fixing a bug where `SlidingWindowStrategy` allowed occasional requests slip
5
9
  through over the limit.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- excess_flow (1.0.1)
4
+ excess_flow (1.0.3)
5
5
  connection_pool
6
6
  rake
7
7
  redis
@@ -10,15 +10,15 @@ GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
12
  ast (2.4.0)
13
- connection_pool (2.2.2)
13
+ connection_pool (2.2.3)
14
14
  diff-lcs (1.3)
15
15
  jaro_winkler (1.5.3)
16
16
  parallel (1.17.0)
17
17
  parser (2.6.5.0)
18
18
  ast (~> 2.4.0)
19
19
  rainbow (3.0.0)
20
- rake (13.0.0)
21
- redis (4.1.3)
20
+ rake (13.0.1)
21
+ redis (4.2.1)
22
22
  rspec (3.8.0)
23
23
  rspec-core (~> 3.8.0)
24
24
  rspec-expectations (~> 3.8.0)
@@ -51,4 +51,4 @@ DEPENDENCIES
51
51
  rubocop (~> 0.74.0)
52
52
 
53
53
  BUNDLED WITH
54
- 2.0.2
54
+ 2.1.4
@@ -23,5 +23,5 @@ module ExcessFlow
23
23
  LOCK_PREFIX = 'excess_flow::lock::'
24
24
  MUTEX_LOCK_TIME = 1
25
25
  MUTEX_SLEEP_TIME = 1 / 100_000
26
- VERSION = '1.0.2'
26
+ VERSION = '1.0.3'
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: excess_flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ConvertKit, LLC
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-28 00:00:00.000000000 Z
11
+ date: 2020-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -88,12 +88,12 @@ files:
88
88
  - lib/excess_flow/strategy.rb
89
89
  - lib/excess_flow/throttle_configuration.rb
90
90
  - lib/excess_flow/throttled_executor.rb
91
- homepage:
91
+ homepage:
92
92
  licenses:
93
93
  - Apache License Version 2.0
94
94
  metadata:
95
95
  source_code_uri: https://github.com/ConvertKit/excess_flow
96
- post_install_message:
96
+ post_install_message:
97
97
  rdoc_options: []
98
98
  require_paths:
99
99
  - lib
@@ -108,8 +108,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
- rubygems_version: 3.0.3
112
- signing_key:
111
+ rubygems_version: 3.1.2
112
+ signing_key:
113
113
  specification_version: 4
114
114
  summary: Redis based rate limiter
115
115
  test_files: []