iliaa Wed Jan 11 14:19:14 2006 UTC Modified files: (Branch: PHP_5_1) /php-src configure.in NEWS /php-src/main php_version.h Log: 5.1.2
http://cvs.php.net/viewcvs.cgi/php-src/configure.in?r1=1.579.2.34&r2=1.579.2.35&diff_format=u Index: php-src/configure.in diff -u php-src/configure.in:1.579.2.34 php-src/configure.in:1.579.2.35 --- php-src/configure.in:1.579.2.34 Thu Jan 5 21:36:04 2006 +++ php-src/configure.in Wed Jan 11 14:19:13 2006 @@ -1,4 +1,4 @@ - ## $Id: configure.in,v 1.579.2.34 2006/01/05 21:36:04 iliaa Exp $ -*- autoconf -*- + ## $Id: configure.in,v 1.579.2.35 2006/01/11 14:19:13 iliaa Exp $ -*- autoconf -*- dnl ## Process this file with autoconf to produce a configure script. divert(1) @@ -42,7 +42,7 @@ MAJOR_VERSION=5 MINOR_VERSION=1 RELEASE_VERSION=2 -EXTRA_VERSION="RC3-dev" +EXTRA_VERSION="" VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" dnl Define where extension directories are located in the configure context http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.343&r2=1.2027.2.344&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.343 php-src/NEWS:1.2027.2.344 --- php-src/NEWS:1.2027.2.343 Tue Jan 10 16:14:16 2006 +++ php-src/NEWS Wed Jan 11 14:19:13 2006 @@ -1,52 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -05 Jan 2006, PHP 5.1.2RC2 -- Upgraded pear to version 1.4.6. (Greg) -- Added constants for libxslt and libexslt versions: LIBXSLT_VERSION, - LIBXSLT_DOTTED_VERSION, LIBEXSLT_VERSION and LIBEXSLT_DOTTED_VERSION. (Pierre) -- Fixed possible crash in apache_getenv()/apache_setenv() on invalid parameters. - (Ilia) -- Changed errors to warnings in imagecolormatch(). (Pierre) -- Fixed segfault/leak in imagecolormatch(). (Pierre) -- Fixed small leak in mysqli_stmt_fetch() when bound variable was empty string. - (Andrey) -- Fixed bug #35916 (Duplicate calls to stream_bucket_append() lead to a crash). - (Ilia) -- Fixed bug #35908 (curl extension uses undefined GCRY_THREAD_OPTIONS_USER). - (Ilia) -- Fixed bug #35907 (PDO_OCI uses hardcoded lib path $ORACLE_HOME/lib). (Tony) -- Fixed bug #35887 (wddx_deserialize not parsing dateTime fields properly). - (Derick) -- Fixed bug #35885 (strtotime("NOW") no longer works). (Derick) -- Fixed bug #35821 (array_map() segfaults when exception is throwed from - the callback). (Tony) -- Fixed bug #35817 (unpack() does not decode odd number of hexadecimal values). - (Ilia) -- Fixed bug #35797 (segfault on PDOStatement::execute() with - zend.ze1_compatibility_mode = On). (Tony, Ilia) -- Fixed bug #35781 (stream_filter_append() can cause segfault). (Tony) -- Fixed bug #35759 (mysqli_stmt_bind_result() makes huge allocation when - column empty). (Andrey) -- Fixed bug #35751 (using date with a timestamp makes httpd segfault). (Derick) -- Fixed bug #35669 (imap_mail_compose() crashes with - multipart-multiboundary-email). (Ilia) -- Fixed bug #35517 (mysql_stmt_fetch returns NULL on data truncation). (Georg) -- Fixed bug #35377 (PDO_SQLITE: undefined reference to "fdatasync"). - (Nuno, Jani) -- Fixed bug #35288 (iconv() function defined as libiconv()). (Nuno) -- Fixed bug #33789 (Many Problems with SunFuncs). (Derick) -- Fixed bug #33671 (sun_rise and sun_set don't return a GMT timestamp if one - passes an offset). (Derick) -- Fixed bug #32820 (date_sunrise and date_sunset don't handle GMT offset - well). (Derick) -- Fixed bug #30937 (date_sunrise() & date_sunset() don't handle endless - day/night at high latitudes). (Derick) -- Fixed bug #29955 (mb_strtoupper() / lower() broken with Turkish encoding). - (Rui) -- Fixed bug #28899 (mb_substr() and substr() behave differently when - "mbstring.func_overload" is enabled). (Rui) - -22 Dec 2005, PHP 5.1.2RC1 +12 Jan 2006, PHP 5.1.2 - Updated libsqlite in ext/sqlite to 2.8.17. (Ilia) - Updated libsqlite in ext/pdo_sqlite to 3.2.8. (Ilia) - Updated to libxml2-2.6.22 and libxslt-1.1.15 in the win32 bundle. (Rob) @@ -69,6 +23,15 @@ . Fixed isset/empty/(bool) behavior . Fixed iterator edge cases . Added methods getNamespaces(), getDocNamespaces() +- Upgraded pear to version 1.4.6. (Greg) +- Added constants for libxslt and libexslt versions: LIBXSLT_VERSION, + LIBXSLT_DOTTED_VERSION, LIBEXSLT_VERSION and LIBEXSLT_DOTTED_VERSION. (Pierre) +- Fixed possible crash in apache_getenv()/apache_setenv() on invalid parameters. + (Ilia) +- Changed errors to warnings in imagecolormatch(). (Pierre) +- Fixed segfault/leak in imagecolormatch(). (Pierre) +- Fixed small leak in mysqli_stmt_fetch() when bound variable was empty string. + (Andrey) - Fixed prepared statement name conflict handling in PDO_PGSQL. (Thies, Ilia) - Fixed memory corruption when PDO::FETCH_LAZY mode is being used. (Ilia) - Fixed possible leaks in imagecreatefromstring() with invalid data. (Pierre) @@ -79,7 +42,25 @@ - Fixed many bugs in OCI8. (Tony) - Fixed crash and leak in mysqli when using 4.1.x client libraries and connecting to 5.x server. (Andrey) +- Fixed bug #35916 (Duplicate calls to stream_bucket_append() lead to a crash). + (Ilia) +- Fixed bug #35908 (curl extension uses undefined GCRY_THREAD_OPTIONS_USER). + (Ilia) +- Fixed bug #35907 (PDO_OCI uses hardcoded lib path $ORACLE_HOME/lib). (Tony) +- Fixed bug #35887 (wddx_deserialize not parsing dateTime fields properly). + (Derick) +- Fixed bug #35885 (strtotime("NOW") no longer works). (Derick) +- Fixed bug #35821 (array_map() segfaults when exception is throwed from + the callback). (Tony) +- Fixed bug #35817 (unpack() does not decode odd number of hexadecimal values). + (Ilia) +- Fixed bug #35797 (segfault on PDOStatement::execute() with + zend.ze1_compatibility_mode = On). (Tony, Ilia) +- Fixed bug #35781 (stream_filter_append() can cause segfault). (Tony) - Fixed bug #35760 (sybase_ct doesn't compile on Solaris using old gcc). (Tony) +- Fixed bug #35759 (mysqli_stmt_bind_result() makes huge allocation when + column empty). (Andrey) +- Fixed bug #35751 (using date with a timestamp makes httpd segfault). (Derick) - Fixed bug #35740 (memory leak when including a directory). (Tony) - Fixed bug #35730 (ext/mssql + freetds: Use correct character encoding and allow setting it). (Frank) @@ -95,6 +76,8 @@ only). (Tony) - Fixed bug #35690 (pack() tries to allocate huge memory block when packing float values to strings). (Tony) +- Fixed bug #35669 (imap_mail_compose() crashes with + multipart-multiboundary-email). (Ilia) - Fixed bug #35660 (AIX TZ variable format not understood, yields UTC timezone). (Derick) - Fixed bug #35655 (whitespace following end of heredoc is lost). (Ilia) @@ -113,6 +96,7 @@ that extends PDO). (Tony) - Fixed bug #35539 (typo in error message for ErrorException). (Tony) - FIxed bug #35536 (mysql_field_type() doesn't handle NEWDECIMAL). (Tony) +- Fixed bug #35517 (mysql_stmt_fetch returns NULL on data truncation). (Georg) - Fixed bug #35509 (string constant as array key has different behavior inside object). (Dmitry) - Fixed bug #35508 (PDO fails when unknown fetch mode specified). (Tony) @@ -142,7 +126,10 @@ - Fixed bug #35393 (changing static protected members from outside the class, one more reference issue). (Dmitry) - Fixed bug #35381 (ssl library is not initialized properly). (Alan) +- Fixed bug #35377 (PDO_SQLITE: undefined reference to "fdatasync"). + (Nuno, Jani) - Fixed bug #35373 (HP-UX "alias not allowed in this configuration"). (Dmitry) +- Fixed bug #35288 (iconv() function defined as libiconv()). (Nuno) - Fixed bug #35103 (mysqli handles bad unsigned (big)int incorrectly).(Andrey) - Fixed bug #35062 (socket_read() produces warnings on non blocking sockets). (Nuno, Ilia) @@ -151,10 +138,21 @@ - Fixed bug #34429 (Output buffering cannot be turned off with FastCGI). (Dmitry, Ilya) - Fixed bug #34359 (Possible crash inside fopen http wrapper). (Ilia,Sara,Nuno) +- Fixed bug #33789 (Many Problems with SunFuncs). (Derick) +- Fixed bug #33671 (sun_rise and sun_set don't return a GMT timestamp if one + passes an offset). (Derick) +- Fixed bug #32820 (date_sunrise and date_sunset don't handle GMT offset + well). (Derick) - Fixed bug #31347 (is_dir and is_file (incorrectly) return true for any string greater then 255 characters). (Nuno,Ilia) +- Fixed bug #30937 (date_sunrise() & date_sunset() don't handle endless + day/night at high latitudes). (Derick) - Fixed bug #30760 (Remove MessageBox on win32 for E_CORE errors if display_startup_error is off). (Ilia) +- Fixed bug #29955 (mb_strtoupper() / lower() broken with Turkish encoding). + (Rui) +- Fixed bug #28899 (mb_substr() and substr() behave differently when + "mbstring.func_overload" is enabled). (Rui) - Fixed bug #27678 (number_format() crashes with large numbers). (Marcus) 28 Nov 2005, PHP 5.1.1 http://cvs.php.net/viewcvs.cgi/php-src/main/php_version.h?r1=1.112.2.23&r2=1.112.2.24&diff_format=u Index: php-src/main/php_version.h diff -u php-src/main/php_version.h:1.112.2.23 php-src/main/php_version.h:1.112.2.24 --- php-src/main/php_version.h:1.112.2.23 Thu Jan 5 21:36:05 2006 +++ php-src/main/php_version.h Wed Jan 11 14:19:14 2006 @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 1 #define PHP_RELEASE_VERSION 2 -#define PHP_EXTRA_VERSION "RC3-dev" -#define PHP_VERSION "5.1.2RC3-dev" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "5.1.2"
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php