Skip to content

3.6.0

Compare
Choose a tag to compare
@getsentry-bot getsentry-bot released this 29 Jun 12:00
6aacef4

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.