<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/php.ini-development, branch php-8.0.3</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>Add Windows support for OCI 19</title>
<updated>2020-12-14T22:11:04+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-12-14T21:42:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=2e974c8c81771883d85af9cef6d5563db5b381df'/>
<id>2e974c8c81771883d85af9cef6d5563db5b381df</id>
<content type='text'>
As requested by Christopher Jones.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As requested by Christopher Jones.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4' into PHP-8.0</title>
<updated>2020-11-20T15:50:52+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-11-20T15:50:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=0dac69c05994a96254b1b05a34474123bac71469'/>
<id>0dac69c05994a96254b1b05a34474123bac71469</id>
<content type='text'>
* PHP-7.4:
  Fix typos in php.ini files
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Fix typos in php.ini files
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos in php.ini files</title>
<updated>2020-11-20T15:50:29+00:00</updated>
<author>
<name>Benjamin Morel</name>
<email>benjamin.morel@gmail.com</email>
</author>
<published>2020-11-20T13:45:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ed949a197333ee0fef5a4f6b497e8e39158730c4'/>
<id>ed949a197333ee0fef5a4f6b497e8e39158730c4</id>
<content type='text'>
Closes GH-6441.

[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-6441.

[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4'</title>
<updated>2020-09-29T08:48:29+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-09-29T08:48:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=45b0716733cf094db2c5ce12a3de9fc4ac835250'/>
<id>45b0716733cf094db2c5ce12a3de9fc4ac835250</id>
<content type='text'>
* PHP-7.4:
  Synchronize php.ini-development and php.ini-production
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Synchronize php.ini-development and php.ini-production
</pre>
</div>
</content>
</entry>
<entry>
<title>Synchronize php.ini-development and php.ini-production</title>
<updated>2020-09-29T08:47:09+00:00</updated>
<author>
<name>Giovanni Giacobbi</name>
<email>giovanni@giacobbi.net</email>
</author>
<published>2020-09-28T22:43:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=205556c1913e8774c037f9335a908c328eabc56e'/>
<id>205556c1913e8774c037f9335a908c328eabc56e</id>
<content type='text'>
Closes GH-6231.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-6231.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #55847: DOTNET .NET 4.0 GAC new location</title>
<updated>2020-08-22T10:42:34+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-08-06T16:57:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e6044d4455d7fbaced7f3a6ac28172d963017e51'/>
<id>e6044d4455d7fbaced7f3a6ac28172d963017e51</id>
<content type='text'>
If we do not specify the exact version of the .NET framework to use,
the default CLR is loaded, which is typically CLR 2, which is very old.
Therefore, we introduce a `PHP_INI_SYSTEM` setting, which allows users
to choose the desired .NET framework version.  The value of the setting
are the first three parts of the framework's version number, separated
by dots, and prefixed with "v", e.g. "v4.0.30319".  If the value of the
INI setting is `NULL` (the default) or an empty string, the default CLR
is used.

Internally, we switch from the most generic `CoCreateInstance()` to
`CorBindToRuntime()` which is implemented in mscoree.dll.  To avoid the
hard dependency to that library, we load dynamically.

So this fix is supposed to be fully backwards compatible.

Closes GH-5949
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If we do not specify the exact version of the .NET framework to use,
the default CLR is loaded, which is typically CLR 2, which is very old.
Therefore, we introduce a `PHP_INI_SYSTEM` setting, which allows users
to choose the desired .NET framework version.  The value of the setting
are the first three parts of the framework's version number, separated
by dots, and prefixed with "v", e.g. "v4.0.30319".  If the value of the
INI setting is `NULL` (the default) or an empty string, the default CLR
is used.

Internally, we switch from the most generic `CoCreateInstance()` to
`CorBindToRuntime()` which is implemented in mscoree.dll.  To avoid the
hard dependency to that library, we load dynamically.

So this fix is supposed to be fully backwards compatible.

Closes GH-5949
</pre>
</div>
</content>
</entry>
<entry>
<title>Disable report_zend_debug by default</title>
<updated>2020-08-12T08:36:40+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-08-12T08:32:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=824541d57ecf5514b55b98e392e9d1c30eb38764'/>
<id>824541d57ecf5514b55b98e392e9d1c30eb38764</id>
<content type='text'>
We might just want to drop this completely, but at least don't
enable it by default. It already gets disabled by a number of
SAPIs, but we should make that the default state.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We might just want to drop this completely, but at least don't
enable it by default. It already gets disabled by a number of
SAPIs, but we should make that the default state.
</pre>
</div>
</content>
</entry>
<entry>
<title>[RFC] Make string length for getTraceAsString() configurable</title>
<updated>2020-07-25T13:50:57+00:00</updated>
<author>
<name>Tyson Andre</name>
<email>tysonandre775@hotmail.com</email>
</author>
<published>2020-06-25T13:44:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=07db64156e180c30daa5ab5d41ed72f9bba77e6d'/>
<id>07db64156e180c30daa5ab5d41ed72f9bba77e6d</id>
<content type='text'>
Add a `zend.exception_string_param_max_len` ini setting.
(same suffix as `log_errors_max_len`)

Allow values between 0 and 1000000 bytes.
For example, with zend.exception_string_param_max_len=0,
"" would represent the empty string, and "..." would represent something
longer than the empty string.
Previously, this was hardcoded as exactly 15 bytes.

Discussion: https://externals.io/message/110717

Closes GH-5769
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a `zend.exception_string_param_max_len` ini setting.
(same suffix as `log_errors_max_len`)

Allow values between 0 and 1000000 bytes.
For example, with zend.exception_string_param_max_len=0,
"" would represent the empty string, and "..." would represent something
longer than the empty string.
Previously, this was hardcoded as exactly 15 bytes.

Discussion: https://externals.io/message/110717

Closes GH-5769
</pre>
</div>
</content>
</entry>
<entry>
<title>php.ini cleanup</title>
<updated>2020-07-22T13:46:03+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-07-22T13:45:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9250abfb046f0442a7f97d1ec5931c7450cd658c'/>
<id>9250abfb046f0442a7f97d1ec5931c7450cd658c</id>
<content type='text'>
[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>Export php_gd_libgdimageptr_from_zval_p()</title>
<updated>2020-07-11T17:33:20+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-07-11T13:41:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=340e2ead7719266bd54ec16f1740d5b862cf11f8'/>
<id>340e2ead7719266bd54ec16f1740d5b862cf11f8</id>
<content type='text'>
Some extension may need to retrieve the `gdImagePtr` from an `GdImage`
object; thus, we export the respective function.  To not being forced
to include gd.h in php_gd.h, we use the opaque `struct gdImageStruct *`
as return type.

We also rename php_gd2.dll to php_gd.dll, since there's not really much
point in giving the DLL a version number, since there is no php_gd.dll
for years (if there ever has been).  Renaming, on the other hand,
matches the name on other systems (gd.so), and allows to actually use
`ADD_EXTENSION_DEP()`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some extension may need to retrieve the `gdImagePtr` from an `GdImage`
object; thus, we export the respective function.  To not being forced
to include gd.h in php_gd.h, we use the opaque `struct gdImageStruct *`
as return type.

We also rename php_gd2.dll to php_gd.dll, since there's not really much
point in giving the DLL a version number, since there is no php_gd.dll
for years (if there ever has been).  Renaming, on the other hand,
matches the name on other systems (gd.so), and allows to actually use
`ADD_EXTENSION_DEP()`.
</pre>
</div>
</content>
</entry>
</feed>
