diff --git a/CHANGELOG.md b/CHANGELOG.md index b505689..082f6cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## master (unreleased) +## v5.0.0 (beta) + + - Deprecate `whitelist`/`blacklist` in favor of `safelist`/`blocklist`. (#181, + thanks @renee-travisci). + +To upgrade and fix deprecations, find and replace instances of `whitelist` and +`blacklist` with `safelist` and `blocklist`. If you reference `rack.attack.match_type`, +note that it will have values like `:safelist`/`:blocklist`. + ## v4.4.1 17 Feb 2016 - Fix a bug affecting apps using Redis::Store and ActiveSupport that could generate an error diff --git a/lib/rack/attack/version.rb b/lib/rack/attack/version.rb index 2c31f64..4f917c7 100644 --- a/lib/rack/attack/version.rb +++ b/lib/rack/attack/version.rb @@ -1,5 +1,5 @@ module Rack class Attack - VERSION = '4.4.1' + VERSION = '5.0.0.beta1' end end