derick          Thu Jan 12 17:52:29 2006 UTC

  Modified files:              (Branch: PHP_4_4)
    /php-src/main       php_version.h 
    /php-src    configure.in NEWS 
  Log:
  - Go with 4.4.2.
  
  
http://cvs.php.net/viewcvs.cgi/php-src/main/php_version.h?r1=1.66.2.81.2.15&r2=1.66.2.81.2.16&diff_format=u
Index: php-src/main/php_version.h
diff -u php-src/main/php_version.h:1.66.2.81.2.15 
php-src/main/php_version.h:1.66.2.81.2.16
--- php-src/main/php_version.h:1.66.2.81.2.15   Thu Jan  5 08:16:37 2006
+++ php-src/main/php_version.h  Thu Jan 12 17:52:28 2006
@@ -3,5 +3,5 @@
 #define PHP_MAJOR_VERSION 4
 #define PHP_MINOR_VERSION 4
 #define PHP_RELEASE_VERSION 2
-#define PHP_EXTRA_VERSION "RC3-dev"
-#define PHP_VERSION "4.4.2RC3-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "4.4.2"
http://cvs.php.net/viewcvs.cgi/php-src/configure.in?r1=1.396.2.164.2.18&r2=1.396.2.164.2.19&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.396.2.164.2.18 
php-src/configure.in:1.396.2.164.2.19
--- php-src/configure.in:1.396.2.164.2.18       Thu Jan  5 08:16:37 2006
+++ php-src/configure.in        Thu Jan 12 17:52:29 2006
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.396.2.164.2.18 2006/01/05 08:16:37 derick Exp $ 
-*- sh -*-
+dnl ## $Id: configure.in,v 1.396.2.164.2.19 2006/01/12 17:52:29 derick Exp $ 
-*- sh -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -41,7 +41,7 @@
 MAJOR_VERSION=4
 MINOR_VERSION=4
 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.1247.2.920.2.107&r2=1.1247.2.920.2.108&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.920.2.107 php-src/NEWS:1.1247.2.920.2.108
--- php-src/NEWS:1.1247.2.920.2.107     Thu Jan  5 08:16:37 2006
+++ php-src/NEWS        Thu Jan 12 17:52:29 2006
@@ -1,11 +1,12 @@
 PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Jan 2005, Version 4.4.0
-
-
-05 Jan 2006, Version 4.4.2RC2
+13 Jan 2005, Version 4.4.2
+- Added missing safe_mode/open_basedir checks into cURL extension. (Ilia)
+- Backported missing imap_mailcompose() fixes from PHP 5.x. (Ilia)
 - Prevent header injection by limiting each header to a single line. (Ilia)
 - Fixed possible XSS inside error reporting functionality. (Ilia)
+- Fixed Apache 2 regression with sub-request handling on non-linux systems.
+  (Ilia, Tony)
 - Fixed bug #35817 (unpack() does not decode odd number of hexadecimal values).
   (Ilia)
 - Fixed bug #35735 ($EGREP not defined in configure). (Jani)
@@ -23,23 +24,6 @@
   properly). (Ilia)
 - Fixed bug #35341 (Fix for bug #33760 breaks build with older curl). (Tony)
 - Fixed bug #35278 (Multiple virtual() calls crash Apache 2 php module). (Ilia)
-- Fixed bug #35062 (socket_read() produces warnings on non blocking sockets).
-  (Nuno, Ilia)
-- Fixed bug #34359 (Possible crash inside fopen http wrapper). (Ilia,Nuno,Sara)
-- Fixed bug #33523 (Memory leak in xmlrpc_encode_request()). (Ilia)
-- Fixed bug #33153 (crash in mssql_next result). (Frank)
-- Fixed bug #32009 (crash when mssql_bind() is called more than once). (Frank)
-- Fixed bug #33963 (mssql_bind() fails on input parameters). (Frank)
-- Fixed bug #33201 (Crash when fetching some data types). (Frank)
-- Fixed bug #30760 (Remove MessageBox on win32 for E_CORE errors if 
-  display_startup_error is off). (Ilia)
-- Fixed bug #27678 (number_format() crashes with large numbers). (Marcus)
-
-18 Nov 2005, Version 4.4.2RC1
-- Added missing safe_mode/open_basedir checks into cURL extension. (Ilia)
-- Backported missing imap_mailcompose() fixes from PHP 5.x. (Ilia)
-- Fixed Apache 2 regression with sub-request handling on non-linux systems.
-  (Ilia, Tony)
 - Fixed bug #35257 (Calling ob_flush after creating an ob callback causes 
   segfault). (Tony)
 - Fixed bug #35079 (stream_set_blocking(true) toggles, not enables 
@@ -47,6 +31,8 @@
 - Fixed bug #35078 (configure does not find ldap_start_tls_s). (Jani)
 - Fixed bug #35071 (Wrong fopen mode used in GD safe-mode checks). (Jani)
 - Fixed bug #35067, #35063 (key(),current() need to work by reference). (Ilia)
+- Fixed bug #35062 (socket_read() produces warnings on non blocking sockets).
+  (Nuno, Ilia)
 - Fixed bug #35059 (Apache2 crash with mod_rewrite). (Ilia)
 - Fixed bug #35009 (ZTS: Persistent resource destruct crashes when extension
   is compiled as shared). (Dmitry)
@@ -55,12 +41,21 @@
 - Fixed bug #34851 (SO_RECVTIMEO and SO_SNDTIMEO socket options expect integer
   parameter on Windows). (Mike)
 - Fixed bug #34830 (the 5th argument of mb_send_mail does not work). (Rui)
+- Fixed bug #34359 (Possible crash inside fopen http wrapper). (Ilia,Nuno,Sara)
+- Fixed bug #33963 (mssql_bind() fails on input parameters). (Frank)
 - Fixed bug #33760 (cURL needs CRYPTO_callback functions to prevent locking).
   (Mike)
 - Fixed bug #33720 (mb_encode_mimeheader does not work for multibyte chars).
   (Rui)
-- Fixed bug #31971 (ftp_login fails on some SSL servers).
+- Fixed bug #33523 (Memory leak in xmlrpc_encode_request()). (Ilia)
+- Fixed bug #33201 (Crash when fetching some data types). (Frank)
   (frantisek at augusztin dot com)
+- Fixed bug #33153 (crash in mssql_next result). (Frank)
+- Fixed bug #32009 (crash when mssql_bind() is called more than once). (Frank)
+- Fixed bug #31971 (ftp_login fails on some SSL servers).
+- Fixed bug #30760 (Remove MessageBox on win32 for E_CORE errors if 
+  display_startup_error is off). (Ilia)
+- Fixed bug #27678 (number_format() crashes with large numbers). (Marcus)
 
 31 Oct 2005, Version 4.4.1
 - Added missing safe_mode checks for image* functions and cURL. (Ilia)

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to