Skip to content

Commit

Permalink
Merge branch 'main' into feature/introduce-version-bumper
Browse files Browse the repository at this point in the history
  • Loading branch information
mteu committed Jan 7, 2025
2 parents 6c91089 + 5c6259b commit ec74318
Show file tree
Hide file tree
Showing 7 changed files with 857 additions and 883 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ["8.1", "8.2", "8.3"]
php-version: ["8.2", "8.3", "8.4"]
composer-version: ["latest"]
dependencies: ["lowest", "highest"]
typo3-version: ["12.4", "13.4"]
exclude:
- php-version: "8.1"
typo3-version: "13.4"
#exclude:
# - php-version: "8.1"
# typo3-version: "13.4"
steps:
- uses: actions/checkout@v4
with:
Expand Down
20 changes: 10 additions & 10 deletions Classes/Log/Message/ExceptionHandlerLogRecordMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@
* @author Martin Adler <[email protected]>
* @license GPL-3.0-or-later
*/
final class ExceptionHandlerLogRecordMessage implements Message
final readonly class ExceptionHandlerLogRecordMessage implements Message
{
public function __construct(
private readonly string $level,
private readonly string $component,
private readonly string $mode,
private readonly string $applicationMode,
private readonly string $exceptionClass,
private readonly int|string $exceptionCode,
private readonly string $file,
private readonly int|string $line,
private readonly string $message,
private string $level,
private string $component,
private string $mode,
private string $applicationMode,
private string $exceptionClass,
private int|string $exceptionCode,
private string $file,
private int|string $line,
private string $message,
) {}

public function print(): string
Expand Down
8 changes: 4 additions & 4 deletions Classes/Log/Message/LogRecordMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
* @author Martin Adler <[email protected]>
* @license GPL-3.0-or-later
*/
final class LogRecordMessage implements Message
final readonly class LogRecordMessage implements Message
{
public function __construct(
private readonly string $level,
private readonly string $component,
private readonly string $message,
private string $level,
private string $component,
private string $message,
) {}

public static function create(LogRecord $record): self
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"typo3/cms-core": "~12.4.0 || ~13.4.0"
},
"require-dev": {
"armin/editorconfig-cli": "^1.8 || ^2.0",
"armin/editorconfig-cli": "^2.0",
"eliashaeussler/version-bumper": "^1.2",
"ergebnis/composer-normalize": "^2.43",
"friendsofphp/php-cs-fixer": "^3.60",
Expand All @@ -28,7 +28,7 @@
"phpunit/phpunit": "^10.5",
"saschaegerer/phpstan-typo3": "^1.10",
"ssch/typo3-rector": "^2.6",
"symfony/process": "^6.4 || ^7.1",
"symfony/process": "^7.1",
"typo3/coding-standards": "^0.8.0",
"typo3/testing-framework": "^8.2"
},
Expand Down
Loading

0 comments on commit ec74318

Please sign in to comment.