Ondřej Surý has released PHP 8.1.0 RC 6 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 Packages
Issues Tracker
php-8.1.0RC6
- Core:
. Fixed bug #81507 (Fiber does not compile on AIX). (Clément Chigot)
. Fixed bug #78647 (SEGFAULT in zend_do_perform_implementation_check). (Nikita)
- Date:
. Fixed bug #81458 (Regression Incorrect difference after timezone change). (Derick)
- GD:
. Fixed bug #71316 (libpng warning from imagecreatefromstring). (cmb)
- Standard:
. Fixed bug #81441 (gethostbyaddr('::1') returns ip instead of name after calling some other method). (Nikita)