<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/sapi/cli, branch php-7.2.0beta3</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Rework automatic interactive cli activation</title>
<updated>2017-08-03T09:23:50+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2017-08-03T09:23:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=93c2c56a1bc6a6184ce92dd0d9f3702c8ed00444'/>
<id>93c2c56a1bc6a6184ce92dd0d9f3702c8ed00444</id>
<content type='text'>
There are still systems delivering buggy console info. If a file was
passed, obviously no interaction is meant.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are still systems delivering buggy console info. If a file was
passed, obviously no interaction is meant.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.1' into PHP-7.2</title>
<updated>2017-07-24T16:24:22+00:00</updated>
<author>
<name>Joe Watkins</name>
<email>krakjoe@php.net</email>
</author>
<published>2017-07-24T16:24:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=515b39688938a37a48cb54850668fabb6e3915c3'/>
<id>515b39688938a37a48cb54850668fabb6e3915c3</id>
<content type='text'>
* PHP-7.1:
  Update copyright year to 2017
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.1:
  Update copyright year to 2017
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.0' into PHP-7.1</title>
<updated>2017-07-24T16:24:10+00:00</updated>
<author>
<name>Joe Watkins</name>
<email>krakjoe@php.net</email>
</author>
<published>2017-07-24T16:24:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=b44484b912b7a9373cfaead90ec2dd2ea5da51b3'/>
<id>b44484b912b7a9373cfaead90ec2dd2ea5da51b3</id>
<content type='text'>
* PHP-7.0:
  Update copyright year to 2017
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.0:
  Update copyright year to 2017
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright year to 2017</title>
<updated>2017-07-24T16:23:57+00:00</updated>
<author>
<name>Peter Kokot</name>
<email>peterkokot@gmail.com</email>
</author>
<published>2017-07-22T18:22:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=924ff6164ee6d7e43a7fc803e48e1fdb59a2e54e'/>
<id>924ff6164ee6d7e43a7fc803e48e1fdb59a2e54e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug #74849 Process is started as interactive shell in PhpStorm</title>
<updated>2017-07-03T19:59:31+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2017-07-03T19:58:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8871d2d12eb6b516d6685a83ca8530af6d1557f8'/>
<id>8871d2d12eb6b516d6685a83ca8530af6d1557f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed php_socket_t to int conversion</title>
<updated>2017-06-15T21:48:03+00:00</updated>
<author>
<name>Richard Fussenegger</name>
<email>fleshgrinder@users.noreply.github.com</email>
</author>
<published>2017-05-29T19:42:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5fa1cd224b3801a99790f367feca4d98b53771b7'/>
<id>5fa1cd224b3801a99790f367feca4d98b53771b7</id>
<content type='text'>
This warning was about a possible loss of data due to the downcast of `php_socket_t` to `int`. The former maps to a platform specific type, hence, it might downcast from a 64 bit integer to a 32 bit intger.

Fixed possibly overflowing vars

Due to the change from `int` to `php_socket_t` some variables might overflow now. Changed all variables that might be affected.

Revert "Fixed possibly overflowing vars"

This reverts commit bf64fd5984409a208ef32108990a6085b6556273.

Use aliased PHP socket type

Using the alias protects us from changes to the underlying type.

Removed ignored nfds argument

The `nfds` argument to the Win32 `select` function is always ignored, regardless of its actual value. Hence, we should not pass it in the first place. See https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141(v=vs.85).aspx for reference.

Target value is not a pointer

Avoid overflow in loop
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This warning was about a possible loss of data due to the downcast of `php_socket_t` to `int`. The former maps to a platform specific type, hence, it might downcast from a 64 bit integer to a 32 bit intger.

Fixed possibly overflowing vars

Due to the change from `int` to `php_socket_t` some variables might overflow now. Changed all variables that might be affected.

Revert "Fixed possibly overflowing vars"

This reverts commit bf64fd5984409a208ef32108990a6085b6556273.

Use aliased PHP socket type

Using the alias protects us from changes to the underlying type.

Removed ignored nfds argument

The `nfds` argument to the Win32 `select` function is always ignored, regardless of its actual value. Hence, we should not pass it in the first place. See https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141(v=vs.85).aspx for reference.

Target value is not a pointer

Avoid overflow in loop
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.1'</title>
<updated>2017-06-12T09:21:45+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2017-06-12T09:21:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e33bc38e83e081acf6a759d31c80d6900019b4f7'/>
<id>e33bc38e83e081acf6a759d31c80d6900019b4f7</id>
<content type='text'>
* PHP-7.1:
  Add simple cli test for PATH/HOST ini sections
  Fixed bug #74600
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.1:
  Add simple cli test for PATH/HOST ini sections
  Fixed bug #74600
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.0' into PHP-7.1</title>
<updated>2017-06-12T09:21:35+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2017-06-12T09:21:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=caf35c5cf533c10852f043fd0079a14876331d99'/>
<id>caf35c5cf533c10852f043fd0079a14876331d99</id>
<content type='text'>
* PHP-7.0:
  Add simple cli test for PATH/HOST ini sections
  Fixed bug #74600
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.0:
  Add simple cli test for PATH/HOST ini sections
  Fixed bug #74600
</pre>
</div>
</content>
</entry>
<entry>
<title>Add simple cli test for PATH/HOST ini sections</title>
<updated>2017-06-09T21:28:19+00:00</updated>
<author>
<name>Manuel Mausz</name>
<email>manuel@mausz.at</email>
</author>
<published>2017-06-09T21:28:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=91f129ebf7919bdbd79c621cc4b2211d06d05685'/>
<id>91f129ebf7919bdbd79c621cc4b2211d06d05685</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>missing fix for another test</title>
<updated>2017-05-29T10:07:13+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2017-05-29T10:07:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=37a16a32c97fba3e5528aa4a3a675431f3cae136'/>
<id>37a16a32c97fba3e5528aa4a3a675431f3cae136</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
