File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
25
## 3.5.1
4
26
5
27
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v3.5.1.
You can’t perform that action at this time.
0 commit comments