php-src/NEWS

90 lines
3.9 KiB
Plaintext
Raw Normal View History

PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2011-09-12 10:20:34 +00:00
?? ??? 201?, PHP 5.5.0
- General improvements:
2012-09-12 15:56:12 +00:00
. Add simplified password hashing API
(https://wiki.php.net/rfc/password_hash). (Anthony Ferrara)
2012-09-16 20:02:47 +00:00
. Add generators and coroutines (https://wiki.php.net/rfc/generators).
(Nikita Popov)
. Support list in foreach (https://wiki.php.net/rfc/foreachlist). (Laruence)
. Implemented 'finally' keyword (https://wiki.php.net/rfc/finally). (Laruence)
2012-03-04 17:02:55 +00:00
. Drop Windows XP and 2003 support. (Pierre)
. Improve set_exception_handler while doing reset.(Laruence)
. Support constant array/string dereferencing. (Laruence)
. Add support for using empty() on the result of function calls and
other expressions (https://wiki.php.net/rfc/empty_isset_exprs).
(Nikita Popov)
2012-08-07 08:47:50 +00:00
- Calendar:
. Fixed bug #54254 (cal_from_jd returns month = 6 when there is only one Adar)
(Stas, Eitan Mosenkis).
- Core:
2012-06-07 07:37:26 +00:00
. Added boolval(). (Jille Timmermans).
2012-07-14 22:03:51 +00:00
. Fixed bug #18556 (Engine uses locale rules to handle class names). (Stas)
. Fixed bug #61681 (Malformed grammar). (Nikita Popov, Etienne, Laruence).
. Fixed bug #61038 (unpack("a5", "str\0\0") does not work as expected).
(srgoogleguy, Gustavo)
. Implemented FR #60738 (Allow 'set_error_handler' to handle NULL).
(Laruence, Nikita Popov)
2012-09-22 19:54:59 +00:00
. Return previous handler when passing NULL to set_error_handler and
set_exception_handler. (Nikita Popov)
. Added optional second argument for assert() to specify custom message. Patch
by Lonny Kapelushnik (lonny@lonnylot.com). (Lars)
2011-11-22 17:33:48 +00:00
- cURL:
. Added support for CURLOPT_FTP_RESPONSE_TIMEOUT, CURLOPT_APPEND,
CURLOPT_DIRLISTONLY, CURLOPT_NEW_DIRECTORY_PERMS, CURLOPT_NEW_FILE_PERMS,
CURLOPT_NETRC_FILE, CURLOPT_PREQUOTE, CURLOPT_KRBLEVEL, CURLOPT_MAXFILESIZE,
CURLOPT_FTP_ACCOUNT, CURLOPT_COOKIELIST, CURLOPT_IGNORE_CONTENT_LENGTH,
CURLOPT_CONNECT_ONLY, CURLOPT_LOCALPORT, CURLOPT_LOCALPORTRANGE,
CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPT_SSL_SESSIONID_CACHE,
CURLOPT_FTP_SSL_CCC, CURLOPT_HTTP_CONTENT_DECODING,
CURLOPT_HTTP_TRANSFER_DECODING, CURLOPT_PROXY_TRANSFER_MODE,
CURLOPT_ADDRESS_SCOPE, CURLOPT_CRLFILE, CURLOPT_ISSUERCERT,
CURLOPT_USERNAME, CURLOPT_PASSWORD, CURLOPT_PROXYUSERNAME,
CURLOPT_PROXYPASSWORD, CURLOPT_NOPROXY, CURLOPT_SOCKS5_GSSAPI_NEC,
CURLOPT_SOCKS5_GSSAPI_SERVICE, CURLOPT_TFTP_BLKSIZE,
CURLOPT_SSH_KNOWNHOSTS, CURLOPT_FTP_USE_PRET, CURLOPT_MAIL_FROM,
CURLOPT_MAIL_RCPT, CURLOPT_RTSP_CLIENT_CSEQ, CURLOPT_RTSP_SERVER_CSEQ,
CURLOPT_RTSP_SESSION_ID, CURLOPT_RTSP_STREAM_URI, CURLOPT_RTSP_TRANSPORT,
CURLOPT_RTSP_REQUEST, CURLOPT_RESOLVE, CURLOPT_ACCEPT_ENCODING,
CURLOPT_TRANSFER_ENCODING, CURLOPT_DNS_SERVERS and CURLOPT_USE_SSL.
(Pierrick)
2011-11-22 17:13:26 +00:00
. Fixed bug #55635 (CURLOPT_BINARYTRANSFER no longer used. The constant
2012-08-06 02:25:15 +00:00
still exists for backward compatibility but is doing nothing). (Pierrick)
2011-11-23 05:45:27 +00:00
. Fixed bug #54995 (Missing CURLINFO_RESPONSE_CODE support). (Pierrick)
2011-11-22 17:13:26 +00:00
2012-08-06 02:25:15 +00:00
- Datetime
. Fixed bug #61642 (modify("+5 weekdays") returns Sunday).
(Dmitri Iouchtchenko)
2012-06-12 13:57:11 +00:00
- Hash
2012-06-12 17:51:18 +00:00
. Added support for PBKDF2 via hash_pbkdf2(). (Anthony Ferrara)
2012-06-12 13:57:11 +00:00
- MCrypt
. mcrypt_ecb(), mcrypt_cbc(), mcrypt_cfb() and mcrypt_ofb() now throw
E_DEPRECATED. (GoogleGuy)
2012-05-03 11:02:34 +00:00
- MySQLi
. Dropped support for LOAD DATA LOCAL INFILE handlers when using libmysql.
Known for stability problems. (Andrey)
2012-10-04 11:40:23 +00:00
. Added support for SHA256 authentication available with MySQL 5.6.6+. (Andrey)
2012-05-03 11:02:34 +00:00
2012-03-04 16:32:01 +00:00
- PCRE:
. Deprecated the /e modifier
(https://wiki.php.net/rfc/remove_preg_replace_eval_modifier). (Nikita Popov)
2011-11-25 02:24:37 +00:00
- pgsql
. Added pg_escape_literal() and pg_escape_identifier() (Yasuo)
2012-08-20 04:46:29 +00:00
- Tokenizer:
. Fixed bug #60097 (token_get_all fails to lex nested heredoc). (Nikita Popov)
2012-06-07 19:46:51 +00:00
- Zip:
. Upgraded libzip to 0.10.1 (Anatoliy)
<<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>