Skip to content

Commit

Permalink
v3.4.0 - Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
idanoo committed Dec 11, 2024
1 parent 2c995bd commit 81fe761
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
container: php:${{ matrix.php_version }}
strategy:
matrix:
php_version: [8.1, 8.2]
php_version: [8.1, 8.2,8.3,8.4]
services:
redis:
image: redis:7.0
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 2.4.0 (2024-12-11)
- Update packages (psr/log ^3.0.2)

# 2.3.0 (2024-09-04)
- Update packages

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
"require": {
"php": ">=8.1",
"psr/log": "^1.1.0",
"psr/log": "^3.0.2",
"colinmollenhour/credis": "^1.14.0"
},
"require-dev": {
Expand Down
74 changes: 37 additions & 37 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Resque/Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function __construct($logLevel = 'warning')
* @param array $context Variables to replace { placeholder }
* @return null
*/
public function log($level, $message, array $context = [])
public function log($level, \Stringable|string $message, array $context = []): void
{
$logLevels = [
'emergency',
Expand Down

0 comments on commit 81fe761

Please sign in to comment.