summaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* fix bug #62396 'make test' crashes starting with 5.3.14Michael Wallner2013-10-011-0/+5
| | | | (missing gzencode())
* Fixed bug #61548Michael Wallner2013-10-011-0/+4
|
* Fix bug #65322: compile time errors won't trigger auto loadingNikita Popov2013-09-291-0/+3
| | | | | | | | | Also fixes duplicate bugs #54054 and #42098. Furthermore this fixes incorrect error messages thrown from code running inside an error handler when a compilation is in progress. The error file and line are now correctly associated with the file/line of the executor, rather than the compiler.
* 5.4.20 release dateStanislav Malyshev2013-09-281-1/+1
|
* Copy dba_*() keys before converting to string.Adam Harvey2013-09-221-0/+4
| | | | | | | | | 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).
* Fix the broken sh syntax in ext/imap/config.m4.Adam Harvey2013-09-201-0/+4
| | | | | Patch by ryotakatsuki at gmail dot com. Fixes bug #65721 (configure script broken in 5.5.4 and 5.4.20 when enabling imap).
* Revert "EmptyIterator now implements Countable; fixes bug 60577"David Soria Parra2013-09-181-3/+0
| | | | This reverts commit 8a936e8eb938965b0daaf076c109ec60141e57a7.
* NEWS for added reserved ip addresses according to RFC 6598David Soria Parra2013-09-171-0/+1
|
* NEWS for #60577David Soria Parra2013-09-161-0/+3
|
* NEWS for bug #64441David Soria Parra2013-09-161-0/+4
|
* News for bugfix #64157David Soria Parra2013-09-161-0/+4
|
* Handle CLI server request headers case insensitively.Adam Harvey2013-09-091-0/+4
| | | | Fixes bug #65633 (built-in server treat some http headers as case-sensitive).
* 5.4.21 nowStanislav Malyshev2013-09-031-0/+2
|
* Fixed Bug #65564 stack-buffer-overflow in DateTimeZone stuff caught by ↵Remi Collet2013-08-301-0/+2
| | | | AddressSanitizer
* Fixed bug #60598 (cli/apache sapi segfault on objects manipulation)Xinchen Hui2013-08-301-0/+2
|
* Fixed bug #61759 (class_alias() should accept classes with leading ↵Dmitry Stogov2013-08-291-0/+2
| | | | backslashes). (Julien)
* Fix bug #65579 (Using traits with get_class_methods causes segfault).Adam Harvey2013-08-281-0/+2
| | | | | | | Specifically, this checks if there are trait aliases defined in the class scope before attempting to dereference the first trait alias. This handles the case where a trait alias was used in a child trait but no aliases exist in the concrete class.
* Fix bug #65554 in DateTime, when use it with D/l in format and textual day ↵gron19872013-08-251-0/+4
| | | | have dot at the end
* Fix #65483: quoted-printable encode stream filter incorrectly encoding spacesMichael M Slusarz2013-08-241-0/+2
|
* Update NEWSChristopher Jones2013-08-231-0/+2
|
* Fix bug #64953 (Postgres prepared statement positional parameter casting)Michael Wallner2013-08-201-0/+4
|
* bump versionStanislav Malyshev2013-08-191-2/+11
|
* Update NEWSChristopher Jones2013-08-191-1/+1
|
* fix bug #65481 (shutdown segfault due to serialize)Michael Wallner2013-08-201-0/+1
|
* Track created curl_slist structs by option so they can be updated in situ.Adam Harvey2013-08-191-0/+3
| | | | | | | | | | | | | | At present, when curl_setopt() is called with an option that requires the creation of a curl_slist, we simply push the new curl_slist onto a list to be freed when the curl handle is freed. This avoids a memory leak, but means that repeated calls to curl_setopt() on the same handle with the same option wastes previously allocated memory on curl_slist structs that will no longer be read. This commit changes the zend_llist that was previously used to track the lists to a HashTable keyed by the option number, which means that we can simply update the hash table each time curl_setopt() is called. Fixes bug #65458 (curl memory leak).
* Fix bug #65470 Segmentation fault in zend_error() with --enable-dtraceStanislav Malyshev2013-08-181-0/+2
|
* Fix for php bug #64802 includes test caseMark Jones2013-08-181-0/+4
|
* new for fix #65225Stanislav Malyshev2013-08-181-0/+1
|
* Update NEWSChristopher Jones2013-08-161-2/+3
|
* fix cve numberStanislav Malyshev2013-08-161-1/+1
|
* Fix CVE-2013-4073 - handling of certs with null bytesStanislav Malyshev2013-08-131-0/+4
|
* Fix #61345: fix install of CGI binaryMichael Heimpold2013-08-101-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | When CLI was not built but only CGI binary, then a sequence of $ ./buildconf $ ./configure --prefix=/usr/local/phpcgi --disable-cli $ make -j8 $ sudo rm -rf /usr/local/phpcgi $ sudo make install results in the following error: /bin/bash /srv/smb/php-src.test/libtool --silent --preserve-dup-deps --mode=install cp ext/opcache/opcache.la /srv/smb/php-src.test/modules Installing shared extensions: /usr/local/phpcgi/lib/php/extensions/no-debug-non-zts-20121212/ Installing PHP CGI binary: /usr/local/phpcgi/bin/ cp: cannot create regular file `/usr/local/phpcgi/bin/#INST@28245#': No such file or directory make: *** [install-cgi] Fehler 1 The solution is to create the binary directory before copying the CGI binary as e.g. CLI does. Signed-off-by: Oliver Metz <oliver.metz@gmx.de> [extensive commit message] Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* Update NEWSYasuo Ohgaki2013-08-111-0/+3
|
* fix bug #65391Michael Wallner2013-08-091-0/+4
| | | | | Unable to send vary header user-agent when ob_start('ob_gzhandler') is called
* Update NEWSYasuo Ohgaki2013-08-091-0/+2
|
* NEWS for recent DTrace merges.Christopher Jones2013-08-051-0/+4
| | | | Remove redundant 'cp' during DTrace install.
* fix typoStanislav Malyshev2013-08-041-1/+1
|
* Fixed bug Bug #65372 (Segfault in gc_zval_possible_root when return ↵Xinchen Hui2013-08-021-0/+2
| | | | reference fails)
* Fixed bug #65018 (SoapHeader problems with SoapServer)Dmitry Stogov2013-07-311-0/+3
|
* Fixed bug #65336Yasuo Ohgaki2013-07-271-0/+4
|
* Upper section nameXinchen Hui2013-07-251-1/+1
|
* Fixed bug #65328 (Segfault when getting SplStack object Value)Xinchen Hui2013-07-251-0/+3
|
* fix bug #65028 Phar::buildFromDirectory creates corrupt archives for some ↵Stanislav Malyshev2013-07-221-0/+4
| | | | specific contents
* Update news for FILTER_SANITIZE_FULL_SPECIAL_CHARS fixStanislav Malyshev2013-07-211-0/+3
|
* Fixed bug #65304 (Use of max int in array_sum)Xinchen Hui2013-07-211-0/+1
|
* Reorder NEWSXinchen Hui2013-07-211-1/+1
|
* Fixed bug #65291 - get_defined_constants() crash with __CLASS__ in traitArpad Ray2013-07-191-0/+2
|
* Properly fixed bug #63186 on NetBSD == 6.0Matteo Beccati2013-07-191-0/+3
|
* 5.4.19 is nextStanislav Malyshev2013-07-171-4/+8
|
* Fixed bug #50308 - session id not appended properly for empty anchor tagsArpad Ray2013-07-171-0/+2
| | | | | | The issue was actually because a lack of space before a "/" marking the tag as empty. This was being swallowed in the rule for unquoted values. Fixed by making that rule exclude quotes (as per spec anyway).