You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- fix(tracing-internal): Avoid classifying protocol-relative URLs as same-origin urls (#8114)
17
+
- ref: Hoist `createCheckinEnvelope` to core package (#8082)
18
+
19
+
**Important Next.js SDK changes:**
20
+
21
+
This release adds support Vercel Cron Jobs in the Next.js SDK.
22
+
The SDK will automatically create [Sentry Cron Monitors](https://docs.sentry.io/product/crons/) for your [Vercel Cron Jobs](https://vercel.com/docs/cron-jobs) configured via `vercel.json` when deployed on Vercel.
23
+
24
+
You can opt out of this functionality by setting the `automaticVercelMonitors` option to `false`:
25
+
26
+
```js
27
+
// next.config.js
28
+
constnextConfig= {
29
+
sentry: {
30
+
automaticVercelMonitors:false,
31
+
},
32
+
};
33
+
```
34
+
35
+
(Note: Sentry Cron Monitoring is currently in beta and subject to change. Help us make it better by letting us know what you think. Respond on [GitHub](https://github.com/getsentry/sentry/discussions/42283) or write to us at crons-feedback@sentry.io)
36
+
37
+
- feat(nextjs): Add API method to wrap API routes with crons instrumentation (#8084)
38
+
- feat(nextjs): Add automatic monitors for Vercel Cron Jobs (#8088)
39
+
7
40
## 7.51.2
8
41
9
42
- fix(nextjs): Continue traces in data fetchers when there is an already active transaction on the hub (#8073)
0 commit comments