-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
meta: Update CHANGELOG for 7.45.0 #7588
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
35 commits
Select commit
Hold shift + click to select a range
15a36bc
feat(sveltekit): Add performance monitoring to Sveltekit server handl…
AbhiPrasad a11283c
Merge pull request #7547 from getsentry/master
github-actions[bot] 6426b58
feat(hub): Make scope always defined on the hub (#7551)
AbhiPrasad 5c5ac2c
ref(browser): Remove `sendBeacon` API usage (#7552)
AbhiPrasad 7b9198f
fix(browser): Ensure keepalive flag is correctly set for parallel req…
mydea 72dca3e
chore(otel): Update docs for using propagator (#7548)
AbhiPrasad 2738b5f
ref(core): Remove guards around scope usage (#7554)
AbhiPrasad 95b0a6c
feat(node): Export tracing from `@sentry/node` (#7503)
timfish 86b89b9
feat(tracing): Migrate some imports away from `@sentry/tracing` (#7539)
timfish baff7dd
feat(nextjs): Remove `@sentry/tracing` dependency from nextjs SDK (#7…
timfish a73f58b
fix(node): Consider tracing error handler for process exit (#7558)
timfish 4f34b5a
feat(core): Add trace function (#7556)
AbhiPrasad 89b5720
fix(tracing): Account for case where startTransaction returns undefin…
AbhiPrasad e97b097
feat(sveltekit): Add SvelteKit routing instrumentation (#7565)
Lms24 d265fe5
ref(sveltekit): Rewrite `sentryHandle` using trace func (#7559)
AbhiPrasad 714a9eb
feat(sveltekit): Add performance monitoring for server load (#7536)
AbhiPrasad 046c0c2
fix(nextjs): Add tracing extension methods in `wrapServerComponentWit…
Lms24 09ee30b
feat(sveltekit): Add performance monitoring for client load (#7537)
AbhiPrasad 8e78e6e
fix(react): Handle case where error.cause already defined (#7557)
AbhiPrasad aca5249
ci: Improve flaky test detector performance (#7569)
mydea 21dd20d
feat(replay): Capture fetch body size for replay events (#7524)
mydea 0e3552d
build(cdn): Ensure ES5 bundles do not use non-ES5 code (#7550)
mydea ff469ab
feat(tracing): Remove some more `@sentry/tracing` references (#7570)
timfish eb1a87c
feat(otel): Remove `@sentry/tracing` dependency from `opentelemetry-n…
timfish 98b6a1c
feat(remix): Remove `@sentry/tracing` dependency from Remix SDK (#7575)
timfish f38ad39
feat(gatsby): Remove `@sentry/tracing` dependency from Gatsby SDK (#7…
timfish 383e929
feat(serverless): Remove `@sentry/tracing` dependency from serverless…
timfish 551aedc
test(replay): Add replay E2E test (#7486)
mydea 0a1a567
fix(core): Ensure `ignoreErrors` only applies to error events (#7573)
mydea 579d119
feat(replay): Add `replay_id` to transaction DSC (#7571)
mydea b0be4dd
feat(ember): Remove `@sentry/tracing` dependency from Ember SDK (#7583)
timfish f1128bd
fix(sveltekit): Termporarily disable serverside load tracing (#7587)
Lms24 1121507
fix(sveltekit): Handle same origin and destination navigations correc…
Lms24 047fbc8
meta: Update CHANGELOG for 7.45.0
Lms24 f832d4e
Update CHANGELOG.md
Lms24 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
23 changes: 23 additions & 0 deletions
23
packages/browser-integration-tests/suites/replay/dsc/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,23 @@ | ||
import * as Sentry from '@sentry/browser'; | ||
import { Integrations } from '@sentry/tracing'; | ||
|
||
window.Sentry = Sentry; | ||
window.Replay = new Sentry.Replay({ | ||
flushMinDelay: 200, | ||
flushMaxDelay: 200, | ||
useCompression: false, | ||
}); | ||
|
||
Sentry.init({ | ||
dsn: 'https://[email protected]/1337', | ||
integrations: [new Integrations.BrowserTracing({ tracingOrigins: [/.*/] }), window.Replay], | ||
environment: 'production', | ||
tracesSampleRate: 1, | ||
replaysSessionSampleRate: 0.0, | ||
replaysOnErrorSampleRate: 1.0, | ||
}); | ||
|
||
Sentry.configureScope(scope => { | ||
scope.setUser({ id: 'user123', segment: 'segmentB' }); | ||
scope.setTransactionName('testTransactionDSC'); | ||
}); |
33 changes: 33 additions & 0 deletions
33
packages/browser-integration-tests/suites/replay/dsc/test.ts
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,33 @@ | ||
import { expect } from '@playwright/test'; | ||
import type { EventEnvelopeHeaders } from '@sentry/types'; | ||
|
||
import { sentryTest } from '../../../utils/fixtures'; | ||
import { envelopeHeaderRequestParser, getFirstSentryEnvelopeRequest } from '../../../utils/helpers'; | ||
import { getReplaySnapshot, shouldSkipReplayTest, waitForReplayRunning } from '../../../utils/replayHelpers'; | ||
|
||
sentryTest('should add replay_id to dsc of transactions', async ({ getLocalTestPath, page, browserName }) => { | ||
// This is flaky on webkit, so skipping there... | ||
if (shouldSkipReplayTest() || browserName === 'webkit') { | ||
sentryTest.skip(); | ||
} | ||
|
||
const url = await getLocalTestPath({ testDir: __dirname }); | ||
await page.goto(url); | ||
|
||
const envHeader = await getFirstSentryEnvelopeRequest<EventEnvelopeHeaders>(page, url, envelopeHeaderRequestParser); | ||
|
||
await waitForReplayRunning(page); | ||
const replay = await getReplaySnapshot(page); | ||
|
||
expect(replay.session?.id).toBeDefined(); | ||
|
||
expect(envHeader.trace).toBeDefined(); | ||
expect(envHeader.trace).toEqual({ | ||
environment: 'production', | ||
user_segment: 'segmentB', | ||
sample_rate: '1', | ||
trace_id: expect.any(String), | ||
public_key: 'public', | ||
replay_id: replay.session?.id, | ||
}); | ||
}); |
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
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.
we usually don't include build stuff but since this fixes a bug, let's leave it in