Skip to content

Commit

Permalink
Bump version to v6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Apr 17, 2019
1 parent 6d1c968 commit 6045b82
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

All notable changes to this project will be documented in this file.

## [6.0.0] - 2018-04-17

This comment has been minimized.

Copy link
@tvdeyen

tvdeyen Apr 19, 2019

The year should probably be 2019?

This comment has been minimized.

Copy link
@grzuy

grzuy Apr 19, 2019

Author Collaborator

Indeed, hehe.

Thank you!


### Added

- `#blocklist` and `#safelist` name argument (the first one) is now optional.
- Added support to subscribe only to specific event types via `ActiveSupport::Notifications`, e.g. subscribe to the
`throttle.rack_attack` or the `blocklist.rack_attack` event.

### Changed

- Changed `ActiveSupport::Notifications` event naming to comply with the recommneded format.

### Deprecated

- Subscriptions via `ActiveSupport::Notifications` to the `"rack.attack"` event will continue to work (receive event
notifications), but it is going to be removed in a future version. Replace the event name with `/rack_attack/` to
continue to be subscribed to all events, or `"throttle.rack_attack"` e.g. for specific type of events only.

### Removed

- Removed support for ruby 2.2.
- Removed support for obsolete memcache-client as a cache store.
- Removed deprecated methods `#blacklist` and `#whitelist` (use `#blocklist` and `#safelist` instead).

## [5.4.2] - 2018-10-30

### Fixed
Expand Down Expand Up @@ -148,6 +172,7 @@ so your custom code is less prone to race conditions ([#282](https://github.com/
- Remove unused variable
- Extract mandatory options to constants

[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.1]: https://github.com/kickstarter/rack-attack/compare/v5.4.0...v5.4.1/
[5.4.0]: https://github.com/kickstarter/rack-attack/compare/v5.3.2...v5.4.0/
Expand Down
2 changes: 1 addition & 1 deletion lib/rack/attack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Rack
class Attack
VERSION = '5.3.2'
VERSION = '6.0.0'
end
end

0 comments on commit 6045b82

Please sign in to comment.