#
a18f53ec |
| 20-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: fix the problem for connect_attr, set db condition, and add a new attribute _server_host
|
#
3771d661 |
| 20-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: fix the problem for connect_attr, set db condition, and add a new attribute _server_host
|
#
cdf16c01 |
| 12-Aug-2019 |
Qianqian Bu |
fix the problem for connect_attr, set db condition, and add a new attribute _server_host |
#
3775d47e |
| 19-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #78220: Can't access OneDrive folder
|
#
5e19f1d4 |
| 19-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #78220: Can't access OneDrive folder
|
#
81f52158 |
| 19-Aug-2019 |
Christoph M. Becker |
Fix #78220: Can't access OneDrive folder As of Windows 1903, when the OneDrive on-demand feature is enabled, the OneDrive folder is reported as reparse point by `FindFirstFile()`, but
Fix #78220: Can't access OneDrive folder As of Windows 1903, when the OneDrive on-demand feature is enabled, the OneDrive folder is reported as reparse point by `FindFirstFile()`, but trying to get information about the reparse point using `DeviceIoControl()` fails with `ERROR_NOT_A_REPARSE_POINT`. We work around this problem by falling back to `GetFileInformationByHandle()` if that happens, but only if the reparse point is reported as cloud reparse point, and only if PHP is running on Windows 1903 or later. The patch has been developed in collaboration with ab@php.net. We should keep an eye on the somewhat quirky OneDrive behavior, since it might change again in a future Windows release.
show more ...
|
#
be7e8190 |
| 17-Aug-2019 |
Nikita Popov |
Fixed bug #77922 In PHP 7.3 shadow properties are no longer duplicated. Make sure we only release them if the property was defined on the parent class, which means that it changed fr
Fixed bug #77922 In PHP 7.3 shadow properties are no longer duplicated. Make sure we only release them if the property was defined on the parent class, which means that it changed from private->shadow, which is where duplication does happen.
show more ...
|
#
9b9814fa |
| 16-Aug-2019 |
Sara Golemon |
Revert "Move to non deprecated API on suitable ICU versions" This reverts commit 13a2f2d041999dca0066542f2a552798fab9a13d. The APIs used by this commit aren't entirely equivalent to
Revert "Move to non deprecated API on suitable ICU versions" This reverts commit 13a2f2d041999dca0066542f2a552798fab9a13d. The APIs used by this commit aren't entirely equivalent to the original ones.
show more ...
|
#
49666474 |
| 15-Aug-2019 |
Christoph M. Becker |
Update NEWS This fix has been cherry-picked into PHP-7.3.9. |
#
34885408 |
| 15-Aug-2019 |
Nikita Popov |
Fixed bug #78409 This removes an incorrect optimization (I think this code used to be necessary to properly handle references in the Serializable based implementation, but now this c
Fixed bug #78409 This removes an incorrect optimization (I think this code used to be necessary to properly handle references in the Serializable based implementation, but now this code just avoids an array duplication in a way that is not sound).
show more ...
|
#
1166359a |
| 14-Aug-2019 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
#
fcabe7e5 |
| 14-Aug-2019 |
Nikita Popov |
Fixed bug #78412 $this should only be included in the generator GC buffer, if it will be released on destruction. |
#
4b64d47c |
| 13-Aug-2019 |
Sara Golemon |
Bump for 7.2.23 |
#
5536105b |
| 13-Aug-2019 |
Christoph M. Becker |
Next will be 7.3.10 |
#
d891b5f4 |
| 13-Aug-2019 |
Nikita Popov |
Fixed bug #78410 |
#
60a7e60b |
| 01-Aug-2019 |
Nikita Popov |
Fixed bug #72530 For objects with destructors, we will now only call the destructor in the initial GC run, and remove any nested data. The object is marked purple so it will be consi
Fixed bug #72530 For objects with destructors, we will now only call the destructor in the initial GC run, and remove any nested data. The object is marked purple so it will be considered a root for the next GC run, at which point it will be fully destroyed, if possible. GC counts change on a number of tests, as the objects now get destroyed later.
show more ...
|
#
a33361a3 |
| 13-Aug-2019 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
#
4eeb41d1 |
| 13-Aug-2019 |
Nikita Popov |
Fixed bug #77191 |
#
b01824e5 |
| 13-Aug-2019 |
Nikita Popov |
Fixed bug #78406 |
#
a18ad194 |
| 12-Aug-2019 |
Nikita Popov |
Fixed bug #78396 |
#
699b465d |
| 09-Aug-2019 |
Nikita Popov |
Fixed bug #78391 |
#
fc17bfaa |
| 08-Aug-2019 |
Nikita Popov |
Fixed bug #78383 |
#
720438c8 |
| 08-Aug-2019 |
Dmitry Stogov |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fixed bug #78379 (Cast to object confuses GC, causes crash)
|
#
bff2743c |
| 08-Aug-2019 |
Dmitry Stogov |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fixed bug #78379 (Cast to object confuses GC, causes crash)
|
#
358379be |
| 08-Aug-2019 |
Dmitry Stogov |
Fixed bug #78379 (Cast to object confuses GC, causes crash) |