]> granicus.if.org Git - php/commitdiff
- Go with 4.4.3.
authorDerick Rethans <derick@php.net>
Mon, 31 Jul 2006 15:04:54 +0000 (15:04 +0000)
committerDerick Rethans <derick@php.net>
Mon, 31 Jul 2006 15:04:54 +0000 (15:04 +0000)
NEWS
configure.in
main/php_version.h

diff --git a/NEWS b/NEWS
index 59b81d63616cc99642daa5bdc38e0109a71d2d44..be24516a8f061db5921bb0242a9e69bde71aa013 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,32 +1,24 @@
 PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2006, Version 4.4.3
-- Fixed bug #38183 (disable_classes=Foobar causes disabled class to be
-  called Foo). (Jani)
-       
-04 Jul 2006, Version 4.4.3RC2
+03 Aug 2006, Version 4.4.3
+- Added control character checks for cURL extension's open_basedir/safe_mode
+  checks. (Ilia)
+- Added overflow checks to wordwrap() function. (Ilia)
+- Added a check for special characters in the session name. (Ilia)
 - Improved safe_mode check for the error_log() function. (Ilia)
+- Updated PCRE to version 6.6. (Andrei)
 - Fixed handling of extremely long paths inside tempnam() function. (Ilia)
 - Fixed XSS inside phpinfo() with long inputs. (Ilia)
-- Fixed bug #38112 (corrupted gif segfaults) (Pierre)
+- Fixed a possible buffer overflow inside create_named_pipe() for Win32 systems
+  in libmysql.c. (Ilia)
 - Fixed bug #37720 (merge_php_config scrambles values). (Mike,
   pumuckel at metropolis dot de)
 - Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). (Ilia)
-- Fixed bug #29538 (number_format and problem with 0). (Matthew Wilmas)
-
-21 May 2006, Version 4.4.3RC1
-- Added control character checks for cURL extension's open_basedir/safe_mode
-  checks. (Ilia)
-- Fixed a possible buffer overflow inside create_named_pipe() for Win32 systems
-  in libmysql.c. (Ilia)
-- Updated PCRE to version 6.6. (Andrei)
-- Added overflow checks to wordwrap() function. (Ilia)
-- Added a check for special characters in the session name. (Ilia)
-- Fixed bug #37510 session_regenerate_id changes session_id() even on failure).
+- Fixed bug #37510 (session_regenerate_id changes session_id() even on failure).
   (Hannes)
-- Fixed bug #34360 (bad gif size) (Pierre)
-- Fixed bug #37348 (make PEAR install ignore open_basedir). (Ilia)
-- Fixed bug #37346 (invalid colormap format) (Pierre)
+- Fixed bug #37360 (Memory errors with a corrupt GIF file) (Pierre)
+- Fixed bug #37348 (Make PEAR install ignore open_basedir). (Ilia)
+- Fixed bug #37346 (Crashes when using an invalid colormap format). (Pierre)
 - Fixed bug #37162 (wddx does not build as a shared extension).  
   (jdolecek at NetBSD dot org, Ilia)
 - Fixed bug #37046 (foreach breaks static scope). (Dmitry)
index c9be1ecff937a4cfa24f9f5a9147c9b4437bad91..33638b234635fbc0373c810a69c1ef90f3232bdc 100644 (file)
@@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h)
 MAJOR_VERSION=4
 MINOR_VERSION=4
 RELEASE_VERSION=3
-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
index 22015b38c51223f66fadbaf21f4cea7d354b762d..d2e53a40023b1547e667f01802ea7c61eb757d73 100644 (file)
@@ -3,5 +3,5 @@
 #define PHP_MAJOR_VERSION 4
 #define PHP_MINOR_VERSION 4
 #define PHP_RELEASE_VERSION 3
-#define PHP_EXTRA_VERSION "RC3-dev"
-#define PHP_VERSION "4.4.3RC3-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "4.4.3"