History log of /PHP-7.1/NEWS (Results 51 – 75 of 10129)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# b3312423 16-Oct-2018 Christoph M. Becker

Add support for getting SKIP_TAGSTART and SKIP_WHITE options

When `XML_OPTION_SKIP_TAGSTART` and `XML_OPTION_SKIP_WHITE` had been
introduced[1], it had been overlooked to also support th

Add support for getting SKIP_TAGSTART and SKIP_WHITE options

When `XML_OPTION_SKIP_TAGSTART` and `XML_OPTION_SKIP_WHITE` had been
introduced[1], it had been overlooked to also support them for
`xml_parser_get_option()`. We catch up on that.

[1] <http://git.php.net/?p=php-src.git;a=commit;h=b57dc275950b228f2399990471c4f22b7d154c6c>

show more ...


# 7f6387b5 13-Oct-2018 Peter Kokot

Trim trailing whitespace in source code files


Revision tags: php-7.1.23, php-7.2.11
# 2845f859 09-Oct-2018 Christoph M. Becker

Fix #30875: xml_parse_into_struct() does not resolve entities

Setting up an empty default handler is not only useless, but actually
harmful, since internal entity-references are not reso

Fix #30875: xml_parse_into_struct() does not resolve entities

Setting up an empty default handler is not only useless, but actually
harmful, since internal entity-references are not resolved anymore.
From the libexpat docs[1]:

| Setting the handler with this call has the side effect of
| turning off expansion of references to internally defined general
| entities. Instead these references are passed to the default
| handler.

[1] <https://www.xml.com/pub/1999/09/expat/reference.html#setdefhandler>

show more ...


Revision tags: php-7.3.0RC3
# f42d7bdd 06-Oct-2018 Pierrick Charron

Fixed bug #76965 INI_SCANNER_RAW doesn't strip trailing whitespace


# 47b89bc5 02-Oct-2018 stodorovic

Fix #76954: apache_response_headers removes last character from header name


Revision tags: php-7.1.23RC1, php-7.2.11RC1, php-7.3.0RC2, php-5.6.38, php-7.1.22, php-7.3.0RC1, php-7.2.10, php-7.0.32, php-7.1.22RC1, php-7.3.0beta3, php-7.2.10RC1, php-7.1.21, php-7.2.9, php-7.3.0beta2, php-7.1.21RC1, php-7.3.0beta1, php-7.2.9RC1, php-5.6.37, php-7.1.20, php-7.3.0alpha4, php-7.0.31, php-7.2.8
# c097acd5 11-Jul-2018 Adam Saponara

Fix #75851: Year component overflow with date formats "c", "o", "r" and "y"


# aaf4cc05 05-Oct-2018 Anatol Belski

[ci skip] Update NEWS


# bb4a2e8b 04-Oct-2018 Manuel Mausz

Fix #76972: FTP data truncation due to forceful ssl socket shutdown

Do a correct bidirectional shutdown instead


# abfda3de 03-Oct-2018 Anatol Belski

Update NEWS [ci skip]


# 83e2b9e2 28-Sep-2018 Nikita Popov

Fixed bug #76946


# 69c1b619 28-Sep-2018 Sara Golemon

Bump versions for 7.1.24-dev


# 45cdcb2d 28-Sep-2018 Nikita Popov

Fixed bug #76846


# 9cbe1283 22-Sep-2018 Christoph M. Becker

Fix #66828: iconv_mime_encode Q-encoding longer than it should be

Before the fix for bug 48289 has been applied, the algorithm to
construct a Q-encoded-word has been optimistic, i.e. try

Fix #66828: iconv_mime_encode Q-encoding longer than it should be

