From ac5d6dd39b7d5a50ba906b4f8722d2ad3268332a Mon Sep 17 00:00:00 2001 From: Delisa Mason Date: Mon, 9 Oct 2017 20:06:04 +0100 Subject: [PATCH] Add note to changelog about ignore classes changes in 5.4.0 --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index beb98f26c..0ecb8bb7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,23 @@ Changelog ## 5.4.0 (02 Oct 2017) +This release removes the default setting of ignoring classes of errors which are commonly associated with typos or server signals (`SystemExit`), instead recording them as `info`-level severity by default. This includes the following classes: + +``` + AbstractController::ActionNotFound, + ActionController::InvalidAuthenticityToken, + ActionController::ParameterMissing, + ActionController::RoutingError, + ActionController::UnknownAction, + ActionController::UnknownFormat, + ActionController::UnknownHttpMethod, + ActiveRecord::RecordNotFound, + CGI::Session::CookieStore::TamperedWithCookie, + Mongoid::Errors::DocumentNotFound, + SignalException, + SystemExit +``` + ### Enhancements * Add a one-time warning if the API key is not set