Skip to content

Commit cc13185

Browse files
authored
Prepare 3.6.0 (#721)
1 parent 3c5b835 commit cc13185

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## 3.6.0
4+
5+
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v3.6.0.
6+
7+
### Features
8+
9+
- Add support for upserting Cron Monitors [(#677)](https://github.com/getsentry/sentry-laravel/pull/677)
10+
11+
We simplified setting up monitoring for your scheduled tasks. Now, the only requirement is to add the
12+
`sentryMonitor` macro. A corresponding monitor will be created automatically on Sentry.
13+
14+
```php
15+
protected function schedule(Schedule $schedule)
16+
{
17+
$schedule->command('emails:send')
18+
->everyHour()
19+
->sentryMonitor(); // add this line
20+
}
21+
```
22+
23+
You can read more about this in our [docs](https://sentry-docs-git-laravel-upserts.sentry.dev/platforms/php/guides/laravel/crons/).
24+
325
## 3.5.1
426

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

0 commit comments

Comments
 (0)