summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-07-31 15:04:55 +0000
committerSVN Migration <svn@php.net>2006-07-31 15:04:55 +0000
commit9ad46b43db223eaadaa49a70136162f4154278f0 (patch)
tree9812505849a122d6879d033852b4135dc3714281
parent3072d1bb2b85e332337f391c8ff71e270e639edc (diff)
downloadphp-git-php-4.4.3.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_4_4_3'.php-4.4.3
-rw-r--r--NEWS27
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 16 insertions, 17 deletions
diff --git a/NEWS b/NEWS
index db6dcab546..be24516a8f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,25 +1,24 @@
PHP 4 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Jun 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 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)
-
-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)
diff --git a/configure.in b/configure.in
index 7d9772a1a0..33638b2346 100644
--- a/configure.in
+++ b/configure.in
@@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h)
MAJOR_VERSION=4
MINOR_VERSION=4
RELEASE_VERSION=3
-EXTRA_VERSION="RC2-dev"
+EXTRA_VERSION=""
VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION"
dnl Define where extension directories are located in the configure context
diff --git a/main/php_version.h b/main/php_version.h
index 8c5b61c13d..d2e53a4002 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,5 +3,5 @@
#define PHP_MAJOR_VERSION 4
#define PHP_MINOR_VERSION 4
#define PHP_RELEASE_VERSION 3
-#define PHP_EXTRA_VERSION "RC2-dev"
-#define PHP_VERSION "4.4.3RC2-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "4.4.3"