#
6652a340 |
| 20-Aug-2024 |
Christoph M. Becker |
[skip ci] Fix NEWS
|
#
b1211c1e |
| 16-Aug-2024 |
Christoph M. Becker |
Fix GH-15432: Heap corruption when querying a vector Since the mysqlnd result set is arena allocated, we must not simply free it, but rather call the appropriate `free_result` method.
Fix GH-15432: Heap corruption when querying a vector Since the mysqlnd result set is arena allocated, we must not simply free it, but rather call the appropriate `free_result` method. Co-authored-by: Kamil Tekiela <tekiela246@gmail.com>
show more ...
|
#
b6d7c011 |
| 19-Aug-2024 |
Ilija Tovilo |
Fix virtual properties in get_class_vars() (GH-15494) Fixes GH-15456
|
#
60f87f29 |
| 19-Aug-2024 |
Ilija Tovilo |
Fix various hooked object iterator issues (GH-15394) Fixes GH-15187
|
#
36b19774 |
| 19-Aug-2024 |
Ilija Tovilo |
Fix missing compile error when declaring hooked props on readonly classes (GH-15439) Fixes GH-15419
|
#
770616b8 |
| 19-Aug-2024 |
Ilija Tovilo |
Fix param with hooks but no visibility not treated as cpp (GH-15442) Fixes GH-15438
|
#
d713e361 |
| 18-Aug-2024 |
David Carlier |
ext/sockets: adding SO_BINDTOIFINDEX. similar to SO_BINDTODEVICE but works with interface ids instead. close GH-15479
|
#
bd843d76 |
| 16-Aug-2024 |
Go Kudo |
[ci skip] fix NEWS
|
#
140a257f |
| 16-Aug-2024 |
Go Kudo |
[ci skip] Update NEWS
|
#
ad998356 |
| 16-Aug-2024 |
Go Kudo |
[ci skip] Update NEWS
|
#
b5568a00 |
| 16-Aug-2024 |
David CARLIER |
GH-15440: adding CURLOPT_TCP_KEEPCNT constant (8.9.0) (#15446) close GH-15446
|
#
14390a04 |
| 16-Aug-2024 |
Go Kudo |
[ci skip] Update NEWS
|
#
d5d537bf |
| 14-Aug-2024 |
Calvin Buckley |
[ci skip] Update NEWS for PHP 8.4.0 beta3 Skipping beta2 due to a release issue.
|
#
9a70b7c2 |
| 14-Aug-2024 |
Calvin Buckley |
[ci skip] Update NEWS for PHP 8.4.0 beta2
|
#
ddaeb203 |
| 14-Aug-2024 |
jrfnl |
[skip ci] 8.4 | UPGRADING: fix incorrect function names Ref: https://github.com/php/php-src/commit/1cf8291c8519919eb58d00f25f0b917363fed971#diff-d22d5ad00ee9f000cb8c8f9a5cfb905a8de91e7dc4a63
[skip ci] 8.4 | UPGRADING: fix incorrect function names Ref: https://github.com/php/php-src/commit/1cf8291c8519919eb58d00f25f0b917363fed971#diff-d22d5ad00ee9f000cb8c8f9a5cfb905a8de91e7dc4a633896e2c5ab4ad1513d1
show more ...
|
#
a2a3c5ba |
| 14-Aug-2024 |
Tim Düsterhus |
hash: Consistently check for PHP_HASH_INTRIN_SHA_* to guard compilation of SHA256_Transform_shani (#15404) This fixes the build for amd64 platforms that do not have `HAVE_FUNC_ATTRIBUTE_
hash: Consistently check for PHP_HASH_INTRIN_SHA_* to guard compilation of SHA256_Transform_shani (#15404) This fixes the build for amd64 platforms that do not have `HAVE_FUNC_ATTRIBUTE_TARGET`, specifically Alpine/Musl as of now. Closes GH-15384. Related to GH-15312.
show more ...
|
#
74bf8949 |
| 14-Aug-2024 |
Gina Peter Banyard |
ext/standard/info.c: Throw ValueErrors on invalid inputs to php_uname() (#15385)
|
#
d100caa4 |
| 14-Aug-2024 |
Gina Peter Bnayard |
[skip ci] Add NEWS/UPGRADING + wording amendment for GH-13483
|
#
0b61b8dc |
| 13-Aug-2024 |
Jakub Zelenka |
PHP-8.3 is now for PHP-8.3.12-dev
|
#
8c4d5a18 |
| 13-Aug-2024 |
Calvin Buckley |
[ci skip] Update NEWS for PHP 8.4.0 beta1 Also move this news item up to beta2 since it happened while I was tagging beta1.
|
#
be6dee3c |
| 05-Aug-2024 |
Ilija Tovilo |
Reset seen symbols when ending namespace (GH-15244) Previously, seen symbols were never cleaned during the compilation of a single file. This makes it impossible to use a class or functi
Reset seen symbols when ending namespace (GH-15244) Previously, seen symbols were never cleaned during the compilation of a single file. This makes it impossible to use a class or function from a different namespace if such a symbol is also declared within the same file. This is inconsistent with how it would work when split into different files.
show more ...
|
#
d052d612 |
| 10-Aug-2024 |
David Carlier |
ext/sockets: adding SOCK_CLOEXEC/SOCK_NONBLOCK options. targetted for socket_create_pair/socket_create, they re not considered as socket type but to be ORed with these (to avoid socketpa
ext/sockets: adding SOCK_CLOEXEC/SOCK_NONBLOCK options. targetted for socket_create_pair/socket_create, they re not considered as socket type but to be ORed with these (to avoid socketpair2/socket2 likely), set O_CLOEXEC/O_NONBLOCK respectively on the file descriptors. close GH-15322
show more ...
|
#
225034db |
| 12-Aug-2024 |
Simonov Denis |
pdo_firebird: Formatting time zone types As a follow-up to the commit which introduced support for Firebird 4.0+ data types[1], we add support for formats for types with time zones.
pdo_firebird: Formatting time zone types As a follow-up to the commit which introduced support for Firebird 4.0+ data types[1], we add support for formats for types with time zones. Since this uses the newer Firebird C++ API, pdo_firebird now requires a C++ compiler to be built. [1] <https://github.com/php/php-src/pull/14897> Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de> Closes GH-15230.
show more ...
|
#
f5ae5ac8 |
| 12-Aug-2024 |
Gina Peter Banyard |
ext/standard: Throw ValueErrors in str_getcsv() for invalid inputs (#15365) This was forgotten when adjusting the behaviour of other CSV functions
|
#
0a23b067 |
| 12-Aug-2024 |
Gina Peter Banyard |
Deprecate using "_" as a class name (#15360) RFC: https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_using_a_single_underscore_as_a_class_name
|