packagist sentry/sentry-laravel 3.6.0

latest releases: dev-master, dev-release/4.9.0, 4.9.0...
15 months ago

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v3.6.0.

Features

  • Add support for upserting Cron Monitors (#677)

    We simplified setting up monitoring for your scheduled tasks. Now, the only requirement is to add the
    sentryMonitor macro. A corresponding monitor will be created automatically on Sentry.

    protected function schedule(Schedule $schedule)
    {
        $schedule->command('emails:send')
            ->everyHour()
            ->sentryMonitor(); // add this line
    }

    You can read more about this in our docs.

Don't miss a new sentry-laravel release

NewReleases is sending notifications on new releases.