mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-24 06:36:08 +01:00
Support TYPO3 v12.4 LTS (#104)
This commit is contained in:
parent
6f71db0abd
commit
cd9cb3f2a8
4 changed files with 36 additions and 9 deletions
10
.github/workflows/ci.yaml
vendored
10
.github/workflows/ci.yaml
vendored
|
@ -63,7 +63,7 @@ jobs:
|
||||||
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Install xmllint
|
- name: Install xmllint
|
||||||
run: sudo apt-get install libxml2-utils
|
run: sudo apt update && sudo apt install libxml2-utils
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: composer install --prefer-dist --no-progress
|
run: composer install --prefer-dist --no-progress
|
||||||
|
@ -118,10 +118,10 @@ jobs:
|
||||||
typo3-version: '^11.5'
|
typo3-version: '^11.5'
|
||||||
- db-version: '8'
|
- db-version: '8'
|
||||||
php-version: '8.1'
|
php-version: '8.1'
|
||||||
typo3-version: '~12.3.0'
|
typo3-version: '^12.4'
|
||||||
- db-version: '8'
|
- db-version: '8'
|
||||||
php-version: '8.2'
|
php-version: '8.2'
|
||||||
typo3-version: '~12.3.0'
|
typo3-version: '^12.4'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
@ -167,9 +167,9 @@ jobs:
|
||||||
- php-version: '8.2'
|
- php-version: '8.2'
|
||||||
typo3-version: '^11.5'
|
typo3-version: '^11.5'
|
||||||
- php-version: '8.1'
|
- php-version: '8.1'
|
||||||
typo3-version: '~12.3.0'
|
typo3-version: '^12.4'
|
||||||
- php-version: '8.2'
|
- php-version: '8.2'
|
||||||
typo3-version: '~12.3.0'
|
typo3-version: '^12.4'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
|
27
Documentation/Changelog/2.4.0.rst
Normal file
27
Documentation/Changelog/2.4.0.rst
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
2.4.0
|
||||||
|
=====
|
||||||
|
|
||||||
|
Breaking
|
||||||
|
--------
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
* Support TYPO3 12.4.
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
-----
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Tasks
|
||||||
|
-----
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Deprecation
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Nothing
|
|
@ -34,9 +34,9 @@
|
||||||
"psr/http-server-middleware": "^1.0",
|
"psr/http-server-middleware": "^1.0",
|
||||||
"symfony/console": "^5.2 || ^6.1",
|
"symfony/console": "^5.2 || ^6.1",
|
||||||
"symfony/expression-language": "^5.2 || ^6.1",
|
"symfony/expression-language": "^5.2 || ^6.1",
|
||||||
"typo3/cms-backend": "^11.5 || ~12.3.0",
|
"typo3/cms-backend": "^11.5 || ^12.4",
|
||||||
"typo3/cms-core": "^11.5 || ~12.3.0",
|
"typo3/cms-core": "^11.5 || ^12.4",
|
||||||
"typo3/cms-dashboard": "^11.5 || ~12.3.0"
|
"typo3/cms-dashboard": "^11.5 || ^12.4"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^9.0",
|
"phpunit/phpunit": "^9.0",
|
||||||
|
|
|
@ -8,7 +8,7 @@ $EM_CONF[$_EXTKEY] = [
|
||||||
'author' => 'Daniel Siepmann',
|
'author' => 'Daniel Siepmann',
|
||||||
'author_email' => 'coding@daniel-siepmann.de',
|
'author_email' => 'coding@daniel-siepmann.de',
|
||||||
'author_company' => '',
|
'author_company' => '',
|
||||||
'version' => '2.0.0',
|
'version' => '2.4.0',
|
||||||
'constraints' => [
|
'constraints' => [
|
||||||
'depends' => [
|
'depends' => [
|
||||||
'core' => '',
|
'core' => '',
|
||||||
|
|
Loading…
Reference in a new issue