<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/NEWS, branch php-5.4.11</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>5.4.11</title>
<updated>2013-01-16T07:10:30+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2013-01-15T20:10:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=d224386bd8424345a5178b5ba0c9c881e83c7fe0'/>
<id>d224386bd8424345a5178b5ba0c9c881e83c7fe0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>5.4.11 rc1</title>
<updated>2013-01-02T06:29:18+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2013-01-02T06:29:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9ef52cac0542098f4b8dd7c556a6e900bfd2b0f3'/>
<id>9ef52cac0542098f4b8dd7c556a6e900bfd2b0f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add bug #63762</title>
<updated>2013-01-02T06:09:32+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2013-01-02T06:09:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=7ed2fdbf99219c39e7ac24658905f736c62efe0b'/>
<id>7ed2fdbf99219c39e7ac24658905f736c62efe0b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add fix #43177</title>
<updated>2013-01-02T05:24:11+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2013-01-02T05:24:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=86c46b96b6e93f566094917f0b24e79b795e062a'/>
<id>86c46b96b6e93f566094917f0b24e79b795e062a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix NEWS</title>
<updated>2013-01-02T03:05:25+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2012-12-31T01:58:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=dd288f93e1faa0aff5a22c51be034dfa4edaa0c0'/>
<id>dd288f93e1faa0aff5a22c51be034dfa4edaa0c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>News entry for +0/-0 filter fix</title>
<updated>2012-12-29T02:34:23+00:00</updated>
<author>
<name>Lars Strojny</name>
<email>lstrojny@php.net</email>
</author>
<published>2012-12-29T02:34:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ee258fe87dd3dd61d0a806e22055d7a4bb574a0c'/>
<id>ee258fe87dd3dd61d0a806e22055d7a4bb574a0c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #63859 Memory leak when reusing curl-handle</title>
<updated>2012-12-27T18:31:55+00:00</updated>
<author>
<name>Pierrick Charron</name>
<email>pierrick@php.net</email>
</author>
<published>2012-12-27T18:31:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ac3d227e28056bf5294a8a64e2f41ce2beebaa05'/>
<id>ac3d227e28056bf5294a8a64e2f41ce2beebaa05</id>
<content type='text'>
When CURLOPT_POSTFIELDS is called more than once on the same
curl handle, php/curl did not free the memory of the previous
post data. This commit will fix the problem unless the curl
handle was previously duplicated using the curl_copy_handle()
function in which case we can not know if the post data is
still in use or not by any curl handle
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When CURLOPT_POSTFIELDS is called more than once on the same
curl handle, php/curl did not free the memory of the previous
post data. This commit will fix the problem unless the curl
handle was previously duplicated using the curl_copy_handle()
function in which case we can not know if the post data is
still in use or not by any curl handle
</pre>
</div>
</content>
</entry>
<entry>
<title>Update NEWS file</title>
<updated>2012-12-23T00:09:56+00:00</updated>
<author>
<name>Pierrick Charron</name>
<email>pierrick@php.net</email>
</author>
<published>2012-12-23T00:09:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3f0dcc08e0bd748b8ea6c6d8d2e6245515e014d5'/>
<id>3f0dcc08e0bd748b8ea6c6d8d2e6245515e014d5</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-5.3' into PHP-5.4</title>
<updated>2012-12-22T00:24:28+00:00</updated>
<author>
<name>Pierrick Charron</name>
<email>pierrick@php.net</email>
</author>
<published>2012-12-22T00:24:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5499c7d201ad22f551dfc370ae09132acf4f75ec'/>
<id>5499c7d201ad22f551dfc370ae09132acf4f75ec</id>
<content type='text'>
* PHP-5.3:
  Update NEWS file
  Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
  CURL &gt;= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)

Conflicts:
	ext/curl/interface.c
	ext/curl/tests/bug63363.phpt
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.3:
  Update NEWS file
  Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
  CURL &gt;= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)

Conflicts:
	ext/curl/interface.c
	ext/curl/tests/bug63363.phpt
</pre>
</div>
</content>
</entry>
<entry>
<title>Update NEWS file</title>
<updated>2012-12-22T00:19:25+00:00</updated>
<author>
<name>Pierrick Charron</name>
<email>pierrick@php.net</email>
</author>
<published>2012-12-22T00:19:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1c553eba196b823439e69f003e63afd6d202d582'/>
<id>1c553eba196b823439e69f003e63afd6d202d582</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
