History log of /php-src/NEWS (Results 7251 – 7275 of 15457)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 5fe078ab 20-Jun-2015 Nikita Popov

Fixed bug #69892

# cc8f2b1b 20-Jun-2015 Kalle Sommer Nielsen

Add missing NEWS entries

# 9fa70dbd 20-Jun-2015 Nikita Popov

Fixed bug #69889

There is one case that requires further discussion:

$foo = "test";
var_dump($foo[0.0] ?? "default");
var_dump(isset($foo[0.0]) ? $foo[0.0] : "default");

Fixed bug #69889

There is one case that requires further discussion:

$foo = "test";
var_dump($foo[0.0] ?? "default");
var_dump(isset($foo[0.0]) ? $foo[0.0] : "default");

Here the former will currently return "t", while the latter also
returns "t" and additionally throws a notice.

I think we need to revisit the behavior of invalid types for string
offset access in PHP 7, as currently there is some mismatch between
what isset() does and what the access itself supports.

show more ...

# 257054e8 20-Jun-2015 Nikita Popov

Fix bug #62922

Off by one error...

# f801eb9d 20-Jun-2015 Anatol Belski

updated NEWS

# d8148069 19-Jun-2015 Anatol Belski

updated NEWS

# 076a6452 18-Jun-2015 Anatol Belski

update NEWS

# 962fe014 18-Jun-2015 Anatol Belski

update NEWS

# c0119ca7 18-Jun-2015 Anatol Belski

updated NEWS

# d54e6f01 18-Jun-2015 Xinchen Hui

Merge branch 'master' of git.php.net:php-src


# 811816dc 18-Jun-2015 Lior Kaplan

Add CVE to bugs #69545, #69646 and #69667

# 991b2cc3 18-Jun-2015 Lior Kaplan

Add CVE to bugs #69545, #69646 and #69667

# 7cde797e 18-Jun-2015 Xinchen Hui

Update NEWS

# 3697f022 17-Jun-2015 Christoph M. Becker

updated NEWS

# e4917bc7 17-Jun-2015 Christoph M. Becker

updated NEWS

# 61d58f2d 17-Jun-2015 Christoph M. Becker

updated NEWS

# 6ae375db 16-Jun-2015 Dmitry Stogov

Fixed bug #69845 (ArrayObject with ARRAY_AS_PROPS broken)

# 33e71d5c 15-Jun-2015 Dmitry Stogov

Fixed bug #69802 (Reflection on Closure::__invoke borks type hint class name)

# 0a21a0c7 15-Jun-2015 Dmitry Stogov

Removed opcache.load_comments configuration directive. Now doc comments loading costs nothing and always enabled.

# b7e477a8 14-Jun-2015 Xinchen Hui

Fixed bug #69831 (Segmentation fault in curl_getinfo)

# dc37d3e8 14-Jun-2015 Xinchen Hui

Fixed Bug #69823 (PHP 7.0.0alpha1 segmentation fault when exactly 33 extensions are loaded)

# d96dda8d 13-Jun-2015 Xinchen Hui

Fixed Bug #69761 (Serialization of anonymous classes should be prevented)

And also cleanup anonymous class compiling, it make no sense prefix a
namespace to anonymous class name. and it

Fixed Bug #69761 (Serialization of anonymous classes should be prevented)

And also cleanup anonymous class compiling, it make no sense prefix a
namespace to anonymous class name. and it is always lowcased and
interned string.

show more ...

# 49a8f801 12-Jun-2015 Xinchen Hui

Fixed bug #69805 (null ptr deref and seg fault in zend_resolve_class_name)

# 3bb1a4ff 12-Jun-2015 Matteo Beccati

Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
Fix bug #69344 (PDO PgSQL Incorrect binding numeric array with gaps)
Fix bug #69362 (PDO-pgsql fails to connect if password contain

Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
Fix bug #69344 (PDO PgSQL Incorrect binding numeric array with gaps)
Fix bug #69362 (PDO-pgsql fails to connect if password contains a leading single quote)
Fixed bug #61574 - No MSI

Conflicts:
ext/pdo_pgsql/pgsql_driver.c

show more ...


# b60efdce 11-Jun-2015 Matteo Beccati

Fix bug #69344 (PDO PgSQL Incorrect binding numeric array with gaps)

1...<<291292293294295296297298299300>>...619