<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/scripts, branch php-7.4.10</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>Backport bless_tests.php changes from PHP 8</title>
<updated>2020-08-05T12:59:56+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-08-05T12:59:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a2604e628f3de605f1d2c735816afdd0045d18cc'/>
<id>a2604e628f3de605f1d2c735816afdd0045d18cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>Apply tidy formatting</title>
<updated>2020-02-03T12:41:31+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-02-03T12:41:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=58b17906f512866c2e34844fa497ecdf7f1e1e3d'/>
<id>58b17906f512866c2e34844fa497ecdf7f1e1e3d</id>
<content type='text'>
Mostly reindent PHP scripts to spaces.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mostly reindent PHP scripts to spaces.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tidy.php to enforce formatting</title>
<updated>2020-02-03T12:34:42+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-01-10T14:52:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=4fd63185803aad42790c0ac38c144b346e283009'/>
<id>4fd63185803aad42790c0ac38c144b346e283009</id>
<content type='text'>
Many parts are disabled for the PHP-7.4 branch. We only strip
trailing whitespace in C files and reindent .php files to spaces.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Many parts are disabled for the PHP-7.4 branch. We only strip
trailing whitespace in C files and reindent .php files to spaces.
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle resources used as array keys consistently</title>
<updated>2019-09-27T08:40:41+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2019-09-27T08:39:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a6c9c7c2b8cfd4db8fcdcb66b908feac31b600af'/>
<id>a6c9c7c2b8cfd4db8fcdcb66b908feac31b600af</id>
<content type='text'>
Resources used as array keys are generally handled by throwing a
notice and converting the resource to the resource handle. The only
exception is the [$resource =&gt; null] syntax, where this was treated
as an illegal offset type instead. However, this also only happened
for VM evaluations, the AST evaluator did handle resources correctly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resources used as array keys are generally handled by throwing a
notice and converting the resource to the resource handle. The only
exception is the [$resource =&gt; null] syntax, where this was treated
as an illegal offset type instead. However, this also only happened
for VM evaluations, the AST evaluator did handle resources correctly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Throw notice for plain wrapper fread/fwrite errors</title>
<updated>2019-07-25T08:42:10+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2019-07-23T09:57:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1cbcf0f4f1e9a14b3fc76f6d3e53b567a9464fd4'/>
<id>1cbcf0f4f1e9a14b3fc76f6d3e53b567a9464fd4</id>
<content type='text'>
Similar to what is done for socket read/write errors.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Similar to what is done for socket read/write errors.
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve bless_tests</title>
<updated>2019-07-12T10:54:01+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2019-07-12T08:34:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9a274de4f45f5aac2c8ce9370b3e572281ff9f94'/>
<id>9a274de4f45f5aac2c8ce9370b3e572281ff9f94</id>
<content type='text'>
If a string var_dump contains a wildcard, also make the length a
wildcard.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If a string var_dump contains a wildcard, also make the length a
wildcard.
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor undefining PACKAGE_* symbols</title>
<updated>2019-07-11T00:00:51+00:00</updated>
<author>
<name>Peter Kokot</name>
<email>peterkokot@gmail.com</email>
</author>
<published>2019-07-11T00:00:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a6daded1a4b7d715d9b1585fe9df269ca73e2bac'/>
<id>a6daded1a4b7d715d9b1585fe9df269ca73e2bac</id>
<content type='text'>
Instead of patching configuration headers template generated by
the given tools - autoheader, this moves patching these symbols to
the configure step before creating and invoking the config.status
and before the configuration header file is generated from the
patched template.

Closes GH-4374
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of patching configuration headers template generated by
the given tools - autoheader, this moves patching these symbols to
the configure step before creating and invoking the config.status
and before the configuration header file is generated from the
patched template.

Closes GH-4374
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove some unused variables</title>
<updated>2019-07-08T08:18:17+00:00</updated>
<author>
<name>Peter Kokot</name>
<email>peterkokot@gmail.com</email>
</author>
<published>2019-07-08T08:18:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5ba69ab3addf17b0b854a20148f92e25b3790ef7'/>
<id>5ba69ab3addf17b0b854a20148f92e25b3790ef7</id>
<content type='text'>
- Variables php_abs_top_srcdir php_abs_top_builddir are no longer used.
- ZEND_EXT_TYPE is always zend_extension and variable is no longer used.

Closes GH-4378
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Variables php_abs_top_srcdir php_abs_top_builddir are no longer used.
- ZEND_EXT_TYPE is always zend_extension and variable is no longer used.

Closes GH-4378
</pre>
</div>
</content>
</entry>
<entry>
<title>add ini config details to php-config</title>
<updated>2019-06-29T03:26:21+00:00</updated>
<author>
<name>Joe Watkins</name>
<email>krakjoe@php.net</email>
</author>
<published>2019-06-26T10:49:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=2d5f277a2d7129c58dce46270768787c145e79fb'/>
<id>2d5f277a2d7129c58dce46270768787c145e79fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
