Debian 9909 Published by

Ondřej Surý has released PHP 7.4.28, 8.0.16, and 8.1.3 packages for Debian GNU/Linux 9 LTS, 10, and 11.





To add the repository:
#!/bin/bash # To add this repository please do:

if [ "$(whoami)" != "root" ]; then
SUDO=sudo
fi

${SUDO} apt-get -y install apt-transport-https lsb-release ca-certificates curl
${SUDO} wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
${SUDO} sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
${SUDO} apt-get update
PHP 8.1.1 for Debian 10

PHP Packages
Issues Tracker

php-8.1.3

- Core:
. Fixed bug #81430 (Attribute instantiation leaves dangling pointer). (beberlei)
. Fixed bug GH-7896 (Environment vars may be mangled on Windows). (cmb)
. Fixed bug GH-7883 (Segfault when INI file is not readable). (Remi)

- Filter:
. Fix #81708: UAF due to php_filter_float() failing for ints. (CVE-2021-21708) (cmb)

- FFI:
. Fixed bug GH-7867 (FFI::cast() from pointer to array is broken). (cmb, dmitry)

- FPM:
. Fixed memory leak on invalid port. (David Carlier)
. Fixed bug GH-7842 (Invalid OpenMetrics response format returned by FPM status page. (Stefano Arlandini)

- MBString:
. Fixed bug GH-7902 (mb_send_mail may delimit headers with LF only). (cmb)

- MySQLnd:
. Fixed bug GH-7972 (MariaDB version prefix 5.5.5- is not stripped). (Kamil Tekiela)

- pcntl:
. Fixed pcntl_rfork build for DragonFlyBSD. (David Carlier)

- Sockets:
. Fixed bug GH-7978 (sockets extension compilation errors). (David Carlier)

- Standard:
. Fixed bug GH-7899 (Regression in unpack for negative int value). (Remi)
. Fixed bug GH-7875 (mails are sent even if failure to log throws exception). (cmb)

php-8.0.16

- Core:
. Fixed bug #81430 (Attribute instantiation leaves dangling pointer). (beberlei)
. Fixed bug GH-7896 (Environment vars may be mangled on Windows). (cmb)
- FFI:
. Fixed bug GH-7867 (FFI::cast() from pointer to array is broken). (cmb, dmitry)

- FPM:
. Fixed memory leak on invalid port. (David Carlier)

- MBString:
. Fixed bug GH-7902 (mb_send_mail may delimit headers with LF only). (cmb)

- MySQLnd:
. Fixed bug GH-7972 (MariaDB version prefix 5.5.5- is not stripped). (Kamil Tekiela)

- Sockets:
. Fixed ext/sockets build on Haiku. (David Carlier)
. Fixed bug GH-7978 (sockets extension compilation errors). (David Carlier)

- Standard:
. Fixed bug GH-7875 (mails are sent even if failure to log throws exception). (cmb)

php-7.4.28

- Filter:
. Fix #81708: UAF due to php_filter_float() failing for ints