Skip to content

Releases: rollun-lc/rollun-callback

6.11.2

07 Jan 08:20
Compare
Choose a tag to compare

Verry little change in documentation

7.6.0

06 Jan 12:41
Compare
Choose a tag to compare

Merge 7.x to master (where was 6th version)

7.5.0

06 Dec 09:52
Compare
Choose a tag to compare
  • copy reputation-vip/queue-client to local files
  • get rid of guzzle/guzzle fork

7.4.0

04 Dec 12:51
Compare
Choose a tag to compare

Add callable name to message in ProcessByName::class

7.3.0

05 Nov 08:43
Compare
Choose a tag to compare

Replace Interop container by Psr

7.2.1

01 Nov 17:47
Compare
Choose a tag to compare

Change log level for PHP errors to warning

6.11.1

01 Nov 17:47
Compare
Choose a tag to compare

Change log level for PHP errors to warning

7.2.0

30 Oct 20:46
Compare
Choose a tag to compare

Catch PHP errors and log it in Process and ProcessByName interrupters.

set_error_handler(function (int $errno, string $errstr, string $errfile, int $errline) use ($logger) : void {
    if (! (error_reporting() & $errno)) {
        // error_reporting does not include this error
        return;
    }

    $exception = new ErrorException($errstr, 0, $errno, $errfile, $errline);

    // Maybe in next releases we will throw this exceptions
    $logger->error('When execute process, catch PHP error. But not throwing it.', [
        'exception' => $exception
    ]);
});

6.11.0

30 Oct 20:47
Compare
Choose a tag to compare

Catch PHP errors and log it in Process and ProcessByName interrupters.

set_error_handler(function (int $errno, string $errstr, string $errfile, int $errline) use ($logger) : void {
    if (! (error_reporting() & $errno)) {
        // error_reporting does not include this error
        return;
    }

    $exception = new ErrorException($errstr, 0, $errno, $errfile, $errline);

    // Maybe in next releases we will throw this exceptions
    $logger->error('When execute process, catch PHP error. But not throwing it.', [
        'exception' => $exception
    ]);
});

7.1.0

23 Oct 07:39
Compare
Choose a tag to compare

Support "rollun-com/rollun-utils":"^8.0"