mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-04-27 15:07:41 +00:00
Bump gem version to v6.2.0
This commit is contained in:
parent
1167c65ba6
commit
9bfec1ac70
2 changed files with 10 additions and 1 deletions
|
|
@ -2,6 +2,14 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [6.2.0] - 2019-10-12
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Failsafe on Redis error replies in RedisCacheStoreProxy (#421) (@cristiangreco)
|
||||||
|
- Rack::Attack middleware is now auto added for Rails 5.1+ apps to simplify gem setup (#431) (@fatkodima)
|
||||||
|
- You can disable Rack::Attack with `Rack::Attack.enabled = false` (#431) (@fatkodima)
|
||||||
|
|
||||||
## [6.1.0] - 2019-07-11
|
## [6.1.0] - 2019-07-11
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -181,6 +189,7 @@ so your custom code is less prone to race conditions ([#282](https://github.com/
|
||||||
- Remove unused variable
|
- Remove unused variable
|
||||||
- Extract mandatory options to constants
|
- Extract mandatory options to constants
|
||||||
|
|
||||||
|
[6.2.0]: https://github.com/kickstarter/rack-attack/compare/v6.1.0...v6.2.0/
|
||||||
[6.1.0]: https://github.com/kickstarter/rack-attack/compare/v6.0.0...v6.1.0/
|
[6.1.0]: https://github.com/kickstarter/rack-attack/compare/v6.0.0...v6.1.0/
|
||||||
[6.0.0]: https://github.com/kickstarter/rack-attack/compare/v5.4.2...v6.0.0/
|
[6.0.0]: https://github.com/kickstarter/rack-attack/compare/v5.4.2...v6.0.0/
|
||||||
[5.4.2]: https://github.com/kickstarter/rack-attack/compare/v5.4.1...v5.4.2/
|
[5.4.2]: https://github.com/kickstarter/rack-attack/compare/v5.4.1...v5.4.2/
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
module Rack
|
module Rack
|
||||||
class Attack
|
class Attack
|
||||||
VERSION = '6.1.0'
|
VERSION = '6.2.0'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue