summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2015-08-06 09:55:57 +0200
committerFerenc Kovacs <tyrael@php.net>2015-08-06 09:55:57 +0200
commitf2722bdbc60403300a033ee8091a2da31f7c90c1 (patch)
tree7c5302171a695dbead4d75cd240d6cbd760dc8ea
parentf14dc0519c8d87e8fa18920a86bf8dee42e2b502 (diff)
downloadphp-git-PHP-5.6.12.tar.gz
-rw-r--r--NEWS30
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 32 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 1d26910394..d151f0dfa4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,16 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-23 Jul 2015, PHP 5.6.12RC1
+06 Aug 2015, PHP 5.6.12
- Core:
. Fixed bug #70012 (Exception lost with nested finally block). (Laruence)
+ . Fixed bug #70002 (TS issues with temporary dir handling). (Anatol)
+ . Fixed bug #69793 (Remotely triggerable stack exhaustion via recursive
+ method calls). (Stas)
+ . Fixed bug #69892 (Different arrays compare indentical due to integer key
+ truncation). (Nikita)
+ . Fixed bug #70121 (unserialize() could lead to unexpected methods execution
+ / NULL pointer deref). (Stas)
- CLI server:
. Fixed bug #69655 (php -S changes MKCALENDAR request method to MKCOL). (cmb)
@@ -30,6 +37,27 @@ PHP NEWS
- OpenSSL:
. Fixed bug #69882 (OpenSSL error “key values mismatch” after
openssl_pkcs12_read with extra cert) (Tomasz Sawicki)
+ . Fixed bug #70014 (openssl_random_pseudo_bytes() is not cryptographically
+ secure). (Stas)
+
+- Phar:
+ . Improved fix for bug #69441. (Anatol Belski)
+ . Fixed bug #70019 (Files extracted from archive may be placed outside of
+ destination directory). (Anatol Belski)
+
+- SOAP:
+ . Fixed bug #70081 (SoapClient info leak / null pointer dereference via
+ multiple type confusions). (Stas)
+
+- SPL:
+ . Fixed bug #70068 (Dangling pointer in the unserialization of ArrayObject
+ items). (sean.heelan)
+ . Fixed bug #70166 (Use After Free Vulnerability in unserialize() with
+ SPLArrayObject). (taoguangchen at icloud dot com)
+ . Fixed bug #70168 (Use After Free Vulnerability in unserialize() with
+ SplObjectStorage). (taoguangchen at icloud dot com)
+ . Fixed bug #70169 (Use After Free Vulnerability in unserialize() with
+ SplDoublyLinkedList). (taoguangchen at icloud dot com)
- Standard:
. Fixed bug #70096 (Repeated iptcembed() adds superfluous FF bytes). (cmb)
diff --git a/configure.in b/configure.in
index e6b4830624..e1cd71a47d 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=6
PHP_RELEASE_VERSION=12
-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 a8f1fa721d..3927192189 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 6
#define PHP_RELEASE_VERSION 12
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.6.12RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.6.12"
#define PHP_VERSION_ID 50612