From 7bd3cfa308e96d28b92c7c3e717d0a86a92fa670 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 2 May 2024 08:20:53 +0200 Subject: [PATCH] Raise to TYPO3 v13.1 --- .github/workflows/ci.yaml | 12 ++++++------ Documentation/Changelog/3.0.0.rst | 4 ++-- composer.json | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 50811f2..7c44156 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -114,10 +114,10 @@ jobs: typo3-version: '^12.4' - db-version: '8' php-version: '8.2' - typo3-version: '13.0' + typo3-version: '13.1' - db-version: '8' php-version: '8.3' - typo3-version: '13.0' + typo3-version: '13.1' steps: - uses: actions/checkout@v3 @@ -144,7 +144,7 @@ jobs: done - name: Install dependencies with expected TYPO3 version - run: composer require --prefer-dist --no-progress "typo3/cms-backend:${{ matrix.typo3-version }}" "typo3/cms-core:${{ matrix.typo3-version }}" "typo3/cms-dashboard:${{ matrix.typo3-version }}" + run: composer require --prefer-dist --no-progress "typo3/cms-core:${{ matrix.typo3-version }}" - name: PHPUnit Tests run: |- @@ -167,9 +167,9 @@ jobs: - php-version: '8.3' typo3-version: '^12.4' - php-version: '8.2' - typo3-version: '13.0' + typo3-version: '13.1' - php-version: '8.3' - typo3-version: '13.0' + typo3-version: '13.1' steps: - uses: actions/checkout@v3 @@ -183,7 +183,7 @@ jobs: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Install dependencies with expected TYPO3 version - run: composer require --prefer-dist --no-progress "typo3/cms-backend:${{ matrix.typo3-version }}" "typo3/cms-core:${{ matrix.typo3-version }}" "typo3/cms-dashboard:${{ matrix.typo3-version }}" + run: composer require --prefer-dist --no-progress "typo3/cms-core:${{ matrix.typo3-version }}" - name: Code Quality (by PHPStan) run: ./vendor/bin/phpstan analyse diff --git a/Documentation/Changelog/3.0.0.rst b/Documentation/Changelog/3.0.0.rst index 1c1c99f..4ec15f2 100644 --- a/Documentation/Changelog/3.0.0.rst +++ b/Documentation/Changelog/3.0.0.rst @@ -4,7 +4,7 @@ Breaking -------- -* Support TYPO3 v13.0, drop v11. +* Support TYPO3 v13.1, drop v11. We only support last two TYPO3 versions. * Drop `ext_emconf.php` this probably will remove support for none composer setups. @@ -12,7 +12,7 @@ Breaking Features -------- -* Add Support for TYPO3 v13.0. +* Add Support for TYPO3 v13.1. Fixes ----- diff --git a/composer.json b/composer.json index 8b49d79..9d05c7a 100644 --- a/composer.json +++ b/composer.json @@ -34,9 +34,9 @@ "psr/http-server-middleware": "^1.0", "symfony/console": "^5.2 || ^6.1 || ^7.0", "symfony/expression-language": "^5.2 || ^6.1 || ^7.0", - "typo3/cms-backend": "^12.4 || ^13.0", - "typo3/cms-core": "^12.4 || ^13.0", - "typo3/cms-dashboard": "^12.4 || ^13.0" + "typo3/cms-backend": "^12.4 || ^13.1", + "typo3/cms-core": "^12.4 || ^13.1", + "typo3/cms-dashboard": "^12.4 || ^13.1" }, "require-dev": { "codappix/typo3-php-datasets": "^1.5", @@ -45,7 +45,7 @@ "phpstan/extension-installer": "^1.1", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^10.1", - "saschaegerer/phpstan-typo3": "^1.10", + "saschaegerer/phpstan-typo3": "dev-add-typo3-13_1-support", "typo3/testing-framework": "^8.0" }, "minimum-stability": "dev",