History log of /php-src/NEWS (Results 2776 – 2800 of 15454)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# ecd9c42f 16-Sep-2020 Nikita Popov

Fix bug #80107: Handling of large compressed packets

There's two layers of packet splitting going on. First, packets
need to be split into having a payload of exactly 2^24-1 bytes or

Fix bug #80107: Handling of large compressed packets

There's two layers of packet splitting going on. First, packets
need to be split into having a payload of exactly 2^24-1 bytes or
being the last packet. If the split packet has size between 2^24-5
and 2^24-1 bytes, the compressed packets also needs to be split,
though the choice of split doesn't matter here. I'm splitting off
the first 8192 bytes, as that's what I observe libmysqlclient to be
doing.

show more ...

# a61a9fe9 14-Sep-2020 Sara Golemon

Support ephemeral ports in debug server

# 9f2d0395 17-Sep-2020 Christoph M. Becker

Update to PCRE2 10.35

We also backport the fix for bug #79846, and add a test case for the
related bug #79363.

# c3c76dbf 17-Sep-2020 Christoph M. Becker

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fix #80115: mysqlnd.debug doesn't recognize absolute paths with slashes


# efdbc368 17-Sep-2020 Christoph M. Becker

Fix #80115: mysqlnd.debug doesn't recognize absolute paths with slashes

# 9c136f10 17-Sep-2020 Nikita Popov

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fixed bug #80083


# a4f806aa 17-Sep-2020 Nikita Popov

Fixed bug #80083

Add db2_execute() to the list of functions accessing the local
scope. Ideally the API wouldn't do that, but it seems most
pragmatic to address this on the opcache si

Fixed bug #80083

Add db2_execute() to the list of functions accessing the local
scope. Ideally the API wouldn't do that, but it seems most
pragmatic to address this on the opcache side at this point.

show more ...

# e3d0bc0a 17-Sep-2020 Nikita Popov

Fixed bug #80109

Skip over leading EXT_NOP, if it exists.

# f8886748 15-Sep-2020 Sara Golemon

Update NEWS for 8.0.0RC1

# a4a5cddd 15-Sep-2020 Sara Golemon

Update NEWS for PHP 8.0.0beta4

# edddddce 15-Sep-2020 Christoph M. Becker

7.3.24 is next

# 4e794b79 15-Sep-2020 Derick Rethans

The next release here will be 7.4.12

# ad61e141 13-Sep-2020 Bob Weinand

Fix crashes with unproper cleaning of repeated yield from

Closes GH-6130

# 57a4a2c5 14-Sep-2020 Nikita Popov

Fixed bug #80096

We shouldn't assume that call->prev_execute_data is NULL here. The
value needs to be preserved for call chains.

# e4186788 11-Sep-2020 Christoph M. Becker

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fix #80067: Omitting the port in bindto setting errors


# dfb3a799 09-Sep-2020 Christoph M. Becker

Fix #80067: Omitting the port in bindto setting errors

A recent commit[1] which fixed a memory leak introduced a regression
regarding the formerly liberal handling of IP addresses to bin

Fix #80067: Omitting the port in bindto setting errors

A recent commit[1] which fixed a memory leak introduced a regression
regarding the formerly liberal handling of IP addresses to bind to. We
fix this by reverting that commit, and fix the memory leak where it
actually occurs. In other words, this fix is less intrusive than the
former fix.

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

Closes GH-6104.

show more ...

# bea44429 10-Sep-2020 chopins

Added FFI\CType::getName() method

# 1b526826 09-Sep-2020 Sammy Kaye Powers

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fix #79825: opcache.file_cache causes SIGSEGV with custom opcode handlers


# 2d4aa1ef 10-Jul-2020 Sammy Kaye Powers

Fix #79825: opcache.file_cache causes SIGSEGV with custom opcode handlers

Modules may have changed after restart which can cause dangling pointers from custom opcode handlers in the second-l

Fix #79825: opcache.file_cache causes SIGSEGV with custom opcode handlers

Modules may have changed after restart which can cause dangling pointers from custom opcode handlers in the second-level cache files. This fix includes the installed module names and versions in the accel_system_id hash as entropy. Closes GH-5836

show more ...

# e6b2a97c 08-Sep-2020 Christoph M. Becker

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fix #72941: Modifying bucket->data by-ref has no effect any longer


# 5dcb8f2f 08-Sep-2020 Christoph M. Becker

Fix #72941: Modifying bucket->data by-ref has no effect any longer

To match the PHP 5 behavior, we have to explicitly cater to `buffer` or
`data` being references.

Closes GH-609

Fix #72941: Modifying bucket->data by-ref has no effect any longer

To match the PHP 5 behavior, we have to explicitly cater to `buffer` or
`data` being references.

Closes GH-6096.

show more ...

# d0d9c3a9 08-Sep-2020 Nikita Popov

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fixed bug #80077


# 07cb6655 08-Sep-2020 Nikita Popov

Fixed bug #80077

Quoting from the bug report:

> The domain names passed to getmxrr() do not contain a trailing dot.
> DNS lookups which do not find records will (depending on th

Fixed bug #80077

Quoting from the bug report:

> The domain names passed to getmxrr() do not contain a trailing dot.
> DNS lookups which do not find records will (depending on the local
> resolver config) try again by adding the local domain to the end of
> the searched host/domain. In many environments there's an mx record
> for any subdomain of the local domain and the MX query will return
> a hit. But the test expects no hit. So the test fails when checking
> that "qa.php.net" does not have an MX record in DNS. In our local
> environment the resolver falls back to also check qa.php.net.kippdata.de
> which does have an MX record. Using "qa.php.net." instead of "qa.php.net"
> should fix this for everyone.

show more ...

# 2ee23352 04-Sep-2020 Derick Rethans

Fixed bug #80057 (DateTimeImmutable::createFromFormat() does not populate time)

# 2dabc4c3 03-Sep-2020 Nikita Popov

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fixed bug #80049


1...<<111112113114115116117118119120>>...619