From 25b2ece6ef887951ba37d4051f72a7fd050c2fb8 Mon Sep 17 00:00:00 2001 From: Alberto Vena Date: Fri, 28 Jul 2023 15:29:03 +0200 Subject: [PATCH] Update deprecation horizon After we released Solidus 4.0, all the new deprecations need to target the next major, so 5.0. (cherry picked from commit 59920d83d95cd2c4c264223bfe712a47b7f160c0) --- core/lib/spree/deprecation.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/spree/deprecation.rb b/core/lib/spree/deprecation.rb index 29ca2ede097..7f6be4485f8 100644 --- a/core/lib/spree/deprecation.rb +++ b/core/lib/spree/deprecation.rb @@ -3,7 +3,7 @@ require 'active_support/deprecation' module Spree - Deprecation = ActiveSupport::Deprecation.new('4.0', 'Solidus') + Deprecation = ActiveSupport::Deprecation.new('5.0', 'Solidus') # This DeprecatedInstanceVariableProxy transforms instance variable to # deprecated instance variable.