Skip to content

Commit

Permalink
Raise to TYPO3 v13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSiepmann committed Jul 2, 2024
1 parent 7bd3cfa commit 383b219
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ jobs:
typo3-version: '^12.4'
- db-version: '8'
php-version: '8.2'
typo3-version: '13.1'
typo3-version: '13.2'
- db-version: '8'
php-version: '8.3'
typo3-version: '13.1'
typo3-version: '13.2'
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -167,9 +167,9 @@ jobs:
- php-version: '8.3'
typo3-version: '^12.4'
- php-version: '8.2'
typo3-version: '13.1'
typo3-version: '^13.2'
- php-version: '8.3'
typo3-version: '13.1'
typo3-version: '^13.2'
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 2 additions & 2 deletions Documentation/Changelog/3.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
Breaking
--------

* Support TYPO3 v13.1, drop v11.
* Drop support for TYPO3 v11.
We only support last two TYPO3 versions.

* Drop `ext_emconf.php` this probably will remove support for none composer setups.

Features
--------

* Add Support for TYPO3 v13.1.
* Add Support for TYPO3 v13.

Fixes
-----
Expand Down
4 changes: 2 additions & 2 deletions Tests/Functional/Typo3FeaturesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected function tearDown(): void
#[Test]
public function copyContainingRecords(): void
{
$dataHandler = new DataHandler();
$dataHandler = $this->get(DataHandler::class);
$dataHandler->start([], [
'pages' => [
1 => [
Expand All @@ -76,7 +76,7 @@ public function copyContainingRecords(): void
#[Test]
public function copyCustomTablesViaDataHandler(): void
{
$dataHandler = new DataHandler();
$dataHandler = $this->get(DataHandler::class);
$dataHandler->copyWhichTables = 'pages,tx_tracking_pageview,tx_tracking_recordview';
$dataHandler->start([], [
'pages' => [
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-mbstring": "*",
"doctrine/dbal": "^2.12 || ^3.3 || 4.0.0-RC2",
"doctrine/dbal": "^2.12 || ^3.3 || ^4.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"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.1",
"typo3/cms-core": "^12.4 || ^13.1",
"typo3/cms-dashboard": "^12.4 || ^13.1"
"typo3/cms-backend": "^12.4 || ^13.2",
"typo3/cms-core": "^12.4 || ^13.2",
"typo3/cms-dashboard": "^12.4 || ^13.2"
},
"require-dev": {
"codappix/typo3-php-datasets": "^1.5",
Expand All @@ -45,8 +45,8 @@
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1",
"saschaegerer/phpstan-typo3": "dev-add-typo3-13_1-support",
"typo3/testing-framework": "^8.0"
"saschaegerer/phpstan-typo3": "^1.10",
"typo3/testing-framework": "^8.0.9"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ parameters:
paths:
- Classes
- Tests
checkMissingIterableValueType: false
reportUnmatchedIgnoredErrors: true
ignoreErrors:
- identifier: missingType.iterableValue
- '#^Variable \$_EXTKEY might not be defined\.$#'

0 comments on commit 383b219

Please sign in to comment.