Before the fix for bug 48289 has been applied, the algorithm to
construct a Q-encoded-word has been optimistic, i.e. try to encode as
many bytes that *may* fit in the remaining space, calculate the actual
length of the Q-encoded word, and if it's too long, try again with a
reduced size. However, the fix for the mentioned bug replaced this by
a pessimistic algorithm, which always terminates[1] the for loop[2]
during the first iteration (which renders the following 3 lines as dead
code), and as such easily produces unnecessarily short encoded-words.
Instead the proper fix for the bug would have been to make sure that
`out_size` is always decremented, if the space isn't sufficient for the
encoded-word.

[1] <https://github.com/php/php-src/blob/php-7.3.0beta3/ext/iconv/iconv.c#L1421>
[2] <https://github.com/php/php-src/blob/php-7.3.0beta3/ext/iconv/iconv.c#L1360>

show more ...


# 294fb83e 19-Sep-2018 Nikita Popov

Fixed bug #76901

get_method() may modify the object pointer passed to it if method
forwarding is used. In this case we do not want to modify the
passed zval, so make sure that we cop

Fixed bug #76901

get_method() may modify the object pointer passed to it if method
forwarding is used. In this case we do not want to modify the
passed zval, so make sure that we copy the object into a temporary
first.

show more ...


Revision tags: php-7.1.20RC1, php-7.2.8RC1, php-7.3.0alpha3, php-7.3.0alpha2, php-7.1.19, php-7.2.7, php-7.1.19RC1, php-7.3.0alpha1, php-7.2.7RC1, php-7.1.18, php-7.2.6, php-7.2.6RC1, php-7.1.18RC1, php-5.6.36, php-7.2.5, php-7.1.17, php-7.0.30, php-7.1.17RC1, php-7.2.5RC1, php-5.6.35, php-7.0.29, php-7.2.4, php-7.1.16, php-7.1.16RC1, php-7.2.4RC1, php-7.1.15, php-5.6.34, php-7.2.3, php-7.0.28, php-7.2.3RC1, php-7.1.15RC1, php-7.1.14, php-7.2.2, php-7.1.14RC1, php-7.2.2RC1, php-7.1.13, php-5.6.33, php-7.2.1, php-7.0.27, php-7.2.1RC1, php-7.1.13RC1, php-7.0.27RC1, php-7.2.0, php-7.1.12
# ab6c45f5 22-Nov-2017 Manabu Matsui

Fix bug #75533: array_reduce is slow when $carry is large array


# 3bb218a0 18-Sep-2018 Pierrick Charron

Fix 76480: Use curl_multi_wait() so that timeouts are respected


# 81f23057 11-Sep-2018 Ferenc Kovacs

5.6.39 will be the next


# 1b895229 11-Sep-2018 Anatol Belski

7.0.33 next


# 4415dab2 10-Sep-2018 Anatol Belski

Sync NEWS [ci skip]


# c1de8401 09-Sep-2018 Stanislav Malyshev

Update NEWS


# 90d86389 08-Sep-2018 Christoph M. Becker

Fix #75273: php_zlib_inflate_filter() may not update bytes_consumed

Whenever we return with `PSFS_PASS_ON`, we need to update
`bytes_consumed` to not mislead the caller. Instead of fixi

Fix #75273: php_zlib_inflate_filter() may not update bytes_consumed

Whenever we return with `PSFS_PASS_ON`, we need to update
`bytes_consumed` to not mislead the caller. Instead of fixing the
respective `if` clauses, we eschew the early bail-outs to simplify the
code a bit.

show more ...


# c0a389a9 05-Sep-2018 Christoph M. Becker

Fix #74454: Wrong exception being thrown when using ReflectionMethod

If zend_throw_exception_ex() already threw an exception, we should not
throw again.


# 0f724453 28-Aug-2018 Ville Hukkamaki

Fix bug #74764 and add a test case


# e58690a2 04-Sep-2018 Anatol Belski

[ci skip] Update NEWS


# 742783c3 24-Aug-2018 Ville Hukkamaki

Fixed bug #73457

Correctly report errors when opening FTP data connection.


12345678910>>...406