summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update NEWS for PHP 7.2.2PHP-7.2.2Remi Collet2018-01-301-1/+1
|
* clean NEWSRemi Collet2018-01-301-3/+0
|
* fix NEWS fileRemi Collet2018-01-161-5/+3
|
* Update NEWS for 7.2.2Remi Collet2018-01-161-0/+3
|
* Update NEWS for PHP 7.2.2RC1Remi Collet2018-01-161-1/+1
|
* [ci skip] Update NEWSAnatol Belski2018-01-151-1/+5
|
* Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-150-0/+0
|\ | | | | | | | | * PHP-7.1: [ci skip] Update NEWS
| * [ci skip] Update NEWSAnatol Belski2018-01-151-0/+4
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-151-1/+6
|\ \ | |/ | | | | | | * PHP-7.1: Allow pecl like usage in ext/phar, closes #2955
| * Allow pecl like usage in ext/phar, closes #2955Anatol Belski2018-01-151-1/+6
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-153-13/+94
|\ \ | |/
| * Fixed bug #75079Nikita Popov2018-01-154-13/+96
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-141-0/+2
|\ \ | |/ | | | | | | * PHP-7.1: Sync for upcoming vc++ 15.6 version raise
| * Sync for upcoming vc++ 15.6 version raiseAnatol Belski2018-01-141-0/+2
| |
* | [ci skip] Update NEWSAnatol Belski2018-01-131-0/+7
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-130-0/+0
|\ \ | |/ | | | | | | * PHP-7.1: [ci skip] Update NEWS
| * [ci skip] Update NEWSAnatol Belski2018-01-131-0/+7
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-131-1/+9
|\ \ | |/ | | | | | | * PHP-7.1: Fix invalid free
| * Fix invalid freeAnatol Belski2018-01-131-1/+9
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-132-7/+34
|\ \ | |/
| * Fix generator GC if yield from parent chain does not reach rootNikita Popov2018-01-132-7/+34
| | | | | | | | | | | | | | Parents may be unlinked while another generator sharing part of the chain is running. As such, we cannot assume that the parent chain goes all the way to the root. Instead walk backwards from root to leaf, like we also do during destruction.
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-121-2/+4
|\ \ | |/
| * Try to fix yield from GC issuesNikita Popov2018-01-121-2/+4
| | | | | | | | | | | | | | | | Make sure we always update root and parent references before releasing the old root object. This fixes some crashes under aggressive cycle collection, so hopefully this will also fix bug #75351.
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-123-1/+26
|\ \ | |/
| * Fixed bug #75396Nikita Popov2018-01-123-1/+26
| | | | | | | | | | | | Do not run finally blocks in generators on unclean shutdown (e.g. caused by exit). This is consistent with how finally blocks outside of generators behave.
* | Fixed bug #75653Nikita Popov2018-01-123-1/+22
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-121-14/+16
|\ \ | |/
| * Revert "Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown ↵Nikita Popov2018-01-121-14/+16
| | | | | | | | | | | | | | | | | | function)" This reverts commit 816758eda2bcdd69ba505fb6bbb79124a7bf2254. After this commit relative router scripts were resolved against docroot rather than shell cwd.
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-122-6/+29
|\ \ | |/ | | | | | | * PHP-7.1: Fixed bug #75774 imap_append HeapCorruction
| * Fixed bug #75774 imap_append HeapCorructionAnatol Belski2018-01-122-6/+29
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-121-1/+1
|\ \ | |/ | | | | | | | | * PHP-7.1: Unify EOL Extend test, latest cURL ships also with smb and smbs
| * Unify EOLAnatol Belski2018-01-121-53/+53
| |
| * Extend test, latest cURL ships also with smb and smbsAnatol Belski2018-01-121-1/+1
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-111-4/+1
|\ \ | |/ | | | | | | * PHP-7.1: Fix test for libtidy 5.6.0
| * Fix test for libtidy 5.6.0Anatol Belski2018-01-111-4/+1
| | | | | | | | | | | | libtidy 5.6.0 remove the language option from the library, it is only supported on cli. Prior to that, this option was not used in the library. Thus, exclude the option presence from test.
* | Merge branch 'PHP-7.1' into PHP-7.2Christoph M. Becker2018-01-112-1/+2
|\ \ | |/ | | | | | | * PHP-7.1: Fixed bug #75799 (arg of get_defined_functions is optional)
| * Fixed bug #75799 (arg of get_defined_functions is optional)Gabriel Caruso2018-01-112-1/+2
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-094-10/+24
|\ \ | |/
| * Fixed bug #75786Nikita Popov2018-01-094-10/+24
| | | | | | | | | | | | | | | | | | SEND_UNPACK on iterators was duplicating references in-place, which effectively leaks the original value and causes an off-by-one refcount on the duplicated value. Replace this with a deref, as an actual duplication is not even needed in this case.
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-090-0/+0
|\ \ | |/
| * Backport narrowing fix to 7.1Nikita Popov2018-01-091-0/+18
| | | | | | | | This is a cherry-pick of 8a4532319dfae83ff16b2d2bbfeed062924c3c27.
* | Update NEWSXinchen Hui2018-01-091-0/+3
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Xinchen Hui2018-01-091-1/+1
|\ \ | |/ | | | | | | * PHP-7.1: Fixed bug #75781 (substr_count incorrect result)
| * Fixed bug #75781 (substr_count incorrect result)Xinchen Hui2018-01-092-1/+4
| |
* | Fixed possible incorrect "mark" usageDmitry Stogov2018-01-091-0/+5
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-042-3/+5
|\ \ | |/ | | | | | | * PHP-7.1: Fix tests
| * Fix testsAnatol Belski2018-01-042-3/+5
| |
* | Happy new year (Update copyright to 2018)Lior Kaplan2018-01-041-1/+1
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2018-01-031-0/+1
|\ \ | |/ | | | | | | * PHP-7.1: Skip on Travis-CI
| * Skip on Travis-CIAnatol Belski2018-01-031-0/+1
| | | | | | | | | | | | | | | | The current doc states max ram for a test VM would be 7.5G, the currently used container image has even less. This skip should be revisited, as the available memory amount shifts. The way of checking /proc/meminfo doesn't work reliably on containers at least, thus skipping explicitly on Travis-CI makes sense.