From be1efbf3b962765be88749976d38dbf764782bcf Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Tue, 27 Aug 2019 09:44:48 +0200 Subject: [PATCH 1/4] allow neos/flow ~5.3 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index b5eba4a..cc30d30 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "license": "MIT", "homepage": "https://github.com/digicomp/DigiComp.Sequence", "require": { - "neos/flow": "~4.1" + "neos/flow": "~4.1|~5.3" }, "require-dev": { "phpunit/phpunit": "3.7.*", @@ -69,4 +69,4 @@ "DigiComp.SettingValidator-20170603120900" ] } -} \ No newline at end of file +} From d501426770faf2ced82e2f6c0ccecf01c40f59a4 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Tue, 27 Aug 2019 11:30:13 +0200 Subject: [PATCH 2/4] 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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index cc30d30..9500219 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 a409a00a3af60851c4ab0bcbd19e30359ad09c17 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Tue, 27 Aug 2019 12:41:11 +0200 Subject: [PATCH 3/4] removed 'ENGINE = InnoDB' from migrations --- Migrations/Mysql/Version20140505093853.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Migrations/Mysql/Version20140505093853.php b/Migrations/Mysql/Version20140505093853.php index d003d3a..88c4dfe 100644 --- a/Migrations/Mysql/Version20140505093853.php +++ b/Migrations/Mysql/Version20140505093853.php @@ -21,7 +21,7 @@ class Version20140505093853 extends AbstractMigration $this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql"); $this->addSql( - "CREATE TABLE digicomp_sequence_domain_model_insert (number INT NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY(number, type)) ENGINE = InnoDB" + "CREATE TABLE digicomp_sequence_domain_model_insert (number INT NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY(number, type))" ); } From 410ce5de9753b9497336ee81e51880b21d9867e5 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Mon, 28 Oct 2019 10:31:11 +0100 Subject: [PATCH 4/4] added @deprecated to unused properties --- Classes/Service/SequenceGenerator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/Service/SequenceGenerator.php b/Classes/Service/SequenceGenerator.php index 3b1975b..34e6c90 100644 --- a/Classes/Service/SequenceGenerator.php +++ b/Classes/Service/SequenceGenerator.php @@ -29,6 +29,7 @@ class SequenceGenerator /** * @var ReflectionService * @Flow\Inject + * @deprecated */ protected $reflectionService;