From 606fd5415b5f8cc726c14ee38bc7fd979efacc0b Mon Sep 17 00:00:00 2001 From: Florian Engelhardt Date: Sun, 16 Jun 2024 21:18:49 +0200 Subject: [PATCH] Release 1.2.2 --- package.xml | 30 ++++++++++++++++++++++++------ php_parallel.h | 2 +- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/package.xml b/package.xml index 6da66ec..98b2c8f 100644 --- a/package.xml +++ b/package.xml @@ -22,9 +22,9 @@ flo@dotbox.org yes - 2022-10-29 + 2024-06-16 - 1.2.1 + 1.2.2 1.2.0 @@ -33,10 +33,10 @@ PHP License -- Fix segfault when constructing sync objects -- Fix heap buffer overflows when copying functions -- Drop disabling functions (dl, setlocale) by force and adopt PG(enable_dl) mechanism for that most important use case -- Fix some leaks in scheduler +- CI: move docker images from Docker Hub to GHCR +- fix compilation issues with PHP 8.2 and 8.3 on 32 bit hardware +- fix compilation issues with PHP 8.4 (current master) +- fix Sync object debug handlers in PHP 8.3 @@ -270,6 +270,24 @@ parallel + + 2022-10-29 + + 1.2.1 + 1.2.0 + + + stable + stable + + PHP License + +- Fix segfault when constructing sync objects +- Fix heap buffer overflows when copying functions +- Drop disabling functions (dl, setlocale) by force and adopt PG(enable_dl) mechanism for that most important use case +- Fix some leaks in scheduler + + 2022-10-24 diff --git a/php_parallel.h b/php_parallel.h index 11a7602..35da2b7 100644 --- a/php_parallel.h +++ b/php_parallel.h @@ -22,7 +22,7 @@ extern zend_module_entry parallel_module_entry; # define phpext_parallel_ptr ¶llel_module_entry -# define PHP_PARALLEL_VERSION "1.2.2-dev" +# define PHP_PARALLEL_VERSION "1.2.2" # if !defined(ZTS) # error Only ZTS build are supported