History log of /PHP-8.0/NEWS (Results 176 – 200 of 13476)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 0b3a9376 11-Dec-2021 Christoph M. Becker

Fix GH-7759: Incorrect return types for hash() and hash_hmac()

`hash()` and `hash_hmac()` never return `false`; only `hash_file()` and
`hash_hmac_file()` return `false` in case the data

Fix GH-7759: Incorrect return types for hash() and hash_hmac()

`hash()` and `hash_hmac()` never return `false`; only `hash_file()` and
`hash_hmac_file()` return `false` in case the data cannot be read.

Closes GH-7760.

show more ...

# 778513f6 05-Dec-2021 SATO Kentaro

Fix error message allocation of PDO PgSQL

Closes GH-7723.

# 5675ebe6 09-Dec-2021 Christoph M. Becker

Fix #81585: cached_chunks are not counted to real_size on shutdown

The amount of allocated system memory is kept in `real_size`, including
the allocated `cached_chunks`. Thus, we need t

Fix #81585: cached_chunks are not counted to real_size on shutdown

The amount of allocated system memory is kept in `real_size`, including
the allocated `cached_chunks`. Thus, we need to keep the proper count
at the end of the shutdown.

Closes GH-7745.

show more ...

# daf79e2d 30-Nov-2021 Aliaksandr Bystry

Fix #75917: SplFileObject::seek broken with CSV flags

Closes GH-7697.

# 1f38c003 25-Nov-2021 Michael Wallner

fix #81656: GCC-11 silently ignores -R

Closes GH-7688.

# 999c6f2c 02-Dec-2021 Sara Golemon

Bump for 8.0.15

# 816aa203 29-Nov-2021 Christoph M. Becker

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix #74604: Out of bounds in php_pcre_replace_impl


# 712fc54e 29-Nov-2021 Christoph M. Becker

Fix #74604: Out of bounds in php_pcre_replace_impl

Trying to allocate a `zend_string` with a length only slighty smaller
than `SIZE_MAX` causes an integer overflow; we make sure that thi

Fix #74604: Out of bounds in php_pcre_replace_impl

Trying to allocate a `zend_string` with a length only slighty smaller
than `SIZE_MAX` causes an integer overflow; we make sure that this
doesn't happen by catering to the maximal overhead of a `zend_string`.

Closes GH-7597.

show more ...

# f3bd24a2 29-Nov-2021 Christoph M. Becker

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix #81659: stream_get_contents() may unnecessarily overallocate


# 31749aac 26-Nov-2021 Christoph M. Becker

Fix #81659: stream_get_contents() may unnecessarily overallocate

Since we're going to read from the current stream position anyway, the
`max_len` should be the size of the file minus the

Fix #81659: stream_get_contents() may unnecessarily overallocate

Since we're going to read from the current stream position anyway, the
`max_len` should be the size of the file minus the current position
(still catering to potentially filtered streams). We must, however,
make sure to cater to the file position being beyond the actual file
size.

While we're at, we also fix the step size in the comment, which is 8K.

A further optimization could be done for unfiltered streams, thus
saving that step size, but 8K might not be worth it.

Closes GH-7693.

show more ...

# 179030d1 24-Nov-2021 Christoph M. Becker

Fix #81649: imap_(un)delete accept sequences, not single numbers

As such, the parameter name `$message_num` is utmost misleading; it
should be `$message_nums` as for other functions.

Fix #81649: imap_(un)delete accept sequences, not single numbers

As such, the parameter name `$message_num` is utmost misleading; it
should be `$message_nums` as for other functions.

Closes GH-7686.

show more ...

# be271f27 24-Nov-2021 Nikita Popov

Fix bug #81652

We need to check not only for defs but also for uses of the
variable.

# b29e85a0 22-Nov-2021 Christoph M. Becker

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix #75725: ./configure: detecting RAND_egd


# 60fe575c 19-Nov-2021 Дилян Палаузов

Fix #75725: ./configure: detecting RAND_egd

Closes GH-7668.

# 4d4fe763 17-Nov-2021 Nikita Popov

Fixed bug #81631

We need to save the opline before fetching the operand, as it may
throw an undef var warning.

# b9632086 16-Nov-2021 Christoph M. Becker

[ci skip] Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
[ci skip] Fix news entry for bug #79971
[ci skip] Update NEWS


# 8a207647 16-Nov-2021 Christoph M. Becker

[ci skip] Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
[ci skip] Fix news entry for bug #79971
[ci skip] Update NEWS


# d14a9139 16-Nov-2021 Christoph M. Becker

[ci skip] Fix news entry for bug #79971

# 9e25c4b3 16-Nov-2021 Nikita Popov

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fixed bug #81626


# d26965b2 16-Nov-2021 Nikita Popov

Fixed bug #81626

Backport of a8926474cb2c68cde2a7c0d19bcd95cdbda55ad2 to 7.4.

# 4a265632 15-Nov-2021 Nikita Popov

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix bug #81618: Correct dns_get_record on FreeBSD


# 45f52285 14-Nov-2021 Matt

Fix bug #81618: Correct dns_get_record on FreeBSD

Modify dns_get_record to test for records result based on dns_errno to
accommodate modern FreeBSD, for which res_nsearch() does not upda

Fix bug #81618: Correct dns_get_record on FreeBSD

Modify dns_get_record to test for records result based on dns_errno to
accommodate modern FreeBSD, for which res_nsearch() does not update
h_errno directly. Add new php_dns_errno macro, and have it consult
statp->res_h_errno when OS has res_nsearch().

Closes GH-7655.

show more ...

# 7967875d 15-Nov-2021 Stanislav Malyshev

[ci skip] Update NEWS

# ec3d4409 14-Nov-2021 Jakub Zelenka

Merge branch 'PHP-7.4' into PHP-8.0


# b2cf9b7e 07-Nov-2021 Jakub Zelenka

Fix bug #81513 (Future possibility for heap overflow in FPM zlog)

This fixes currently unused code path in zlog that could lead to
the heap overflow in the future.

12345678910>>...540