File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ## [ 6.5.0] - 2021-02-07
6+
7+ ### Added
8+
9+ - Added ability to normalize throttle discriminator by setting ` Rack::Attack.throttle_discriminator_normalizer ` (@fatkodima )
10+
11+ Example:
12+
13+ Rack::Attack.throttle_discriminator_normalizer = ->(discriminator) { ... }
14+
15+ or disable default normalization with:
16+
17+ Rack::Attack.throttle_discriminator_normalizer = nil
18+
19+ ### Removed
20+
21+ - Dropped support for ruby v2.4
22+ - Dropped support for rails v5.1
23+
524## [ 6.4.0] - 2021-01-23
625
726### Added
@@ -232,6 +251,7 @@ so your custom code is less prone to race conditions ([#282](https://github.com/
232251 - Remove unused variable
233252 - Extract mandatory options to constants
234253
254+ [ 6.5.0 ] : https://github.com/rack/rack-attack/compare/v6.4.0...v6.5.0/
235255[ 6.4.0 ] : https://github.com/rack/rack-attack/compare/v6.3.1...v6.4.0/
236256[ 6.3.1 ] : https://github.com/rack/rack-attack/compare/v6.3.0...v6.3.1/
237257[ 6.3.0 ] : https://github.com/rack/rack-attack/compare/v6.2.2...v6.3.0/
Original file line number Diff line number Diff line change 22
33module Rack
44 class Attack
5- VERSION = '6.4 .0'
5+ VERSION = '6.5 .0'
66 end
77end
You can’t perform that action at this time.
0 commit comments