Skip to content

Commit 6b2b195

Browse files
committed
This wil be PHP 5.3.16
1 parent bcc87ba commit 6b2b195

File tree

3 files changed

+8
-67
lines changed

3 files changed

+8
-67
lines changed

NEWS

Lines changed: 4 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,10 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2012, PHP 5.3.15
4-
- Zend Engine:
5-
. Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that
6-
includes a semi-colon). (Pierrick)
7-
8-
- COM:
9-
. Fixed bug #62146 com_dotnet cannot be built shared. (Johannes)
10-
11-
- Core:
12-
. Fixed potential overflow in _php_stream_scandir. (Jason Powell,
13-
Stas)
14-
. Fixed bug #62432 (ReflectionMethod random corrupt memory on high
15-
concurrent). (Johannes)
16-
. Fixed bug #62443 (Crypt SHA256/512 Segfaults With Malformed
17-
Salt). (Anthony Ferrara)
18-
19-
- Fileinfo:
20-
. Fixed magic file regex support. (Felipe)
21-
22-
- FPM:
23-
. Fixed bug #61045 (fpm don't send error log to fastcgi clients). (fat)
24-
. Fixed bug #61835 (php-fpm is not allowed to run as root). (fat)
25-
. Fixed bug #61295 (php-fpm should not fail with commented 'user'
26-
for non-root start). (fat)
27-
. Fixed bug #61026 (FPM pools can listen on the same address). (fat)
28-
. Fixed bug #62033 (php-fpm exits with status 0 on some failures to start).
29-
(fat)
30-
. Fixed bug #62153 (when using unix sockets, multiples FPM instances
31-
can be launched without errors). (fat)
32-
. Fixed bug #62160 (Add process.priority to set nice(2) priorities). (fat)
33-
. Fixed bug #61218 (FPM drops connection while receiving some binary values
34-
in FastCGI requests). (fat)
35-
. Fixed bug #62205 (php-fpm segfaults (null passed to strstr)). (fat)
3+
?? ??? 2012, PHP 5.3.16
364

37-
- Intl:
38-
. Fixed bug #62083 (grapheme_extract() memory leaks). (Gustavo)
39-
. Fixed bug #62081 (IntlDateFormatter constructor leaks memory when called
40-
twice). (Gustavo)
41-
. Fixed bug #62070 (Collator::getSortKey() returns garbage). (Gustavo)
42-
. Fixed bug #62017 (datefmt_create with incorrectly encoded timezone leaks
43-
pattern). (Gustavo)
44-
. Fixed bug #60785 (memory leak in IntlDateFormatter constructor). (Gustavo)
45-
46-
- JSON:
47-
. Improved error handling. (Nikita Popov)
48-
49-
- Phar:
50-
. Fixed bug #62227 (Invalid phar stream path causes crash). (Felipe)
51-
52-
- Reflection:
53-
. Fixed bug #62384 (Attempting to invoke a Closure more than once causes
54-
segfault). (Felipe)
55-
. Fixed bug #62202 (ReflectionParameter::getDefaultValue() memory leaks
56-
with constant). (Laruence)
57-
58-
- SPL:
59-
. Fixed bug #62262 (RecursiveArrayIterator does not implement Countable).
60-
(Nikita Popov)
61-
62-
- XML Writer:
63-
. Fixed bug #62064 (memory leak in the XML Writer module).
64-
(jean-pierre dot lozi at lip6 dot fr)
65-
- Zip:
66-
. Upgraded libzip to 0.10.1 (Anatoliy)
5+
?? ??? 2012, PHP 5.3.15
6+
(NEWS will be merged after release by johannes. Formerging changes to the
7+
PHP-5.3.15 release branch talk to johannes)
678

689
14 Jun 2012, PHP 5.3.14
6910

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h)
4141

4242
PHP_MAJOR_VERSION=5
4343
PHP_MINOR_VERSION=3
44-
PHP_RELEASE_VERSION=15
44+
PHP_RELEASE_VERSION=16
4545
PHP_EXTRA_VERSION="-dev"
4646
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
4747
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`

main/php_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* edit configure.in to change version number */
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 3
5-
#define PHP_RELEASE_VERSION 15
5+
#define PHP_RELEASE_VERSION 16
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.3.15-dev"
8-
#define PHP_VERSION_ID 50315
7+
#define PHP_VERSION "5.3.16-dev"
8+
#define PHP_VERSION_ID 50316

0 commit comments

Comments
 (0)