From 463699f174d36a24c04c67a9352de4386cf3ada0 Mon Sep 17 00:00:00 2001 From: Thomas Klemm Date: Mon, 28 Apr 2014 23:00:48 +0200 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bc1f8c..00e7c5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ # Pundit +## 0.2.4 (unreleased) + +- Generate blank policy spec/test files for Rspec/MiniTest/Test::Unit in Rails (#138) +- Extend the default `ApplicationPolicy` with an `ApplicationPolicy::Scope` (#120) + ## 0.2.3 (2014-04-06) -- Included RSpec matchers are ready for RSpec 3 (#124) -- Customizable error messages: Add `#query`, `#record` and `#policy` readers to `NotAuthorizedError` (#114) -- Raise `AuthorizationNotPerformedError` when `authorize` call is expected but missing in controller action (#109) -- Add CHANGELOG (#107) +- Customizable error messages: `#query`, `#record` and `#policy` methods on `Pundit::NotAuthorizedError` (#114) +- Raise a different `Pundit::AuthorizationNotPerformedError` when `authorize` call is expected in controller action but missing (#109) +- Update Rspec matchers for Rspec 3 (#124) ## 0.2.2 (2014-02-07) -- Add `pundit_user` (#42) +- Customize the user to be passed into policies: `pundit_user` (#42)