Skip to content

Commit

Permalink
Merge branch 'main' into beranek/Redis-list-driver-implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Beranek committed Apr 23, 2024
2 parents b6fd789 + 3309da0 commit 1f15cb3
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/composer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]

name: Composer outdated - PHP ${{ matrix.php }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]

name: PHPStan - PHP ${{ matrix.php }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan_lowest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]

name: PHPStan with lowest dependencies - PHP ${{ matrix.php }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/syntax_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]

name: PHP syntax checker - PHP ${{ matrix.php }}

Expand Down
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Change Log
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased][unreleased]
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]



## [1.1.0] - 2024-04-17
### Added
- Support for PHP 8.3 and Symfony 7

- RedisProxyListDriver - list driver for RedisProxy

Expand Down Expand Up @@ -30,7 +40,8 @@
- RedisProxySortedSetDriver
- DummyDriver (for testing purposes)

[unreleased]: https://github.com/efabrica-team/hermes-extension/compare/1.0.0...HEAD
[Unreleased]: https://github.com/efabrica-team/hermes-extension/compare/1.1.0...main
[1.1.0]: https://github.com/efabrica-team/hermes-extension/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/efabrica-team/hermes-extension/compare/0.3.1...1.0.0
[0.3.1]: https://github.com/efabrica-team/hermes-extension/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/efabrica-team/hermes-extension/compare/0.2.0...0.3.0
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"keywords": ["worker", "driver", "redis-proxy", "heartbeat"],
"license": "MIT",
"require": {
"php": ">= 7.4 < 8.3",
"php": "^7.4 | ^8.0",
"ext-json": "*",
"tomaj/hermes": "^4.0",
"lulco/redis-proxy": "~0.5 | ^1.0",
"symfony/console": "^5.4 | ^6.0"
"symfony/console": "^5.4 | ^6.0 | ^7.0"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 0 additions & 3 deletions src/Command/CleanupOldProcesses.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@

use DateTime;
use Efabrica\HermesExtension\Heartbeat\HeartbeatStorageInterface;
use Efabrica\HermesExtension\Heartbeat\HermesProcess;
use Efabrica\HermesExtension\Ping\PingInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Driver/RedisProxySetDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
use Tomaj\Hermes\Driver\UnknownPriorityException;
use Tomaj\Hermes\MessageInterface;
use Tomaj\Hermes\MessageSerializer;
use Tomaj\Hermes\Shutdown\ShutdownException;
use Tomaj\Hermes\SerializeException;
use Tomaj\Hermes\Shutdown\ShutdownException;

final class RedisProxySetDriver implements DriverInterface
{
Expand Down

0 comments on commit 1f15cb3

Please sign in to comment.