From 22108f3024191e8bb03ad94b092efbdb1936ddc2 Mon Sep 17 00:00:00 2001 From: Justin Collins Date: Sat, 18 Feb 2023 12:57:56 -0800 Subject: [PATCH] Update CHANGES * Revise checking for request.env to only consider request headers * Add `redirect_back` and `redirect_back_or_to` to open redirect check * Support Rails 7 redirect options * Add Rails 6.1 and 7.0 default configuration values * Warn about unscoped find for `find_by(id: ...)` * Support `presence`, `presence_in` and `in?` * Fix issue with `if` expressions in `when` clauses --- CHANGES.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index f22f351818..3df5780fd0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,13 @@ +# Unreleased + +* Revise checking for request.env to only consider request headers +* Add `redirect_back` and `redirect_back_or_to` to open redirect check +* Support Rails 7 redirect options +* Add Rails 6.1 and 7.0 default configuration values +* Warn about unscoped find for `find_by(id: ...)` +* Support `presence`, `presence_in` and `in?` +* Fix issue with `if` expressions in `when` clauses + # 5.4.0 - 2022-11-17 * Use relative paths for CodeClimate report format (Mike Poage)