From 72836db8f0c0848190d7ebc0e97ad14031bdeef7 Mon Sep 17 00:00:00 2001 From: Alexander Stehlik Date: Sun, 8 Sep 2024 20:48:40 +0200 Subject: [PATCH 1/4] [TASK] Update GitHub artifact actions --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b258ba7..6e93af6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -133,7 +133,7 @@ jobs: php_version: ${{ env.MAIN_PHP_VERSION }} - run: | bash bin/t3_run_tests.sh -s unit -p ${{ env.MAIN_PHP_VERSION }} -X coverage -- --coverage-clover Logs/clover-unit.xml --coverage-filter ../Classes - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: coverage-phpunit path: Logs/clover-unit.xml @@ -150,7 +150,7 @@ jobs: php_version: ${{ env.MAIN_PHP_VERSION }} - run: | bash bin/t3_run_tests.sh -s functional -d mariadb -p ${{ env.MAIN_PHP_VERSION }} -X coverage -- --coverage-clover Logs/clover-functional.xml --coverage-filter ../Classes - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: coverage-functional path: Logs/clover-functional.xml @@ -167,10 +167,10 @@ jobs: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: coverage-phpunit - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: coverage-functional - run: curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter From 5975752f6014afc6631d1099976936a74a17d5a8 Mon Sep 17 00:00:00 2001 From: Alexander Stehlik Date: Tue, 15 Oct 2024 23:02:55 +0200 Subject: [PATCH 2/4] [TASK] Update for TYPO3 13.4 LTS (#36) * Update for TYPO3 13.4 LTS * Add .phpstorm.meta.php --- .phpstorm.meta.php | 23 +++++++++++++++++++++++ composer.json | 14 ++------------ 2 files changed, 25 insertions(+), 12 deletions(-) create mode 100644 .phpstorm.meta.php diff --git a/.phpstorm.meta.php b/.phpstorm.meta.php new file mode 100644 index 0000000..ded5aa2 --- /dev/null +++ b/.phpstorm.meta.php @@ -0,0 +1,23 @@ + '@', + ] + ) + ); + + override( + ContainerInterface::get(0), + map( + [ + '' => '@', + ] + ) + ); +} diff --git a/composer.json b/composer.json index 8233a4e..6b6a771 100644 --- a/composer.json +++ b/composer.json @@ -11,20 +11,10 @@ ], "require": { "php": "^8.2", - "typo3/cms-core": "~13.2.1" + "typo3/cms-core": "~13.4.0" }, "require-dev": { - "bnf/phpstan-psr-container": "^1.0", - "de-swebhosting/php-codestyle": "^5.2", - "de-swebhosting/typo3-extension-buildtools": "dev-TYPO3_13", - "ergebnis/composer-normalize": "^2.42", - "friendsofphp/php-cs-fixer": "^3.54", - "friendsoftypo3/phpstan-typo3": "^0.9.0", - "michielroos/typo3scan": "^1.7", - "phpstan/phpstan": "^1.10", - "phpstan/phpstan-phpunit": "^1.3", - "squizlabs/php_codesniffer": "^3.9", - "typo3/testing-framework": "dev-main" + "de-swebhosting/typo3-extension-buildtools": "dev-TYPO3_13" }, "autoload": { "psr-4": { From 5a38d6163094c46e2b3c406faf41f1988568d27b Mon Sep 17 00:00:00 2001 From: Alexander Stehlik Date: Tue, 15 Oct 2024 23:10:11 +0200 Subject: [PATCH 3/4] [TASK] Update dependencies in ext_emconf.php --- ext_emconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index ece11bf..f242d2d 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -16,7 +16,7 @@ 'constraints' => [ 'depends' => [ 'php' => '8.2.0-8.3.99', - 'typo3' => '13.2.0-13.2.99', + 'typo3' => '13.4.0-13.4.99', ], 'conflicts' => [], 'suggests' => [], From 098e0046203bb9f253dc02576de0fd049547d1ef Mon Sep 17 00:00:00 2001 From: Alexander Stehlik Date: Tue, 15 Oct 2024 23:10:41 +0200 Subject: [PATCH 4/4] [TASK] Release version 13.4.0 --- Documentation/Settings.cfg | 2 +- ext_emconf.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index 0fa5873..f416efd 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -25,7 +25,7 @@ project = URL shortener / TinyURLs # ... (recommended) version, displayed next to title (desktop) and in 'Alexander Stehlik', 'author_email' => 'alexander.stehlik.deleteme@gmail.com', 'author_company' => '', - 'version' => '13.2.0', + 'version' => '13.4.0', 'constraints' => [ 'depends' => [ 'php' => '8.2.0-8.3.99',