Skip to content

Releases: hhxsv5/laravel-s

v3.7.12

10 Jan 15:15
Compare
Choose a tag to compare
  • Fixed #330
  • Supported handshake for WebSocket port sockets
  • Supported reading Request/Auth for WebSocket port sockets
  • Supported Server header for WebSocket/Http port sockets.
  • Optimized configuration items
  • Optimized performance

v3.7.11

30 Dec 14:44
Compare
Choose a tag to compare
  • Fixed --env option
  • Optimized dashboard

v3.7.10

16 Dec 08:40
Compare
Choose a tag to compare
  • Support custom handshake for WebSocket @Louis-Ni
  • Add default handshake for WebSocket @hhxsv5

v3.7.9

09 Dec 10:08
Compare
Choose a tag to compare

Support binary configuration in config/laravels.php

12 Aug 04:00
Compare
Choose a tag to compare
v3.7.8

support binary configuration in config/laravels.php

Support global timer

06 Aug 11:02
Compare
Choose a tag to compare
// 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

20 Jul 16:26
Compare
Choose a tag to compare
v3.7.6

fix bug: get x-version from custom process

Support X-Version

18 Jul 07:06
Compare
Choose a tag to compare

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

15 Jun 05:55
Compare
Choose a tag to compare

Add Apollo component

14 May 10:25
Compare
Choose a tag to compare
  • Add Apollo component
  • Add restart_interval for custom process
  • Optimize docs