#
f9048300 |
| 27-Sep-2013 |
Dmitry Stogov |
Added support for GNU Hurd. (Svante Signell) |
#
0d7a6388 |
| 26-Sep-2013 |
Nikita Popov |
Implement variadic function syntax As per RFC: https://wiki.php.net/rfc/variadics |
#
69454d9f |
| 25-Sep-2013 |
Dmitry Stogov |
Added function opcache_compile_file() to load PHP scripts into cache without execution. |
#
dc8705c2 |
| 25-Sep-2013 |
Dmitry Stogov |
Fixed issue #135 (segfault in interned strings if initial memory is too low) |
#
a92a350c |
| 22-Sep-2013 |
Adam Harvey |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Copy dba_*() keys before converting to string.
|
#
30e0442c |
| 22-Sep-2013 |
Adam Harvey |
Copy dba_*() keys before converting to string. A nice Sunday afternoon project for somebody would be to refactor the dba functions to use zend_parse_parameters() reliably and try to unta
Copy dba_*() keys before converting to string. A nice Sunday afternoon project for somebody would be to refactor the dba functions to use zend_parse_parameters() reliably and try to untangle some of the macros in dba.c. Sadly, it is not a nice Sunday afternoon here. Fixes bug #65708 (dba functions cast $key param to string in-place, bypassing copy on write).
show more ...
|
#
3f64d355 |
| 20-Sep-2013 |
Adam Harvey |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Fix the broken sh syntax in ext/imap/config.m4.
|
#
cc66eaa0 |
| 20-Sep-2013 |
Adam Harvey |
Fix the broken sh syntax in ext/imap/config.m4. Patch by ryotakatsuki at gmail dot com. Fixes bug #65721 (configure script broken in 5.5.4 and 5.4.20 when enabling imap). |
#
dfa43d55 |
| 20-Sep-2013 |
Christopher Jones |
Added application/pdf to PHP CLI Web Server mime types. |
#
7a24ee13 |
| 18-Sep-2013 |
David Soria Parra |
Revert "EmptyIterator now implements Countable; fixes bug 60577" This reverts commit 8a936e8eb938965b0daaf076c109ec60141e57a7. |
#
4a3936ef |
| 17-Sep-2013 |
Michael Wallner |
NEWS/UPGRADING{,.INTERNALS} notes about temp POST stream |
#
dfd7d106 |
| 17-Sep-2013 |
David Soria Parra |
NEWS for added reserved ip addresses according to RFC 6598 |
#
552f22ab |
| 17-Sep-2013 |
Michael Wallner |
upload2G note |
#
6a0b90da |
| 16-Sep-2013 |
David Soria Parra |
NEWS for #60577 |
#
1939d9e3 |
| 16-Sep-2013 |
David Soria Parra |
NEWS for bug #64441 |
#
46f18ccf |
| 16-Sep-2013 |
Xinchen Hui |
Fixed bug #65665 (Exception not properly caught when opcache enabled) |
#
c0afe829 |
| 16-Sep-2013 |
David Soria Parra |
News for bugfix #64157 |
#
506a6154 |
| 12-Sep-2013 |
Nikita Popov |
Move NEWS entries to correct version Accidentially inserted NEWS entries in previous release. |
#
ad976d82 |
| 12-Sep-2013 |
Nikita Popov |
Fix bug #64782: SplFileObject constructor make $context optional |
#
165f544a |
| 11-Sep-2013 |
Boro Sitnikovski |
Fix bug #65502: DateTimeImmutable::createFromFormat returns DateTime DateTimeImmutable::createFromFormat should call date_create_immutable_from_format instead of date_create_from_format |
#
d7f5f1ef |
| 11-Sep-2013 |
Boro Sitnikovski |
Fix bug #65548: Comparison for DateTimeImmutable doesn't work |
#
59e2ce9f |
| 11-Sep-2013 |
Adam Harvey |
Sort the NEWS file alphabetically. Insert OCD otter meme here. |
#
8983a38d |
| 11-Sep-2013 |
Adam Harvey |
Request non-keep-alive connections by default in HTTP 1.1 requests. As noted in FR #65634, at present we don't send a Connection request header when the protocol version is set to 1.1, w
Request non-keep-alive connections by default in HTTP 1.1 requests. As noted in FR #65634, at present we don't send a Connection request header when the protocol version is set to 1.1, which means that RFC-compliant Web servers should respond with keep-alive connections. Since there's no way of reusing the HTTP connection at present, this simply means that PHP will appear to hang until the remote server hits its connection timeout, which may be quite some time. This commit sends a "Connection: close" header by default when HTTP 1.1 (or later) is requested by the user via the context options. It can be overridden by specifying a Connection header in the context options. It isn't possible to disable sending of the Connection header, but given "Connection: keep-alive" is the same as the default HTTP 1.1 behaviour, I don't see this as a significant issue — users who want to opt in for that still can. As a note, although I've removed an efree(protocol_version), this doesn't result in a memory leak: protocol_version is freed in the out: block at the end of the function anyway, and there are no returns between the removed efree() and the later call. Yes, I ran the tests with valgrind to check that. ☺ Implements FR #65634 (HTTP wrapper is very slow with protocol_version 1.1).
show more ...
|
#
fba290c0 |
| 10-Sep-2013 |
Adam Harvey |
Allow CURLOPT_FOLLOWLOCATION to be used with open_basedir. Newer versions of libcurl prevent file:// location response headers by default, which means that the open_basedir check is unne
Allow CURLOPT_FOLLOWLOCATION to be used with open_basedir. Newer versions of libcurl prevent file:// location response headers by default, which means that the open_basedir check is unnecessary — the fact CURLOPT_REDIR_PROTOCOLS can't set CURLPROTO_FILE with open_basedir enabled means that there's no possibility of breaching the open_basedir restriction, and this allows HTTP redirects to be followed automatically. Implements FR #65646 (re-enable CURLOPT_FOLLOWLOCATION with open_basedir or safe_mode).
show more ...
|
#
144f2f17 |
| 09-Sep-2013 |
Adam Harvey |
Fix NEWS: these commits were after 5.5.4 was branched and will be in 5.5.5. |