From c2a627b6b27a653dba6c0754601a74dd16cb7225 Mon Sep 17 00:00:00 2001 From: David Steeb Date: Thu, 30 Jul 2026 09:16:46 +0200 Subject: [PATCH] [TASK] Prepare 1.3.0 release for TER publishing The TER publish pipeline failed because tailor rejects an ext_emconf.php without a TYPO3 version constraint: No TYPO3 version constraint configured in `ext_emconf.php` file. Adds the required `constraints` block (typo3 12.4.0-14.99.99, matching the composer requirement) so ter:publish validates, and raises the version to 1.3.0 for the "p"/"span" header type feature. --- composer.json | 2 +- ext_emconf.php | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 6ad46ee..f9d1344 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "extra": { "typo3/cms": { "extension-key": "headertypes", - "version": "1.2.1" + "version": "1.3.0" } } } diff --git a/ext_emconf.php b/ext_emconf.php index 62b0641..927c094 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -8,5 +8,12 @@ 'author_email' => 'typo3@b13.com', 'author_company' => 'b13 GmbH, Stuttgart', 'state' => 'stable', - 'version' => '1.2.1', + 'version' => '1.3.0', + 'constraints' => [ + 'depends' => [ + 'typo3' => '12.4.0-14.99.99', + ], + 'conflicts' => [], + 'suggests' => [], + ], ];