]> granicus.if.org Git - php/log
php
7 years agoFix C++ compatibility for TSRM_TLS
Anatol Belski [Wed, 15 Nov 2017 11:33:35 +0000 (12:33 +0100)]
Fix C++ compatibility for TSRM_TLS

If a C++11 source is compiled, thread_local is preferred. Furthermore,
at least GCC treats __thread vs. thread_local a different way and under
certain circumstances would refuse to compile __thread is a C++11 source.
This change is far behind in time, any up-to-date compiler supports C++11
and otherwise it won't take effect on lower versions.

7 years agoAdd missing var declarations for phpize mode
Anatol Belski [Wed, 15 Nov 2017 11:00:58 +0000 (12:00 +0100)]
Add missing var declarations for phpize mode

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Wed, 15 Nov 2017 10:24:12 +0000 (11:24 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Regenerate cp map

7 years agoRegenerate cp map
Anatol Belski [Wed, 15 Nov 2017 10:11:16 +0000 (11:11 +0100)]
Regenerate cp map

Add missing encoding name and don't put nameless cp

7 years agoFixed bug #75525 Access Violation in vcruntime140.dll
Anatol Belski [Wed, 15 Nov 2017 08:55:29 +0000 (09:55 +0100)]
Fixed bug #75525 Access Violation in vcruntime140.dll

It was a mistake to make d_name a pointer. d_name has to be allocated
in the body of struct dirent as per POSIX.1-2008. The binary
compatibility is kept through the extra padding, which will be removed
in 7.3.

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Tue, 14 Nov 2017 19:05:28 +0000 (20:05 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  update NEWS
  Update NEWS
  Fix bug 60471 by correctly identifying unused speculative preconnections

7 years agoupdate NEWS
Anatol Belski [Tue, 14 Nov 2017 19:04:42 +0000 (20:04 +0100)]
update NEWS

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Tue, 14 Nov 2017 19:03:02 +0000 (20:03 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Update NEWS
  Fix bug 60471 by correctly identifying unused speculative preconnections

7 years agoUpdate NEWS
Sammy Kaye Powers [Fri, 1 Sep 2017 14:36:04 +0000 (09:36 -0500)]
Update NEWS

7 years agoFix bug 60471 by correctly identifying unused speculative preconnections
Sammy Kaye Powers [Wed, 29 Mar 2017 14:27:18 +0000 (09:27 -0500)]
Fix bug 60471 by correctly identifying unused speculative preconnections

* Correctly identify unused speculative preconnections from browsers
  like Chrome and Firefox
* Add a new message to the debug level that is emitted when a TCP
  connection is closed without sending any request (a preconnection)
* Fix an issue where the existing debug messages were not being
  displayed even when debug mode was enabled

7 years agoFix UTF check in pcre_grep
Anatol Belski [Tue, 14 Nov 2017 12:49:06 +0000 (13:49 +0100)]
Fix UTF check in pcre_grep

In this case it loops through different subjects without looking for sub
matches and matches are done against the same pattern. Thus, don't reset
the UTF check flag but use it to check whether JIT should be used and
otherwise let PCRE to do the job according to what was saved into the
pattern.

7 years agoFix uninitialized flag when JIT is disabled
Anatol Belski [Tue, 14 Nov 2017 09:12:33 +0000 (10:12 +0100)]
Fix uninitialized flag when JIT is disabled

7 years agoBugfix#75515 php://streams behaving greedily
Sara Golemon [Mon, 13 Nov 2017 11:11:59 +0000 (06:11 -0500)]
Bugfix#75515 php://streams behaving greedily

5060fc23 attempted to fix #68948 by treating all non-uri streams
as non-blocking, however php://fd/* streams (which includes stdin)
may block if the other end of the IPC isn't finished.

This represents a partial revert to the pre RC6 state,
but includes an escape hatch for php://memory and php://temp
streams which are local to the current process.

This also restores stream_set_chunk_size test to previous state.

7 years agonext version is 7.2.1
Remi Collet [Mon, 13 Nov 2017 11:46:30 +0000 (12:46 +0100)]
next version is 7.2.1

7 years agoNEWS
Remi Collet [Mon, 13 Nov 2017 09:23:07 +0000 (10:23 +0100)]
NEWS

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Remi Collet [Mon, 13 Nov 2017 09:22:51 +0000 (10:22 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  NEWS
  Fixed bug #75514 mt_rand returns value outside [$min,$max]+ on 32-bit

7 years agoNEWS
Remi Collet [Mon, 13 Nov 2017 09:22:32 +0000 (10:22 +0100)]
NEWS

7 years agoFixed bug #75514 mt_rand returns value outside [$min,$max]+ on 32-bit
Remi Collet [Mon, 13 Nov 2017 08:55:10 +0000 (09:55 +0100)]
Fixed bug #75514 mt_rand returns value outside [$min,$max]+ on 32-bit

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Xinchen Hui [Mon, 13 Nov 2017 03:19:42 +0000 (11:19 +0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Avoid overflow

7 years agoAvoid overflow
Xinchen Hui [Mon, 13 Nov 2017 03:18:56 +0000 (11:18 +0800)]
Avoid overflow

7 years agoUpdate NEWS
Xinchen Hui [Mon, 13 Nov 2017 03:13:58 +0000 (11:13 +0800)]
Update NEWS

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Xinchen Hui [Mon, 13 Nov 2017 03:13:42 +0000 (11:13 +0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fixed bug #75511 (fread not free unused buffer)

7 years agoFixed bug #75511 (fread not free unused buffer)
Xinchen Hui [Mon, 13 Nov 2017 03:05:05 +0000 (11:05 +0800)]
Fixed bug #75511 (fread not free unused buffer)

7 years ago[ci skip] update NEWS
Anatol Belski [Fri, 10 Nov 2017 10:43:02 +0000 (11:43 +0100)]
[ci skip] update NEWS

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Fri, 10 Nov 2017 10:41:52 +0000 (11:41 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  [ci skip] update NEWS
  [ci skip] update NEWS

7 years ago[ci skip] update NEWS
Anatol Belski [Fri, 10 Nov 2017 10:41:16 +0000 (11:41 +0100)]
[ci skip] update NEWS

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Fri, 10 Nov 2017 10:40:47 +0000 (11:40 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  [ci skip] update NEWS

7 years ago[ci skip] update NEWS
Anatol Belski [Fri, 10 Nov 2017 10:40:16 +0000 (11:40 +0100)]
[ci skip] update NEWS

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Wed, 8 Nov 2017 11:00:30 +0000 (12:00 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fixed #75384 PHP seems incompatible with OneDrive files on demand
  bump versions
  Fixed ext/date tests due to changes in Olson database

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Wed, 8 Nov 2017 10:54:18 +0000 (11:54 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed #75384 PHP seems incompatible with OneDrive files on demand
  Fixed ext/date tests due to changes in Olson database

7 years agoFixed #75384 PHP seems incompatible with OneDrive files on demand
Anatol Belski [Wed, 8 Nov 2017 10:52:42 +0000 (11:52 +0100)]
Fixed #75384 PHP seems incompatible with OneDrive files on demand

7 years agoFixed assertion on phpMyAdmin-4.7.5 home page
Dmitry Stogov [Wed, 8 Nov 2017 09:51:53 +0000 (12:51 +0300)]
Fixed assertion on phpMyAdmin-4.7.5 home page

7 years agobump versions
Joe Watkins [Tue, 7 Nov 2017 15:35:14 +0000 (15:35 +0000)]
bump versions

7 years agoRevert "date module, replacing abs call with the llabs's like one due to bigger type"
Derick Rethans [Tue, 7 Nov 2017 14:52:12 +0000 (14:52 +0000)]
Revert "date module, replacing abs call with the llabs's like one due to bigger type"

This reverts commit c189845951ad40dcb85105320829aeb4cbd82d58.

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Derick Rethans [Tue, 7 Nov 2017 11:35:03 +0000 (11:35 +0000)]
Merge branch 'PHP-7.1' into PHP-7.2

7 years agoFixed ext/date tests due to changes in Olson database
Derick Rethans [Tue, 7 Nov 2017 11:34:55 +0000 (11:34 +0000)]
Fixed ext/date tests due to changes in Olson database

7 years agoFixed ext/date tests due to changes in Olson database
Derick Rethans [Tue, 7 Nov 2017 11:25:28 +0000 (11:25 +0000)]
Fixed ext/date tests due to changes in Olson database

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Tue, 7 Nov 2017 09:10:41 +0000 (10:10 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  7.0.27 next

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Tue, 7 Nov 2017 09:09:52 +0000 (10:09 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  7.0.27 next

7 years ago7.0.27 next
Anatol Belski [Tue, 7 Nov 2017 09:07:52 +0000 (10:07 +0100)]
7.0.27 next

7 years agodate module, replacing abs call with the llabs's like one due to bigger type
David Carlier [Sat, 4 Nov 2017 22:08:10 +0000 (22:08 +0000)]
date module, replacing abs call with the llabs's like one due to bigger type

7 years agoRevert BC break caused by fixing bug #74035
Michael Moravec [Thu, 2 Nov 2017 18:22:37 +0000 (19:22 +0100)]
Revert BC break caused by fixing bug #74035

This reverts commit 9ffc6ca62f53431a4b32b30cdda8180142f47cdb.

7 years agoFixes #68948 related to a BC break introduced by #68532 fix.
Simon JAILLET [Sat, 6 May 2017 14:29:34 +0000 (16:29 +0200)]
Fixes #68948 related to a BC break introduced by #68532 fix.

7 years agoScale support for bcmod()
Christoph M. Becker [Sat, 9 Sep 2017 13:43:02 +0000 (15:43 +0200)]
Scale support for bcmod()

As of commit 90dcbbe (PHP-7.2+) bcmod() supports non-integral
parameters as well. Since formerly only integer modulus has been
supported, it did not make much sense to cater to the scale with regard
to the result. However, now it does for consistency with other BCMath
operations.

Therefore, we add support for an optional `scale` parameter and fall
back to the default scale (`bcmath.scale`) as usual.

7 years agoFix proto documents for new global functions
Tyson Andre [Sun, 5 Nov 2017 18:01:44 +0000 (10:01 -0800)]
Fix proto documents for new global functions

See NEWS and UPGRADING (or arginfo/implementation) for details.

7 years agoMention spl_object_id in UPGRADING notes
Tyson Andre [Sun, 5 Nov 2017 17:33:34 +0000 (09:33 -0800)]
Mention spl_object_id in UPGRADING notes

This was implemented in PR #2611

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Joe Watkins [Fri, 3 Nov 2017 17:49:52 +0000 (17:49 +0000)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  fix wrong check of definition_phi->constraint.range.max_ssa_var

7 years agofix wrong check of definition_phi->constraint.range.max_ssa_var
MITSUNARI Shigeo [Fri, 3 Nov 2017 05:06:27 +0000 (14:06 +0900)]
fix wrong check of definition_phi->constraint.range.max_ssa_var

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Thu, 2 Nov 2017 21:46:25 +0000 (22:46 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Update libs_version.txt

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Thu, 2 Nov 2017 21:44:27 +0000 (22:44 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Update libs_version.txt

7 years agoUpdate libs_version.txt
Anatol Belski [Thu, 2 Nov 2017 21:41:12 +0000 (22:41 +0100)]
Update libs_version.txt

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Nikita Popov [Thu, 2 Nov 2017 19:56:35 +0000 (20:56 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Thu, 2 Nov 2017 19:56:25 +0000 (20:56 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoFix ext/soap/tests/bug69137.phpt
Nikita Popov [Thu, 2 Nov 2017 19:55:10 +0000 (20:55 +0100)]
Fix ext/soap/tests/bug69137.phpt

Switch to example.org. Also mark it as an online test.

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Thu, 2 Nov 2017 11:39:04 +0000 (12:39 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Sync and fix tests for ICU 60.1 compat

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Thu, 2 Nov 2017 11:38:32 +0000 (12:38 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Sync and fix tests for ICU 60.1 compat

7 years agoSync and fix tests for ICU 60.1 compat
Anatol Belski [Thu, 2 Nov 2017 11:37:04 +0000 (12:37 +0100)]
Sync and fix tests for ICU 60.1 compat

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Thu, 2 Nov 2017 08:24:22 +0000 (09:24 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Yet one /nologo

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Thu, 2 Nov 2017 08:22:25 +0000 (09:22 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Yet one /nologo

7 years agoYet one /nologo
Anatol Belski [Thu, 2 Nov 2017 08:21:22 +0000 (09:21 +0100)]
Yet one /nologo

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Tue, 31 Oct 2017 09:38:18 +0000 (10:38 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fix year
  Add /nologo

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Tue, 31 Oct 2017 09:35:59 +0000 (10:35 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fix year
  Add /nologo

7 years agoFix year
Anatol Belski [Tue, 31 Oct 2017 09:25:15 +0000 (10:25 +0100)]
Fix year

7 years agoAdd /nologo
Anatol Belski [Tue, 31 Oct 2017 09:24:34 +0000 (10:24 +0100)]
Add /nologo

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Mon, 30 Oct 2017 17:16:47 +0000 (18:16 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Add missing ICU version check

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Mon, 30 Oct 2017 17:16:03 +0000 (18:16 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Add missing ICU version check

7 years agoAdd missing ICU version check
Anatol Belski [Mon, 30 Oct 2017 17:15:26 +0000 (18:15 +0100)]
Add missing ICU version check

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Jakub Zelenka [Mon, 30 Oct 2017 16:43:36 +0000 (16:43 +0000)]
Merge branch 'PHP-7.1' into PHP-7.2

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Jakub Zelenka [Mon, 30 Oct 2017 16:42:23 +0000 (16:42 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoPrevent leaking x509 and csr resources if it is not requested
Jakub Zelenka [Mon, 30 Oct 2017 16:36:38 +0000 (16:36 +0000)]
Prevent leaking x509 and csr resources if it is not requested

All functions using php_openssl_x509_from_zval or php_openssl_csr_from_zval
with makeresource equal to 0 do not deref the resource which means there
is a leak till the end of the request. This can cause issues for long
running apps. It is a generic solution for bug #75363 which also covers
other functions.

7 years agoExtend and speed up pkey export tests
Jakub Zelenka [Mon, 30 Oct 2017 16:05:00 +0000 (16:05 +0000)]
Extend and speed up pkey export tests

7 years agoRewrite openssl_csr_get_subject test to improve coverage
Jakub Zelenka [Mon, 30 Oct 2017 14:29:05 +0000 (14:29 +0000)]
Rewrite openssl_csr_get_subject test to improve coverage

7 years agoAdd openssl_csr_get_public_key test
Jakub Zelenka [Mon, 30 Oct 2017 14:28:18 +0000 (14:28 +0000)]
Add openssl_csr_get_public_key test

7 years agoExtend openssl_pkcs7_* tests to cover resource cert
Jakub Zelenka [Mon, 30 Oct 2017 14:16:03 +0000 (14:16 +0000)]
Extend openssl_pkcs7_* tests to cover resource cert

7 years agoFix cleaning tmp output file in openssl_csr_export_to_file test
Jakub Zelenka [Mon, 30 Oct 2017 14:15:23 +0000 (14:15 +0000)]
Fix cleaning tmp output file in openssl_csr_export_to_file test

7 years agoopenssl: add basic openssl_csr_export_to_file tests
Jelle van der Waa [Fri, 11 Aug 2017 22:58:59 +0000 (00:58 +0200)]
openssl: add basic openssl_csr_export_to_file tests

Add a basic test for openssl_csr_export_to_file.

7 years agoExtend openssl_csr_sign test to cover cert resource
Jakub Zelenka [Mon, 30 Oct 2017 13:57:51 +0000 (13:57 +0000)]
Extend openssl_csr_sign test to cover cert resource

7 years agoSet different invalid path in openssl_pkcs12_export so it is more unlikely to exist
Jakub Zelenka [Mon, 30 Oct 2017 13:40:06 +0000 (13:40 +0000)]
Set different invalid path in openssl_pkcs12_export so it is more unlikely to exist

7 years agoExtend openssl_x509_parse to cover cert resource
Jakub Zelenka [Mon, 30 Oct 2017 13:36:32 +0000 (13:36 +0000)]
Extend openssl_x509_parse to cover cert resource

7 years agoRename and test resource cert in openssl_x509_checkpurpose test
Jakub Zelenka [Mon, 30 Oct 2017 13:17:32 +0000 (13:17 +0000)]
Rename and test resource cert in openssl_x509_checkpurpose test

7 years agoExtend openssl_x509_check_private_key to test resource cert
Jakub Zelenka [Mon, 30 Oct 2017 13:01:27 +0000 (13:01 +0000)]
Extend openssl_x509_check_private_key to test resource cert

7 years agoExtend openssl_x509_fingerprint test to cover resource cert with sha1
Jakub Zelenka [Mon, 30 Oct 2017 12:55:29 +0000 (12:55 +0000)]
Extend openssl_x509_fingerprint test to cover resource cert with sha1

7 years agoMerge branch 'PHP-7.2' of git.php.net:/php-src into PHP-7.2
Joe Watkins [Mon, 30 Oct 2017 14:16:38 +0000 (14:16 +0000)]
Merge branch 'PHP-7.2' of git.php.net:/php-src into PHP-7.2

* 'PHP-7.2' of git.php.net:/php-src:
  Yet one attempt to mitigate the unzip error on AppVeyor
  Ensure SDK is checked out before asking for version
  Fix fetching the SDK version
  Fix SDK version comparison and add more verbosity
  Don't use the cache dependency, SDK version is handled in script
  Remove status check on the SDK repo and add version check
  Use abbrev
  Catch with the latest AppVeyor unzip errors
  Fixed type inference

7 years agoMerge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
Joe Watkins [Mon, 30 Oct 2017 14:16:27 +0000 (14:16 +0000)]
Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1

* 'PHP-7.1' of git.php.net:/php-src:
  Yet one attempt to mitigate the unzip error on AppVeyor
  Ensure SDK is checked out before asking for version
  Fix fetching the SDK version
  Fix SDK version comparison and add more verbosity
  Don't use the cache dependency, SDK version is handled in script
  Remove status check on the SDK repo and add version check
  Use abbrev
  Catch with the latest AppVeyor unzip errors
  Fixed type inference

7 years agoMerge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0
Joe Watkins [Mon, 30 Oct 2017 14:16:16 +0000 (14:16 +0000)]
Merge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0

* 'PHP-7.0' of git.php.net:/php-src:
  Yet one attempt to mitigate the unzip error on AppVeyor
  Ensure SDK is checked out before asking for version
  Fix fetching the SDK version
  Fix SDK version comparison and add more verbosity
  Don't use the cache dependency, SDK version is handled in script
  Remove status check on the SDK repo and add version check
  Catch with the latest AppVeyor unzip errors

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Joe Watkins [Mon, 30 Oct 2017 14:13:41 +0000 (14:13 +0000)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 30 Oct 2017 14:13:16 +0000 (14:13 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders

7 years agoFix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders
Fabien Villepinte [Mon, 30 Oct 2017 12:25:40 +0000 (13:25 +0100)]
Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Mon, 30 Oct 2017 11:20:24 +0000 (12:20 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Yet one attempt to mitigate the unzip error on AppVeyor

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Mon, 30 Oct 2017 11:17:53 +0000 (12:17 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Yet one attempt to mitigate the unzip error on AppVeyor

7 years agoYet one attempt to mitigate the unzip error on AppVeyor
Anatol Belski [Mon, 30 Oct 2017 11:16:53 +0000 (12:16 +0100)]
Yet one attempt to mitigate the unzip error on AppVeyor

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Mon, 30 Oct 2017 11:09:15 +0000 (12:09 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Ensure SDK is checked out before asking for version

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Mon, 30 Oct 2017 11:08:50 +0000 (12:08 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Ensure SDK is checked out before asking for version

7 years agoEnsure SDK is checked out before asking for version
Anatol Belski [Mon, 30 Oct 2017 11:07:27 +0000 (12:07 +0100)]
Ensure SDK is checked out before asking for version

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Mon, 30 Oct 2017 10:30:19 +0000 (11:30 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fix fetching the SDK version

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Mon, 30 Oct 2017 10:29:40 +0000 (11:29 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fix fetching the SDK version

7 years agoFix fetching the SDK version
Anatol Belski [Mon, 30 Oct 2017 10:28:32 +0000 (11:28 +0100)]
Fix fetching the SDK version

7 years agoMerge branch 'PHP-7.2' of git.php.net:/php-src into PHP-7.2
Xinchen Hui [Mon, 30 Oct 2017 10:21:00 +0000 (18:21 +0800)]
Merge branch 'PHP-7.2' of git.php.net:/php-src into PHP-7.2

* 'PHP-7.2' of git.php.net:/php-src:
  Fix SDK version comparison and add more verbosity
  Don't use the cache dependency, SDK version is handled in script

7 years agoMerge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
Xinchen Hui [Mon, 30 Oct 2017 10:20:20 +0000 (18:20 +0800)]
Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1

* 'PHP-7.1' of git.php.net:/php-src:
  Fix SDK version comparison and add more verbosity
  Don't use the cache dependency, SDK version is handled in script

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Xinchen Hui [Mon, 30 Oct 2017 10:17:41 +0000 (18:17 +0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Use abbrev