From 409efffe459e4c2578bb57106d9132589aa1d407 Mon Sep 17 00:00:00 2001 From: Ferdinand Kuhl Date: Mon, 24 Jun 2019 16:00:19 +0200 Subject: [PATCH 1/3] TASK: Allow Flow 5.3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 319b56c..d0df820 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "validation" ], "require": { - "neos/flow": "~4.1" + "neos/flow": "~4.1|^5.3" }, "autoload": { "psr-4": { From 14a6ebbd00a638889fb966b5d973759f8b72a880 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Tue, 27 Aug 2019 11:30:13 +0200 Subject: [PATCH 2/3] TASK: Apply migration Neos.Flow-20180415105700 Add scalar type hint to CacheAwareInterface implementations. Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d0df820..4651bb7 100644 --- a/composer.json +++ b/composer.json @@ -66,7 +66,8 @@ "Neos.Media-20161219094126", "Neos.Flow-20170125103800", "Neos.Flow-20170127183102", - "DigiComp.SettingValidator-20170603120900" + "DigiComp.SettingValidator-20170603120900", + "Neos.Flow-20180415105700" ] } } \ No newline at end of file From c721f78f08a94cc163f5ae156cb68a7f9d9c5e19 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Mon, 28 Oct 2019 10:31:10 +0100 Subject: [PATCH 3/3] added @deprecated to unused properties --- Classes/Validation/Validator/SettingsValidator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/Validation/Validator/SettingsValidator.php b/Classes/Validation/Validator/SettingsValidator.php index 9cdb53c..896aa84 100644 --- a/Classes/Validation/Validator/SettingsValidator.php +++ b/Classes/Validation/Validator/SettingsValidator.php @@ -40,6 +40,7 @@ class SettingsValidator extends AbstractValidator /** * @var ReflectionService * @Flow\Inject + * @deprecated */ protected $reflectionService;