History log of /php-src/NEWS (Results 251 – 275 of 15393)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 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


# c818d944 12-Aug-2024 Gina Peter Banyard

ext/(standard|spl): Deprecate passing a non-empty string as the $enclosure parameter (#15362)


# 81b49cd0 12-Aug-2024 Ayesh Karunaratne

ext/curl: Add HTTP/3 constants (#15350)

This intends to supersede the two following PRs:
- #12000 because it does not modify the stub file, but only update the
arginfo file. It a

ext/curl: Add HTTP/3 constants (#15350)

This intends to supersede the two following PRs:
- #12000 because it does not modify the stub file, but only update the
arginfo file. It also proposes to merge to GA branches, and is
currently marked as Requires RM Approval.
- #12543 Essentially the same as this PR and from the same author, as
this, but its about a year old and requires rebasing anyway.

This adds the `CURL_HTTP_VERSION_3` and `CURL_HTTP_VERSION_3ONLY`
constants on relevant versions (7.66 and 7.88 respectively).

It is possible to use HTTP/3 without having these constants declared,
but having them declared in PHP makes things more approachable and
"official".

show more ...


# 4f58d5b0 11-Aug-2024 Gina Peter Banyard

ext/mysqli: Deprecate passing the parameter to mysqli_store_result() (#15311)

And deprecate the MYSQLI_STORE_RESULT_COPY_DATA constant.

RFC: https://wiki.php.net/rfc/deprecations_ph

ext/mysqli: Deprecate passing the parameter to mysqli_store_result() (#15311)

And deprecate the MYSQLI_STORE_RESULT_COPY_DATA constant.

RFC: https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_the_second_parameter_to_mysqli_store_result

show more ...


# 8c2ebc0a 11-Aug-2024 Gina Peter Bnayard

[skip ci] Add NEWS/UPGRADING entries for mysqli deprecations


# 1d198c66 10-Aug-2024 David Carlier

ext/sockets: controlling ephemeral port ranges on *BSD.

whether ephemeral ports are onto the privileged low port ranges
or a range more fit for restricted scenarios.

cl

ext/sockets: controlling ephemeral port ranges on *BSD.

whether ephemeral ports are onto the privileged low port ranges
or a range more fit for restricted scenarios.

close GH-15335

show more ...


# 8d7365b6 10-Aug-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix GH-15331: dom: Element::$substitutedNodeValue test failed

Bug in libxml, amend test to accept both outputs.


# 60a055f0 10-Aug-2024 Arnaud Le Blanc

[ci skip] NEWS for GH-15275


# 4606202b 10-Aug-2024 Arnaud Le Blanc

[ci skip] NEWS for GH-15275


# 39bacafe 10-Aug-2024 Arnaud Le Blanc

[ci skip] NEWS for GH-15275


# d5c7f3b0 30-Jul-2024 David Carlier

ext/standard: enabling feature detection auxiliary vector on OpenBSD.

close gh-15175


# 9aeb6761 04-Aug-2024 David Carlier

Fix GH-15210: phpdbg_print_changed_zvals working on a real copy instead.

Close GH-15229


1...<<11121314151617181920>>...616