-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
meta(changelog): Update changelog for 7.52.0 #8118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
0e36397
Merge pull request #8077 from getsentry/master
github-actions[bot] 6462e0d
ref: Hoist `createCheckinEnvelope` to core package (#8082)
fd7a092
chore(sveltekit): Update README (stable, wizard, links) (#8070)
Lms24 cbe8a57
feat(nextjs): Add API method to wrap API routes with crons instrument…
a70a91a
fix(core): Use last error for `ignoreErrors` check (#8089)
lobsterkatie 48ef411
feat(replay): Capture keyboard presses for special characters (#8051)
mydea 6be91da
feat(nextjs): Add automatic monitors for Vercel Cron Jobs (#8088)
b88a26d
fix(build): Don't mangle away global debug ID map (#8096)
07c8af9
fix(docs): Change to `addTracingExtensions` was not documented in MIG…
timfish 9a267eb
fix(replay): Check relative URLs correctly (#8024)
mydea 5440807
fix(core): Return checkin id from client (#8116)
AbhiPrasad 4c42bd5
fix(tracing-internal): Avoid classifying protocol-relative URLs as sa…
Lms24 e53804e
meta(changelog): Update changelog for 7.52.0
6d067dd
move
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,41 @@ | |
|
||
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott | ||
|
||
|
||
## 7.52.0 | ||
|
||
### Important Next.js SDK changes: | ||
|
||
This release adds support Vercel Cron Jobs in the Next.js SDK. | ||
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. | ||
|
||
You can opt out of this functionality by setting the `automaticVercelMonitors` option to `false`: | ||
|
||
```js | ||
// next.config.js | ||
const nextConfig = { | ||
sentry: { | ||
automaticVercelMonitors: false, | ||
}, | ||
}; | ||
``` | ||
|
||
(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 [email protected]) | ||
|
||
- feat(nextjs): Add API method to wrap API routes with crons instrumentation (#8084) | ||
- feat(nextjs): Add automatic monitors for Vercel Cron Jobs (#8088) | ||
|
||
### Other changes | ||
|
||
- feat(replay): Capture keyboard presses for special characters (#8051) | ||
- fix(build): Don't mangle away global debug ID map (#8096) | ||
- fix(core): Return checkin id from client (#8116) | ||
- fix(core): Use last error for `ignoreErrors` check (#8089) | ||
- fix(docs): Change to `addTracingExtensions` was not documented in MIGRATION.md (#8101) | ||
- fix(replay): Check relative URLs correctly (#8024) | ||
- fix(tracing-internal): Avoid classifying protocol-relative URLs as same-origin urls (#8114) | ||
- ref: Hoist `createCheckinEnvelope` to core package (#8082) | ||
|
||
## 7.51.2 | ||
|
||
- fix(nextjs): Continue traces in data fetchers when there is an already active transaction on the hub (#8073) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
packages/browser-integration-tests/suites/replay/keyboardEvents/init.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import * as Sentry from '@sentry/browser'; | ||
|
||
window.Sentry = Sentry; | ||
window.Replay = new Sentry.Replay({ | ||
flushMinDelay: 1000, | ||
flushMaxDelay: 1000, | ||
}); | ||
|
||
Sentry.init({ | ||
dsn: 'https://[email protected]/1337', | ||
sampleRate: 0, | ||
replaysSessionSampleRate: 1.0, | ||
replaysOnErrorSampleRate: 0.0, | ||
|
||
integrations: [window.Replay], | ||
}); |
9 changes: 9 additions & 0 deletions
9
packages/browser-integration-tests/suites/replay/keyboardEvents/template.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
</head> | ||
<body> | ||
<input id="input" /> | ||
</body> | ||
</html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.