From 5c14c3f6e83b2e2d150a969dc6eda4e083b73956 Mon Sep 17 00:00:00 2001 From: Bizley Date: Tue, 3 Oct 2023 18:02:00 +0200 Subject: [PATCH] release version 2.3.6 --- CHANGELOG.md | 6 +++--- src/Queue.php | 3 --- src/drivers/amqp_interop/Queue.php | 3 ++- src/drivers/beanstalk/Queue.php | 2 ++ 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10e69ae51..810db5f99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ Yii2 Queue Extension Change Log =============================== -2.3.6 under development ------------------------ +2.3.6 October 03, 2023 +---------------------- +- Bug #373: Fixed error if payload in Redis is null (sanwv, magarzon) - Enh #372: Add ability to configure keepalive and heartbeat for AMQP and AMQP interop (vyachin) - Enh #464: Delete property `maxPriority` (skolkin-worker) - Enh #486: `SignalLoop::$exitSignals` now includes `SIGQUIT` (rhertogh) - Enh #487: Add ability to push message with headers for AMQP interop driver (s1lver) -- Bug #373: Fixed error if payload in Redis is null (sanwv, magarzon) 2.3.5 November 18, 2022 diff --git a/src/Queue.php b/src/Queue.php index 2d61c8278..8182460e2 100644 --- a/src/Queue.php +++ b/src/Queue.php @@ -19,9 +19,6 @@ /** * Base Queue. * - * @property null|int $workerPid - * @since 2.0.2 - * * @author Roman Zhuravlev */ abstract class Queue extends Component diff --git a/src/drivers/amqp_interop/Queue.php b/src/drivers/amqp_interop/Queue.php index 72809608f..9f565526b 100644 --- a/src/drivers/amqp_interop/Queue.php +++ b/src/drivers/amqp_interop/Queue.php @@ -28,6 +28,8 @@ /** * Amqp Queue. * + * @property-read AmqpContext $context + * * @author Maksym Kotliar * @since 2.0.2 */ @@ -233,7 +235,6 @@ class Queue extends CliQueue * @var string command class name */ public $commandClass = Command::class; - /** * Headers to send along with the message * ```php diff --git a/src/drivers/beanstalk/Queue.php b/src/drivers/beanstalk/Queue.php index dadf161d4..49e0c57a3 100644 --- a/src/drivers/beanstalk/Queue.php +++ b/src/drivers/beanstalk/Queue.php @@ -17,6 +17,8 @@ /** * Beanstalk Queue. * + * @property-read object $statsTube Tube statistics. + * * @author Roman Zhuravlev */ class Queue extends CliQueue