-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
meta(changelog): Update Changelog for 7.50.0 #7966
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
29 commits
Select commit
Hold shift + click to select a range
8f5a036
Merge pull request #7922 from getsentry/master
mydea c74eff8
fix(core): Avoid crash when Function.prototype is frozen (#7899)
Jack-Works 856953b
ci: Improve last commenter action (#7911)
mydea 1d5430e
ci: Finally fix auto-merge for gitflow (#7924)
mydea 390faf3
fix(replay): Ensure we still truncate large bodies if they are failed…
mydea 2bcbf3e
fix(nextjs): Fix inject logic for Next.js 13.3.1 canary (#7921)
13cbb1d
doc(sveltekit): Promote the SDK to beta state (#7874)
Lms24 15d9102
feat(nextjs): Add `disableLogger` option that automatically tree shak…
24a235d
fix(replay): Ensure console breadcrumb args are truncated (#7917)
mydea 5a3c29d
fix(replay): Ensure we do not set replayId on dsc if replay is disabl…
mydea bbbea86
test(e2e): Use pnpm for e2e tests (#7930)
0161cdd
feat(replay): Change `flush()` API to record current event buffer (#7…
billyvg c0e5504
feat(tracing): Add `db.system` span data to DB spans (#7952)
AbhiPrasad 8b97f80
feat(core): Add multiplexed transport (#7926)
timfish 7d10c44
feat(replay): Allow to configure URLs to capture network bodies/heade…
mydea 300b220
feat(replay): Change `stop()` to flush and remove current session (#7…
billyvg 7d75fac
build(deps-dev): Bump yaml from 2.1.1 to 2.2.2
dependabot[bot] 6de02c0
ci: Fix issue state check (#7962)
mydea 82cebd3
ref: Fix comment for normalize (#7954)
mydea f649b24
fix(utils): `normalize()` to a max. of 100 levels deep by default (#7…
mydea bce8c36
feat(replay): Extend session idle time until expire to 15min (#7955)
mydea d1b09c6
ref(core): Update multiplexed transport to default to errors only (#7…
mydea 1683caf
feat(node): Make Undici a default integration. (#7967)
AbhiPrasad a5b9284
feat(replay): Change the behavior of error-based sampling (#7768)
billyvg 619c4b0
Revert "doc(sveltekit): Promote the SDK to beta state (#7874)" (#7974)
Lms24 5f9b9ce
feat(sveltekit): Convert `sentryHandle` to a factory function (#7975)
Lms24 ec1a441
test: Fix flaky replay DSC test (#7973)
mydea 54d588e
doc(sveltekit): Promote the SDK to beta state (#7976)
Lms24 da799e9
meta(changelog): Update Changelog for 7.50.0
mydea 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
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/bufferMode/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: 1, | ||
replaysSessionSampleRate: 0.0, | ||
replaysOnErrorSampleRate: 0.0, | ||
|
||
integrations: [window.Replay], | ||
}); |
18 changes: 18 additions & 0 deletions
18
packages/browser-integration-tests/suites/replay/bufferMode/subject.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,18 @@ | ||
document.getElementById('go-background').addEventListener('click', () => { | ||
Object.defineProperty(document, 'hidden', { value: true, writable: true }); | ||
const ev = document.createEvent('Event'); | ||
ev.initEvent('visibilitychange'); | ||
document.dispatchEvent(ev); | ||
}); | ||
|
||
document.getElementById('error').addEventListener('click', () => { | ||
throw new Error('Ooops'); | ||
}); | ||
|
||
document.getElementById('error2').addEventListener('click', () => { | ||
throw new Error('Another error'); | ||
}); | ||
|
||
document.getElementById('log').addEventListener('click', () => { | ||
console.log('Some message'); | ||
}); |
12 changes: 12 additions & 0 deletions
12
packages/browser-integration-tests/suites/replay/bufferMode/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,12 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
</head> | ||
<body> | ||
<button id="go-background">Go to background</button> | ||
<button id="error">Throw Error</button> | ||
<button id="error2">Another Error</button> | ||
<button id="log">Log stuff to the console</button> | ||
</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.
Uh oh!
There was an error while loading. Please reload this page.