From 01ad0ebf181816157540dbcbb380814d17adea62 Mon Sep 17 00:00:00 2001 From: Ralf Zimmermann Date: Sat, 4 Mar 2023 23:44:32 +0100 Subject: [PATCH 1/3] [TASK] Make psalm happy --- build/psalm-baseline.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/psalm-baseline.xml b/build/psalm-baseline.xml index 051d302..e304794 100644 --- a/build/psalm-baseline.xml +++ b/build/psalm-baseline.xml @@ -20,6 +20,11 @@ new ImmediateResponseException($response, 1643006821) + + + setTemplate + + setTemplate From 71ba7fdc99143651497f770d31676ed634290c92 Mon Sep 17 00:00:00 2001 From: Ralf Zimmermann Date: Sat, 4 Mar 2023 23:51:51 +0100 Subject: [PATCH 2/3] [TASK] Remove unused code --- ext_localconf.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ext_localconf.php b/ext_localconf.php index 84ad9b2..b92ab0f 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -2,10 +2,6 @@ defined('TYPO3') || die(); -if (file_exists(__DIR__ . '/Resources/Private/PHP/autoload.php')) { - require_once(__DIR__ . '/Resources/Private/PHP/autoload.php'); -} - (static function () { \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService( 'oauth2_client', From 97fee90199d32a2637c0a07d9e65deaca7a8226b Mon Sep 17 00:00:00 2001 From: Ralf Zimmermann Date: Wed, 16 Aug 2023 09:54:58 +0200 Subject: [PATCH 3/3] [TASK] Version 2.1.1 --- CHANGELOG.md | 21 +++++++++++++++++++++ Documentation/Changelog.rst | 20 ++++++++++++++++++++ Documentation/Settings.cfg | 2 +- build/release/ext_emconf.php | 2 +- ext_emconf.php | 2 +- 5 files changed, 44 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7197897..5c24556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,35 @@ # Changelog +## 2.1.1 (2023-03-04) + +### Tasks + +* Remove unused code. [Ralf Zimmermann] + +* Make psalm happy. [Ralf Zimmermann] + +### Other + +* Merge tag '2.1.0' into develop. [Ralf Zimmermann] + + 2.1.0 + + ## 2.1.0 (2023-03-04) ### Features * Overwritable login provider templates #12. [Ralf Zimmermann] +### Tasks + +* Update 2.1.0. [Ralf Zimmermann] + ### Other +* Merge branch 'release/2.1.0' into main. [Ralf Zimmermann] + * Merge tag '2.0.2' into develop. [Ralf Zimmermann] 2.0.2 diff --git a/Documentation/Changelog.rst b/Documentation/Changelog.rst index ea84c6e..54dd8ee 100644 --- a/Documentation/Changelog.rst +++ b/Documentation/Changelog.rst @@ -2,15 +2,35 @@ Changelog ========= +2.1.1 (2023-03-04) +------------------ + +Tasks +~~~~~ +- Remove unused code. [Ralf Zimmermann] +- Make psalm happy. [Ralf Zimmermann] + +Other +~~~~~ +- Merge tag '2.1.0' into develop. [Ralf Zimmermann] + + 2.1.0 + + 2.1.0 (2023-03-04) ------------------ +Tasks +~~~~~ +- Update 2.1.0. [Ralf Zimmermann] + Features ~~~~~~~~ - Overwritable login provider templates #12. [Ralf Zimmermann] Other ~~~~~ +- Merge branch 'release/2.1.0' into main. [Ralf Zimmermann] - Merge tag '2.0.2' into develop. [Ralf Zimmermann] 2.0.2 diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index 80a9e15..7e84661 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -25,7 +25,7 @@ project = TYPO3 OAuth2 Login Client (backend and frontend) # ... (recommended) version, displayed next to title (desktop) and in 'stable', 'uploadfolder' => '0', 'clearCacheOnLoad' => 1, - 'version' => '2.1.0', + 'version' => '2.1.1', 'constraints' => [ 'depends' => [ 'backend' => '10.4.0-11.5.99', diff --git a/ext_emconf.php b/ext_emconf.php index 14bcb52..19a9bce 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -10,7 +10,7 @@ 'state' => 'stable', 'uploadfolder' => '0', 'clearCacheOnLoad' => 1, - 'version' => '2.1.0', + 'version' => '2.1.1', 'constraints' => [ 'depends' => [ 'backend' => '10.4.0-11.5.99',