Skip to content

Commit 2978bfd

Browse files
Merge branch '11.5' into 12.4
* 11.5: Update ChangeLog Update ChangeLog
2 parents d554fa3 + 356c565 commit 2978bfd

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

ChangeLog-12.4.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes of the PHPUnit 12.4 release series are documented in this fi
44

55
## [12.4.5] - 2025-MM-DD
66

7+
### Changed
8+
9+
* Updated list of deprecated PHP configuration settings for PHP 8.4, PHP 8.5, and PHP 8.6
10+
711
### Fixed
812

913
* [#6426](https://github.com/sebastianbergmann/phpunit/pull/6426): Fix migration of configuration without schema location

src/Util/GlobalState.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,18 @@
146146
'mbstring.internal_encoding' => true,
147147
'oci8.old_oci_close_semantics' => true,
148148
],
149+
150+
'8.6' => [
151+
'auto_detect_line_endings' => true,
152+
'filter.default' => true,
153+
'iconv.input_encoding' => true,
154+
'iconv.output_encoding' => true,
155+
'iconv.internal_encoding' => true,
156+
'mbstring.http_input' => true,
157+
'mbstring.http_output' => true,
158+
'mbstring.internal_encoding' => true,
159+
'oci8.old_oci_close_semantics' => true,
160+
],
149161
];
150162

151163
/**

0 commit comments

Comments
 (0)