<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/NEWS, branch immutable-date</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>fix different values of mysqli_stmt_affected_rows between libmysql</title>
<updated>2013-01-07T15:36:21+00:00</updated>
<author>
<name>Andrey Hristov</name>
<email>andrey@php.net</email>
</author>
<published>2013-01-07T15:36:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cde53e7fcd3f74cb29af4d3fb9fb09812ee1d4a0'/>
<id>cde53e7fcd3f74cb29af4d3fb9fb09812ee1d4a0</id>
<content type='text'>
and mysqlnd (in favor of libmysql) before execute and after prepare()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and mysqlnd (in favor of libmysql) before execute and after prepare()
</pre>
</div>
</content>
</entry>
<entry>
<title>News entry for bug #52126</title>
<updated>2013-01-06T14:13:32+00:00</updated>
<author>
<name>Lars Strojny</name>
<email>lstrojny@php.net</email>
</author>
<published>2013-01-06T14:13:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a951693cfb17b8d84de4882f47ba6f7d6a776556'/>
<id>a951693cfb17b8d84de4882f47ba6f7d6a776556</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug #23955: allow specifiy max age for setcookie()</title>
<updated>2013-01-06T02:22:44+00:00</updated>
<author>
<name>Lars Strojny</name>
<email>lstrojny@php.net</email>
</author>
<published>2013-01-06T02:22:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ec2fff80e768dfb04aa393c06a2b1a42a9e871ff'/>
<id>ec2fff80e768dfb04aa393c06a2b1a42a9e871ff</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 #63874 (Segfaul if php_strip_whitespace has heredoc)</title>
<updated>2012-12-30T04:11:37+00:00</updated>
<author>
<name>Pierrick Charron</name>
<email>pierrick@php.net</email>
</author>
<published>2012-12-30T04:11:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8228597ecce3ad868d2c6bfca5ff43f29e014296'/>
<id>8228597ecce3ad868d2c6bfca5ff43f29e014296</id>
<content type='text'>
T_END_HEREDOC don't carry a token value anymore since commit 4cf90e06c
Bugfix by Nikita for bug #60097
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
T_END_HEREDOC don't carry a token value anymore since commit 4cf90e06c
Bugfix by Nikita for bug #60097
</pre>
</div>
</content>
</entry>
<entry>
<title>Add new curl options</title>
<updated>2012-12-28T05:51:04+00:00</updated>
<author>
<name>Pierrick Charron</name>
<email>pierrick@php.net</email>
</author>
<published>2012-12-28T05:51:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=722b8fb80eb3a4a5f8fa5e8dd91456148e1f755a'/>
<id>722b8fb80eb3a4a5f8fa5e8dd91456148e1f755a</id>
<content type='text'>
Addes new curl options CURLOPT_TELNETOPTIONS, CURLOPT_GSSAPI_DELEGATION,
CURLOPT_ACCEPTTIMEOUT_MS, CURLOPT_SSL_OPTIONS, CURLOPT_TCP_KEEPALIVE,
CURLOPT_TCP_KEEPIDLE and CURLOPT_TCP_KEEPINTVL.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Addes new curl options CURLOPT_TELNETOPTIONS, CURLOPT_GSSAPI_DELEGATION,
CURLOPT_ACCEPTTIMEOUT_MS, CURLOPT_SSL_OPTIONS, CURLOPT_TCP_KEEPALIVE,
CURLOPT_TCP_KEEPIDLE and CURLOPT_TCP_KEEPINTVL.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement Generator::throw() method</title>
<updated>2012-12-23T23:27:55+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2012-12-17T21:02:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=be7b0bc3ec02e4f223920ee6397f9c4993eb7df5'/>
<id>be7b0bc3ec02e4f223920ee6397f9c4993eb7df5</id>
<content type='text'>
Generator::throw($exception) throws an exception into the generator. The
exception is thrown at the current point of suspension within the generator.
It basically behaves as if the current yield statement were replaced with
a throw statement and the generator subsequently resumed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Generator::throw($exception) throws an exception into the generator. The
exception is thrown at the current point of suspension within the generator.
It basically behaves as if the current yield statement were replaced with
a throw statement and the generator subsequently resumed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update NEWS</title>
<updated>2012-12-23T22:48:05+00:00</updated>
<author>
<name>Pierrick Charron</name>
<email>pierrick@php.net</email>
</author>
<published>2012-12-23T22:48:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=24f1ef1b0254d4b8341aa9d74ca450e89c2a8683'/>
<id>24f1ef1b0254d4b8341aa9d74ca450e89c2a8683</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug #63822: Crash when using closures with ArrayAccess</title>
<updated>2012-12-21T00:56:37+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2012-12-21T00:56:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ffb848b275a085917413c171a79cbfdb1d0159d2'/>
<id>ffb848b275a085917413c171a79cbfdb1d0159d2</id>
<content type='text'>
op_array-&gt;T was used after the closure's op_array was already freed. This just
swaps the freeing order.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
op_array-&gt;T was used after the closure's op_array was already freed. This just
swaps the freeing order.
</pre>
</div>
</content>
</entry>
<entry>
<title>News for PHP 5.5.0 Alphas</title>
<updated>2012-12-18T15:51:04+00:00</updated>
<author>
<name>David Soria Parra</name>
<email>dsp@php.net</email>
</author>
<published>2012-12-14T23:08:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=19f8bba10d3580308bfe19234a5a26a4f71ecd9a'/>
<id>19f8bba10d3580308bfe19234a5a26a4f71ecd9a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Tinker with the wording of the MySQL deprecation news post.</title>
<updated>2012-12-11T01:08:07+00:00</updated>
<author>
<name>Adam Harvey</name>
<email>aharvey@php.net</email>
</author>
<published>2012-12-11T01:08:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ec83534d88da4c96777b86d8db7fd20a52ed012e'/>
<id>ec83534d88da4c96777b86d8db7fd20a52ed012e</id>
<content type='text'>
I know that in general NEWS is a very punchy "this is what happened" log, but
Chris e-mailed me off-list to ask if it could be added to avoid any FUD — this
merely brings the NEWS post into line with UPGRADING, the migration guide, and
every other piece of advice we're giving out.

I also forgot to add the RFC URL last night, so added that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I know that in general NEWS is a very punchy "this is what happened" log, but
Chris e-mailed me off-list to ask if it could be added to avoid any FUD — this
merely brings the NEWS post into line with UPGRADING, the migration guide, and
every other piece of advice we're giving out.

I also forgot to add the RFC URL last night, so added that.
</pre>
</div>
</content>
</entry>
</feed>
