mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-21 13:36:09 +01:00
Support TYPO3 12.2 (#102)
Adjust tests to still work with TYPO3 commit 1fd78d5daa489a487df0682a38a1a1ecc5d0f3d0.
This commit is contained in:
parent
c14cba6b53
commit
60a1932a71
4 changed files with 42 additions and 7 deletions
8
.github/workflows/ci.yaml
vendored
8
.github/workflows/ci.yaml
vendored
|
@ -118,10 +118,10 @@ jobs:
|
|||
typo3-version: '^11.5'
|
||||
- db-version: '8'
|
||||
php-version: '8.1'
|
||||
typo3-version: '~12.1.0'
|
||||
typo3-version: '~12.2.0'
|
||||
- db-version: '8'
|
||||
php-version: '8.2'
|
||||
typo3-version: '~12.1.0'
|
||||
typo3-version: '~12.2.0'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
@ -167,9 +167,9 @@ jobs:
|
|||
- php-version: '8.2'
|
||||
typo3-version: '^11.5'
|
||||
- php-version: '8.1'
|
||||
typo3-version: '~12.1.0'
|
||||
typo3-version: '~12.2.0'
|
||||
- php-version: '8.2'
|
||||
typo3-version: '~12.1.0'
|
||||
typo3-version: '~12.2.0'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
27
Documentation/Changelog/2.2.0.rst
Normal file
27
Documentation/Changelog/2.2.0.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
2.2.0
|
||||
=====
|
||||
|
||||
Breaking
|
||||
--------
|
||||
|
||||
Nothing
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
* Support TYPO3 12.2.
|
||||
|
||||
Fixes
|
||||
-----
|
||||
|
||||
Nothing
|
||||
|
||||
Tasks
|
||||
-----
|
||||
|
||||
Nothing
|
||||
|
||||
Deprecation
|
||||
-----------
|
||||
|
||||
Nothing
|
|
@ -40,6 +40,14 @@ class RecordviewTest extends TestCase
|
|||
'typo3conf/ext/tracking/Tests/Functional/Fixtures/sites' => 'typo3conf/sites',
|
||||
];
|
||||
|
||||
protected array $configurationToUseInTestInstance = [
|
||||
'FE' => [
|
||||
'cacheHash' => [
|
||||
'enforceValidation' => false,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
"psr/http-server-middleware": "^1.0",
|
||||
"symfony/console": "^5.2 || ^6.1",
|
||||
"symfony/expression-language": "^5.2 || ^6.1",
|
||||
"typo3/cms-backend": "^11.5 || ~12.1.0",
|
||||
"typo3/cms-core": "^11.5 || ~12.1.0",
|
||||
"typo3/cms-dashboard": "^11.5 || ~12.1.0"
|
||||
"typo3/cms-backend": "^11.5 || ~12.2.0",
|
||||
"typo3/cms-core": "^11.5 || ~12.2.0",
|
||||
"typo3/cms-dashboard": "^11.5 || ~12.2.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.0",
|
||||
|
|
Loading…
Reference in a new issue