summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2015-02-18 11:39:22 +0100
committerJulien Pauli <jpauli@php.net>2015-02-18 11:39:22 +0100
commit4a9227ddee86a316811acc71ed61190f11483174 (patch)
tree521896039b1bc19216cf660b3b2e648f6d9d5306
parent2b4e1881b8b656297ffe91dedaf6b9d34585961e (diff)
downloadphp-git-4a9227ddee86a316811acc71ed61190f11483174.tar.gz
5.5.22
-rw-r--r--NEWS11
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 13 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 514e2b7d30..1ec7fcfdda 100644
--- a/NEWS
+++ b/NEWS
@@ -1,12 +1,17 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-5 Feb 2015, PHP 5.5.22RC1
+19 Feb 2015, PHP 5.5.22
- Core:
. Fixed bug #67068 (getClosure returns somethings that's not a closure).
(Danack at basereality dot com)
. Fixed bug #68925 (Mitigation for CVE-2015-0235 – GHOST: glibc gethostbyname
buffer overflow). (Stas)
+ . Fixed bug #68942 (Use after free vulnerability in unserialize() with
+ DateTimeZone). (CVE-2015-0273) (Stas)
+ . Added NULL byte protection to exec, system and passthru. (Yasuo)
+ . Removed support for multi-line headers, as the are deprecated by RFC 7230.
+ (Stas)
- Date:
. Fixed bug #45081 (strtotime incorrectly interprets SGT time zone). (Derick)
@@ -14,6 +19,10 @@ PHP NEWS
- Dba:
. Fixed bug #68711 (useless comparisons). (bugreports at internot dot info)
+- Enchant:
+ . Fixed bug #6855 (heap buffer overflow in enchant_broker_request_dict()).
+ (Antony)
+
- Fileinfo:
. Fixed bug #68827 (Double free with disabled ZMM). (Joshua Rogers)
diff --git a/configure.in b/configure.in
index 80a983a45d..248558e6a9 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=5
PHP_RELEASE_VERSION=22
-PHP_EXTRA_VERSION="RC1"
+PHP_EXTRA_VERSION=""
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index 3da57dd509..b962d60475 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
#define PHP_RELEASE_VERSION 22
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.5.22RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.5.22"
#define PHP_VERSION_ID 50522