From dca9ca328fab43cb955bfcdaef75d82254992a8d Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 4 Mar 2021 09:51:09 +0100 Subject: [PATCH] Update changelog --- package.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package.xml b/package.xml index b9be32ee..96c542b2 100644 --- a/package.xml +++ b/package.xml @@ -39,7 +39,13 @@ PHP License -- +- Fix deadlocks when other apcu_* functions are used inside apcu_entry(). It should now be safe to use any functions inside the apcu_entry() callback. +- Fix division by zero exception in apc.php. +- Fix handling of references in PHP 8 if "default" serializer is used (which is not the default). +- Fix string reuse handling if "default" serializer is used (which is not the default). +- Check for failures when acquiring read locks to report problems earlier (write locks were already checked previously). +- Adjust tests for current PHP 8.1 development branch. +- Remove *_api.h headers. Use apc_cache.h instead of apc_cache_api.h etc.