<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/scripts/dev, branch php-8.0.0beta1</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>ensure all files have same date in official archives</title>
<updated>2020-06-25T12:59:10+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@remirepo.net</email>
</author>
<published>2020-06-25T12:38:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5c37715dfdcea7b7d34d1ceaef71c93d925c6db5'/>
<id>5c37715dfdcea7b7d34d1ceaef71c93d925c6db5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4'</title>
<updated>2020-06-10T10:12:47+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-06-10T10:12:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=38bca539a13c80ecfdd1084eeb79495fcdd2380a'/>
<id>38bca539a13c80ecfdd1084eeb79495fcdd2380a</id>
<content type='text'>
* PHP-7.4:
  Also support absolute Windows filenames
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Also support absolute Windows filenames
</pre>
</div>
</content>
</entry>
<entry>
<title>Also support absolute Windows filenames</title>
<updated>2020-06-10T10:11:13+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-06-10T09:49:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=c5bafc3a190e12cec6099d963e15a832849ee996'/>
<id>c5bafc3a190e12cec6099d963e15a832849ee996</id>
<content type='text'>
The output normalization of bless_tests.php only detected absolute Unix
filenames; we extend this for absolute Windows filenames, regardless of
the platform we're running on (tests may have been run on Windows, but
bless_tests.php may be run from WSL or a Linux VM, for instance).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The output normalization of bless_tests.php only detected absolute Unix
filenames; we extend this for absolute Windows filenames, regardless of
the platform we're running on (tests may have been run on Windows, but
bless_tests.php may be run from WSL or a Linux VM, for instance).
</pre>
</div>
</content>
</entry>
<entry>
<title>Unbundle ext/xmlrpc</title>
<updated>2020-05-29T14:47:44+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-05-29T13:43:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=4fa3687e56050a111e8eaffe330258003628225e'/>
<id>4fa3687e56050a111e8eaffe330258003628225e</id>
<content type='text'>
According to &lt;https://wiki.php.net/rfc/unbundle_xmlprc&gt; we unbundle
ext/xmlrpc.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to &lt;https://wiki.php.net/rfc/unbundle_xmlprc&gt; we unbundle
ext/xmlrpc.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make numeric operations on resources, arrays and objects type errors</title>
<updated>2020-05-05T14:11:13+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-04-01T08:25:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5bc1e224dbd660cea99c222baf8bd3c215d25073'/>
<id>5bc1e224dbd660cea99c222baf8bd3c215d25073</id>
<content type='text'>
RFC: https://wiki.php.net/rfc/arithmetic_operator_type_checks

Closes GH-5331.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RFC: https://wiki.php.net/rfc/arithmetic_operator_type_checks

Closes GH-5331.
</pre>
</div>
</content>
</entry>
<entry>
<title>Store default parameter values of internal functions in arg info</title>
<updated>2020-04-08T16:37:51+00:00</updated>
<author>
<name>Máté Kocsis</name>
<email>kocsismate@woohoolabs.com</email>
</author>
<published>2020-04-06T09:02:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3709e74b5e495e210ada8039ed81fafa9cbadcdb'/>
<id>3709e74b5e495e210ada8039ed81fafa9cbadcdb</id>
<content type='text'>
Closes GH-5353. From now on, PHP will have reflection information
about default values of parameters of internal functions.

Co-authored-by: Nikita Popov &lt;nikita.ppv@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-5353. From now on, PHP will have reflection information
about default values of parameters of internal functions.

Co-authored-by: Nikita Popov &lt;nikita.ppv@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Move gen_stub.php to build directory and install it so phpize can take care of it, and thus extension can use it as it is already in Makefile</title>
<updated>2020-04-03T08:48:20+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@remirepo.net</email>
</author>
<published>2020-04-02T14:34:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e11d3b169000e44a82006b29a611afcf0c5e40b4'/>
<id>e11d3b169000e44a82006b29a611afcf0c5e40b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>mb_detect_encoding(): Use proper array|string parameter</title>
<updated>2020-03-30T14:15:12+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-03-30T14:06:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=50d07ff28c9e91f310bf6145b657fccd17b09bec'/>
<id>50d07ff28c9e91f310bf6145b657fccd17b09bec</id>
<content type='text'>
Needed to add support for nullabiltiy in some places.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Needed to add support for nullabiltiy in some places.
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable formatting of phpt files in tidy.php</title>
<updated>2020-02-03T21:52:04+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-02-03T12:46:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=d2cb200e10ada6fa44c54a29292bb4665728fff0'/>
<id>d2cb200e10ada6fa44c54a29292bb4665728fff0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4'</title>
<updated>2020-02-03T12:42:08+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-02-03T12:41:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=169805777c17892865ae462ae0a0895344a7fd3c'/>
<id>169805777c17892865ae462ae0a0895344a7fd3c</id>
<content type='text'>
* PHP-7.4:
  Apply tidy formatting
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Apply tidy formatting
</pre>
</div>
</content>
</entry>
</feed>
