Releases: hhxsv5/laravel-s
Releases · hhxsv5/laravel-s
v3.7.12
v3.7.11
v3.7.10
v3.7.9
Support binary configuration in config/laravels.php
v3.7.8 support binary configuration in config/laravels.php
Support global timer
// Register cron jobs in file "config/laravels.php"
[
// ...
'timer' => [
'enable' => true,
'jobs' => [
//...
],
'max_wait_time' => 5, // Max waiting time of reloading
// Enable the global lock to ensure that only one instance starts the timer when deploying multiple instances.
// This feature depends on Redis, please see https://laravel.com/docs/7.x/redis
'global_lock' => true,
'global_lock_key' => config('app.name', 'Laravel'),
],
// ...
];
Fixed bug: get x-version from custom process
v3.7.6 fix bug: get x-version from custom process
Support X-Version
Boot option -x|--x-version
php bin/laravels start --x-version=feature/news
The version(branch) of the current project, stored in $_ENV/$_SERVER.
echo $_ENV['X_VERSION'];
echo $_SERVER['X_VERSION'];
echo $request->server->get('X_VERSION');
v3.7.4
- Optimize Apollo client
- Optimize memory usage when uploading file
- Fix bug when all timers are cleared
- Add onStop for custom process @davidhhuan
- Support multiple events
Add Apollo component
- Add
Apollo
component - Add
restart_interval
for custom process - Optimize docs