Skip to content

Commit bfc2ec1

Browse files
committed
Remove no longer used log_errors_max_len ini directive in PHP 8.1 (see php/php-src#6838)
1 parent 8b7acab commit bfc2ec1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

data/reference/extension/core/40/iniEntries.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@
231231
{
232232
"name": "log_errors_max_len",
233233
"ext_min": "4.0.0",
234-
"php_min": "4.0.0"
234+
"php_min": "4.0.0",
235+
"php_max": "8.0.8"
235236
},
236237
{
237238
"name": "magic_quotes_gpc",

src/Application/Command/Release/ReleaseHandler.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ final class ReleaseHandler implements CommandHandlerInterface
4343
'73' => ExtensionVersionProviderInterface::LATEST_PHP_7_3,
4444
'74' => ExtensionVersionProviderInterface::LATEST_PHP_7_4,
4545
'80' => ExtensionVersionProviderInterface::LATEST_PHP_8_0,
46+
'81' => ExtensionVersionProviderInterface::LATEST_PHP_8_1,
4647
];
4748
/** @var JsonFileHandler */
4849
private $jsonFileHandler;
@@ -190,6 +191,7 @@ private function componentDataProvider(): Generator
190191
$entry = 'php_max';
191192
$names = [
192193
'track_errors' => $this->latestPhpVersion['74'],
194+
'log_errors_max_len' => $this->latestPhpVersion['80'],
193195
];
194196
yield $refName => [$ext, $major, $entry, $names];
195197

0 commit comments

Comments
 (0)