Skip to content

Commit ced7517

Browse files
committed
[ci skip] NEWS / UPGRADING
1 parent d579488 commit ced7517

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

NEWS

+12
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ Opcache:
3030
. If JIT is enabled, PHP will now exit with a fatal error on startup in case
3131
of JIT startup initialization issues. (danog)
3232

33+
PDO:
34+
. Fixed setAttribute and getAttribute (SakiTakamachi)
35+
36+
PDO_DBLIB:
37+
. Fixed setAttribute and getAttribute (SakiTakamachi)
38+
39+
PDO_FIREBIRD:
40+
. Fixed setAttribute and getAttribute (SakiTakamachi)
41+
42+
PDO_MYSQL:
43+
. Fixed setAttribute and getAttribute (SakiTakamachi)
44+
3345
PDO_PGSQL:
3446
. Fixed GH-12423, DSN credentials being prioritized over the user/password
3547
PDO constructor arguments. (SakiTakamachi)

UPGRADING

+21
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ PHP 8.4 UPGRADE NOTES
2626
Consult sections 2. New Features and 6. New Functions for a list of
2727
newly implemented methods and constants.
2828

29+
- PDO_DBLIB:
30+
. DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER and DBLIB_ATTR_DATETIME_CONVERT have
31+
been changed to set value as a bool.
32+
33+
- PDO_FIREBIRD:
34+
. ATTR_AUTOCOMMIT has been changed to get the value as a bool.
35+
36+
- PDO_MYSQL:
37+
. ATTR_AUTOCOMMIT, ATTR_EMULATE_PREPARES, MYSQL_ATTR_DIRECT_QUERY have been
38+
changed to get values ​​as bool.
39+
2940
- PDO_PGSQL:
3041
. The DSN's credentials, when set, are given priority over their PDO
3142
constructor counterparts, being closer to the documentation states.
@@ -136,6 +147,16 @@ PHP 8.4 UPGRADE NOTES
136147
. The behavior of mb_strcut is more consistent now on invalid UTF-8 and UTF-16
137148
strings. (For valid UTF-8 and UTF-16 strings, there is no change.)
138149

150+
- PDO:
151+
. Enabled to get the value of ATTR_STRINGIFY_FETCHES.
152+
153+
- PDO_FIREBIRD:
154+
. Enabled to get values ​​of FB_ATTR_DATE_FORMAT, FB_ATTR_TIME_FORMAT,
155+
FB_ATTR_TIMESTAMP_FORMAT.
156+
157+
- PDO_MYSQL:
158+
. Enabled to get the value of ATTR_FETCH_TABLE_NAMES.
159+
139160
- PGSQL:
140161
. pg_select, the conditions arguments accepts an empty array and is optional.
141162

0 commit comments

Comments
 (0)