From e82c1820be462038b5e599c88c30afdb997f700b Mon Sep 17 00:00:00 2001 From: Jeremy Croteau Date: Fri, 17 May 2024 14:46:40 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Add=20forgotten=20disallowed=20d?= =?UTF-8?q?eprecation=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This deprecation warning was addressed by the following PR, but we forgot to add it to the list of disallowed deprecation warnings: https://github.com/department-of-veterans-affairs/caseflow/pull/21614 --- config/initializers/deprecation_warnings.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/initializers/deprecation_warnings.rb b/config/initializers/deprecation_warnings.rb index f19ee0b8884..4d102c4e702 100644 --- a/config/initializers/deprecation_warnings.rb +++ b/config/initializers/deprecation_warnings.rb @@ -20,7 +20,8 @@ module DeprecationWarnings /render file: should be given the absolute path to a file/, /`ActiveRecord::Result#to_hash` has been renamed to `to_a`/, /Class level methods will no longer inherit scoping/, - /Controller-level `force_ssl` is deprecated and will be removed from Rails 6\.1/ + /Controller-level `force_ssl` is deprecated and will be removed from Rails 6\.1/, + /NOT conditions will no longer behave as NOR in Rails 6\.1/ ].freeze # Regular expressions for deprecation warnings that should raise an exception on detection