From 5edafa3f43d9a0ea21d84aa27e813e7feb592c01 Mon Sep 17 00:00:00 2001 From: Markus Friedrich Date: Thu, 21 Sep 2023 13:52:40 +0200 Subject: [PATCH] [TASK] Require typo3fluid/fluid >= 2.9.2 Due to an internal bug in typo3fluid/fluid the pagination might fail, this bub is fixed in typo3fluid/fluid 2.9.2. We now require typo3fluid/fluid >= 2.9.2 to ensure the right version is used and the pagination works as expected. The failing test is reenabled. Resolves: 3691 --- Tests/Integration/Controller/SearchControllerTest.php | 1 - composer.json | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Integration/Controller/SearchControllerTest.php b/Tests/Integration/Controller/SearchControllerTest.php index 293f6bfc45..b92238c233 100644 --- a/Tests/Integration/Controller/SearchControllerTest.php +++ b/Tests/Integration/Controller/SearchControllerTest.php @@ -126,7 +126,6 @@ public function canSearchForPrices() */ public function canDoAPaginatedSearch() { - self::markTestSkipped('Skipped due https://github.com/TYPO3-Solr/ext-solr/issues/3691'); $this->importCSVDataSet(__DIR__ . '/Fixtures/indexing_data.csv'); $this->addTypoScriptToTemplateRecord( 1, diff --git a/composer.json b/composer.json index 05a6a21641..8a17a39378 100644 --- a/composer.json +++ b/composer.json @@ -28,8 +28,9 @@ "ext-pdo": "*", "ext-simplexml": "*", "solarium/solarium": "6.2.7", + "typo3fluid/fluid": "^2.9.2", "typo3/cms-backend": "*", - "typo3/cms-core": "^v12.4.2", + "typo3/cms-core": "^v12.4.3", "typo3/cms-extbase": "*", "typo3/cms-fluid": "*", "typo3/cms-frontend": "*",