Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Releases: buggregator/laravel-app

v1.18.3

30 Nov 07:52
Compare
Choose a tag to compare
  • Fixes problem with caching SMTP mail. #62

v1.18.1

08 Sep 10:29
53a0827
Compare
Choose a tag to compare
Update docker-image.yml

Added ability to receive monolog logs via TCP connection and display logs in a Terminal

06 Sep 20:57
Compare
Choose a tag to compare

You can add a new channel to config file config/logging.php

'channels' => [
     ...

    'socket' => [
        'driver' => 'monolog',
        'level' => env('LOG_LEVEL', 'debug'),
        'handler' => \Monolog\Handler\SocketHandler::class,
        'formatter' => \Monolog\Formatter\JsonFormatter::class,
        'handler_with' => [
            'connectionString' => env('LOG_SOCKET_URL', '127.0.0.1:9913'),
        ],
    ],
]

the set default channel to socket

LOG_CHANNEL=socket
LOG_SOCKET_URL=127.0.0.1:9913

Logs

v1.17

05 Sep 18:40
Compare
Choose a tag to compare
  1. Fixed problem with ray measure units

  2. Added ability to suppress cli output for smtp, var-dumper, ray and sentry

If you don't want to see dump output in your terminal, you can disable it through ENV variables:

CLI_SMTP_STREAM=false
CLI_VAR_DUMPER_STREAM=false
CLI_SENTRY_STREAM=false
CLI_RAY_STREAM=false

Example

docker run --pull always --env CLI_SMTP_STREAM=false --env CLI_SENTRY_STREAM=false -p 23517:8000 -p 1025:1025 -p 9912:9912 butschster/debugger:latest
  1. Fixed app name
  2. Fixed debug int values with spatie/ray

Fix

04 Sep 17:55
Compare
Choose a tag to compare
Fix
  • Fixed problem with SMTP events
  • Fixed problem with debug inv variables

v1.16.1

03 Sep 19:40
52cb372
Compare
Choose a tag to compare
Update docker-image.yml

Added ability to display SMTP mails in a Terminal

03 Sep 19:18
Compare
Choose a tag to compare

v1.15.2

02 Sep 21:56
dd37ee4
Compare
Choose a tag to compare
Update docker-image.yml

Fixed problem with colored output in a terminal

02 Sep 14:42
Compare
Choose a tag to compare

Improved events rendering in a Terminal

02 Sep 10:14
Compare
Choose a tag to compare

image 41 (4)

  • Added support for rendering Sentry errors in a terminal
  • added support for ray event for console
  • added support for ray query for console
  • added support for ray job for console
  • added support for ray view for console