Releases: hhxsv5/laravel-s
Releases · hhxsv5/laravel-s
v3.8.2
v3.8.1
v3.7.39
Support PHP 8.X
Some optimizations
- Updated default apcu_key_max_age
- Allow empty server header
- Fixed register_providers not taking effect
- Fixed invalid apollo key
Optimized the call of schedule:run command
v3.7.37 optimize the call of schedule:run command
Some optimizations
- Fixed #473
- Avoid cli_set_process_title error
Some optimizations
- Fixed global timer lock on Redis cluster
- Removed the useless namespace use
- Removed the useless parent call
- Optimized the handler prompts
- Fixed is_file() error when filename with %00
Add the app name to the process name
v3.7.34 Add the app name to the process name
Refactor customized async event listener
- Remove method:
Listener::__construct(Event $event)
. - Change method:
Listener::handle()
toListener::handle(Event $event)
. - Return
false
tostop propagating the event to subsequent listeners
in Listener::handle().
Before:
abstract class Listener
{
protected $event;
public function __construct(Event $event)
{
$this->event = $event;
}
/**
* The logic of handling event
* @return void
*/
abstract public function handle();
}
Now:
abstract class Listener
{
/**
* The logic of handling event
* @param Event $event
* @return mixed
*/
abstract public function handle(Event $event);
}