History log of /php-src/NEWS (Results 9251 – 9275 of 15466)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# ac3d227e 27-Dec-2012 Pierrick Charron

Fixed #63859 Memory leak when reusing curl-handle

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

Fixed #63859 Memory leak when reusing curl-handle

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

show more ...

# be7b0bc3 17-Dec-2012 Nikita Popov

Implement Generator::throw() method

Generator::throw($exception) throws an exception into the generator. The
exception is thrown at the current point of suspension within the generator.

Implement Generator::throw() method

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.

show more ...

# 24f1ef1b 23-Dec-2012 Pierrick Charron

Update NEWS

# 3f0dcc08 23-Dec-2012 Pierrick Charron

Update NEWS file

# a2b6d9c1 23-Dec-2012 Pierrick Charron

Fixed segfault due to libcurl connection caching

Libcurl is doing connection caching. When easy handle is cleaned up,
if the handle was previously used by the curl_multi_api, the connect

Fixed segfault due to libcurl connection caching

Libcurl is doing connection caching. When easy handle is cleaned up,
if the handle was previously used by the curl_multi_api, the connection
remains open un the curl multi handle is cleaned up. Some protocols are
sending content like the FTP one, and libcurl try to use the
WRITEFUNCTION or the HEADERFUNCTION. Since structures used in those
callback are freed, we need to use an other callback to which avoid
segfaults.

Libcurl commit d021f2e8a00 fix this issue and should be part of 7.28.2

show more ...

# 5499c7d2 22-Dec-2012 Pierrick Charron

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
Update NEWS file
Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
CURL >= 7.28.0 no longer

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
Update NEWS file
Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
CURL >= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)

Conflicts:
ext/curl/interface.c
ext/curl/tests/bug63363.phpt

show more ...


# 1c553eba 22-Dec-2012 Pierrick Charron

Update NEWS file

# ffb848b2 21-Dec-2012 Nikita Popov

Fix bug #63822: Crash when using closures with ArrayAccess

op_array->T was used after the closure's op_array was already freed. This just
swaps the freeing order.

# 66b88c92 20-Dec-2012 Pierrick Charron

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
Fixed bug #55438 (Curlwapper is not sending http header randomly)


# c46e1cdc 20-Dec-2012 Pierrick Charron

Fixed bug #55438 (Curlwapper is not sending http header randomly)

Since curl multi is used, it sometime happen that the resource is freed before
the curl multi really execute the query.

Fixed bug #55438 (Curlwapper is not sending http header randomly)

Since curl multi is used, it sometime happen that the resource is freed before
the curl multi really execute the query. The patch will store the headers
slist in the curlstream handle and free it only when the stream will be closed

show more ...

# e01fe531 19-Dec-2012 Johannes Schlüter

Update release date

# 19f8bba1 14-Dec-2012 David Soria Parra

News for PHP 5.5.0 Alphas

# 36a5eca8 15-Dec-2012 Lars Strojny

Updating news entry to list new filetypes

# c3b48032 14-Dec-2012 Lars Strojny

News entry for updated mime types

# a11606b1 13-Dec-2012 Johannes Schlüter

Fix Bug #63762 Sigsegv when Exception::$trace is changed by user

# 35f86d24 13-Dec-2012 Dmitry Stogov

Fixed bug #63757 (getenv() produces memory leak with CGI SAPI)

# 2d1694d4 11-Dec-2012 Adam Harvey

Alter php_json_decode_ex() to respect JSON_BIGINT_AS_STRING for bare numbers.

Fixes bug #63737 (json_decode does not properly decode with options parameter).

# ec83534d 11-Dec-2012 Adam Harvey

Tinker with the wording of the MySQL deprecation news post.

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

Tinker with the wording of the MySQL deprecation news post.

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.

show more ...

# b7091aaf 10-Dec-2012 Adam Harvey

Deprecate ext/mysql.

Per https://wiki.php.net/rfc/mysql_deprecation, connecting to a MySQL database
via ext/mysql now generates an E_DEPRECATED error. This commit includes the
minima

Deprecate ext/mysql.

Per https://wiki.php.net/rfc/mysql_deprecation, connecting to a MySQL database
via ext/mysql now generates an E_DEPRECATED error. This commit includes the
minimal EXPECTF updates required for the test suite to pass: it may be
preferable to refactor some of the tests to suppress deprecation errors in
situations where no other error is expected from mysql_[p]connect(), but I'm
not enough of a MySQL expert to want to get my hands that dirty in a long
standing test suite.

show more ...

# 795e3f1c 10-Dec-2012 Johannes Schlüter

Fix typo

# 3d86e6d8 10-Dec-2012 Xinchen Hui

Fixed bug #63726 (Memleak with static properties and internal/user classes)

No test scripts provided (will try to find one)

# 16ec6fa2 06-Dec-2012 Sebastian Bergmann

Cleanup NEWS

# 22fe268a 05-Dec-2012 Johannes Schlüter

this will become PHP 5.3.21

# 881416cd 05-Dec-2012 Dmitry Stogov

Fixed bug #63680 (Memleak in splfixedarray with cycle reference)

# c3b6f6fe 05-Dec-2012 Stanislav Malyshev

5.4.11-dev

1...<<371372373374375376377378379380>>...619