Compare commits

..

No commits in common. "main" and "2.5.2" have entirely different histories.
main ... 2.5.2

3 changed files with 3 additions and 6 deletions

View file

@ -1,7 +1,4 @@
# 2.5.3 (2025-06-08)
- Update typing of Log() to support all psr\log versions
- # 2.5.2 (2025-06-08)
# 2.5.2 (2025-06-08)
- Update typing of Log() to support all psr\log versions
# 2.5.1 (2025-06-08)

View file

@ -28,7 +28,7 @@ class Log extends \Psr\Log\AbstractLogger
*
* @return null
*/
public function log($level, $message, array $context = []): void
public function log($level, string|\Stringable $message, array $context = []): void
{
$logLevels = [
'emergency',

View file

@ -12,7 +12,7 @@ namespace Resque;
class Resque
{
public const VERSION = '2.5.3';
public const VERSION = '2.5.2';
public const DEFAULT_INTERVAL = 5;