History log of /php-src/NEWS (Results 3751 – 3775 of 15455)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 4fa32d67 15-May-2019 Sara Golemon

Bump for 7.2.20

# c27b531a 14-May-2019 Peter Kokot

Update changelogs

# bb7ecb87 14-May-2019 Dmitry Stogov

Moved NEWS entry

# a43678aa 14-May-2019 Dmitry Stogov

Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
Fixed possible crashes, because of inconsistent PCRE cache and opcache SHM reset


# 5c4d125d 14-May-2019 Dmitry Stogov

Fixed possible crashes, because of inconsistent PCRE cache and opcache SHM reset

# 2d93cce0 14-May-2019 Christoph M. Becker

Prepare 7.3.7-dev

# 69bab6e5 13-May-2019 Christoph M. Becker

Fix #78003: strip_tags output change since PHP 7.3

A refactoring of the strip tags state machine[1] missed the special
treatment of `depth > 0` when a `>` is encountered in state 2 or 3.

Fix #78003: strip_tags output change since PHP 7.3

A refactoring of the strip tags state machine[1] missed the special
treatment of `depth > 0` when a `>` is encountered in state 2 or 3. We
re-add it for BC reasons.

[1] <http://git.php.net/?p=php-src.git;a=commit;h=5cf64742773ddbf9af69d962a4d12b567fcf0084>

show more ...

# 357da6bc 13-May-2019 Christoph M. Becker

Deprecate and ignore $version parameter of curl_version()

`curl_version()`[1] (of ext/curl) makes `curl_version_info()`[2] (of
libcurl) available to PHP userland. The latter requires to

Deprecate and ignore $version parameter of curl_version()

`curl_version()`[1] (of ext/curl) makes `curl_version_info()`[2] (of
libcurl) available to PHP userland. The latter requires to pass an
`age` argument which usually is `CURLVERSION_NOW`, so that the
information returned by the runtime matches the declarations used
during compile time. For C programs it is simply necessary to pass
this information, and in rare occasions it might make sense to pass
something else than `CURLVERSION_NOW`. curl.h notes:

| The 'CURLVERSION_NOW' is the symbolic name meant to be used by
| basically all programs ever that want to get version information.

For the PHP binding, using a newer `age` than available at compile time
will neither provide the PHP program more information, nor would using
an older `age` have tangible benefits.

We therefore deprecate the useless `$version` parameter, and if it is
passed nonetheless, we use `CURLVERSION_NOW` instead of the supplied
value, and raise a warning.

[1] <https://www.php.net/manual/en/function.curl-version.php>
[2] <https://curl.haxx.se/libcurl/c/curl_version_info.html>

show more ...

# 0cad7013 11-May-2019 Jakub Zelenka

Merge branch 'PHP-7.2' into PHP-7.3


# cc5c51e7 11-May-2019 Jakub Zelenka

Fix bug #77934 (php-fpm kill -USR2 not working)

# f13fdead 09-May-2019 Kalle Sommer Nielsen

NEWS and UPGRADING for the scatter filter

# d0a56f70 09-May-2019 Nikita Popov

Fixed bug #71030

Make sure to always fetch the RHS of a list assignment first, instead
of special casing known self-assignments, which will not detect cases
using references correctl

Fixed bug #71030

Make sure to always fetch the RHS of a list assignment first, instead
of special casing known self-assignments, which will not detect cases
using references correctly.

As a side-effect, it is no longer possible to do something like
byRef(list($x) = $y). This worked by accident previously, but only
if $y was a CV and the self-assignment case did not trigger.
However it shouldn't work for the same reason that byRef($x = $y)
doesn't. Conversely byRef(list(&$x) = $y) and byRef($x =& $y)
continue to be legal.

show more ...

# 90318fbc 09-May-2019 Nikita Popov

Merge branch 'PHP-7.2' into PHP-7.3


# 35c80583 09-May-2019 Nikita Popov

Fixed bug #75186

# 72e1da81 07-May-2019 Christoph M. Becker

Deprecate CURLPIPE_HTTP1

`CURLPIPE_HTTP1` is deprecated and has no effect as of cURL 7.62.0[1].
We therefore deprecate the PHP constant as well, and trigger a warning
that it is no l

Deprecate CURLPIPE_HTTP1

`CURLPIPE_HTTP1` is deprecated and has no effect as of cURL 7.62.0[1].
We therefore deprecate the PHP constant as well, and trigger a warning
that it is no longer supported, if used against cURL 7.62.0 and up.

[1] <https://curl.haxx.se/libcurl/c/CURLMOPT_PIPELINING.html>

show more ...

# 88f64d4a 07-May-2019 Peter Kokot

[ci skip] Add password registry RFC to changelog

# 78d24429 03-May-2019 Javier Spagnoletti

Update `NEWS` with changes made at #4093

# fdb16f8c 02-May-2019 Kalle Sommer Nielsen

NEWS

# 42184661 01-May-2019 Kalle Sommer Nielsen

Okay, too quick to merge, these are only relevant to 7.4

# c71e35ea 01-May-2019 Kalle Sommer Nielsen

Merge branch 'PHP-7.4'

* PHP-7.4:
Remove some more interbase leftovers
Fix typo
NEWS for ext/interbase unbundling


# 9cbf5ebf 01-May-2019 Kalle Sommer Nielsen

Fix typo

# c8a20dfd 01-May-2019 Kalle Sommer Nielsen

NEWS for ext/interbase unbundling

# d91b643c 30-Apr-2019 Christoph M. Becker

Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
Update NEWS wrt. sec fixes


# 1210c3b9 30-Apr-2019 Christoph M. Becker

Update NEWS wrt. sec fixes

# f80ad18a 30-Apr-2019 Stanislav Malyshev

Fix bug #77950 - Heap-buffer-overflow in _estrndup via exif_process_IFD_TAG

I do not completely understand what is going on there, but I am pretty
sure dir_entry <= offset_base if not a

Fix bug #77950 - Heap-buffer-overflow in _estrndup via exif_process_IFD_TAG

I do not completely understand what is going on there, but I am pretty
sure dir_entry <= offset_base if not a normal situation, so we better not
to rely on such dir_entry.

show more ...

1...<<151152153154155156157158159160>>...619