-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
meta(changelog): Update changelog for 8.16.0 #12831
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
22 commits
Select commit
Hold shift + click to select a range
552fc2a
Merge pull request #12780 from getsentry/master
github-actions[bot] 15230f1
feat(opentelemetry): Allow skipping of span data inference (#12779)
f4e7203
chore(e2e): Add react-17 e2e test app (#12778)
andreiborza 55a5cef
ci: Fix permissions for external contributors PRs (for real?) (#12776)
mydea a2dcb28
feat(node): Allow to pass instrumentation config to `httpIntegration`…
mydea ecc95e7
feat(nuxt): Inject sentry config with Nuxt `addPluginTemplate` (#12760)
s1gr1d d6cd5ca
test(remix): Add dependency resolution overrides to fix breaking Node…
Lms24 4c54a79
feat(nextjs): Use spans generated by Next.js for App Router (#12729)
2e3ae56
test(nextjs): Fix Next.js canary tests (#12792)
aded253
test(e2e): Run required E2E tests on PRs from forks (#12791)
Lms24 3883517
fix(feedback): Add missing `h` import in `ScreenshotEditor` (#12713) …
andreiborza aefbfaa
ref(feedback): Let CropCorner inherit the existing h prop (#12814)
ryan953 07c1360
ref(otel): Ensure we never swallow args for ContextManager (#12798)
mydea 6f590fa
test(e2e): Don't run optional E2E tests on Dependabot PRs (#12818)
Lms24 25db805
test(loader): Update Loader Script to latest (#12764)
mydea 9b5cf26
fix(node): Ensure `autoSessionTracking` is enabled by default (#12790)
mydea 580e6a4
feat(nestjs): Add nest cron monitoring support (#12781)
nicohrubec a5ea680
fix: Apply stack frame metadata before event processors (#12799)
0952ec4
ci: Small adaptions to external contributor workflow (#12828)
mydea 47e1b7e
feat(nuxt): Add server error hook (#12796)
s1gr1d 6da0728
build(nuxt): Add nuxt to craft (#12821)
s1gr1d d9c6dd2
meta(changelog): Update changelog for 8.16.0
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
138 changes: 2 additions & 136 deletions
138
dev-packages/browser-integration-tests/fixtures/loader.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
...ages/browser-integration-tests/suites/integrations/moduleMetadata/appliesMetadata/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,28 @@ | ||
import * as Sentry from '@sentry/browser'; | ||
|
||
Sentry.init({ | ||
dsn: 'https://[email protected]/1337', | ||
integrations: [Sentry.moduleMetadataIntegration()], | ||
beforeSend(event) { | ||
const moduleMetadataEntries = []; | ||
|
||
if (event.type === undefined) { | ||
try { | ||
event.exception.values.forEach(value => { | ||
value.stacktrace.frames.forEach(frame => { | ||
moduleMetadataEntries.push(frame.module_metadata); | ||
}); | ||
}); | ||
} catch (e) { | ||
// noop | ||
} | ||
} | ||
|
||
event.extra = { | ||
...event.extra, | ||
module_metadata_entries: moduleMetadataEntries, | ||
}; | ||
|
||
return event; | ||
}, | ||
}); |
22 changes: 22 additions & 0 deletions
22
...s/browser-integration-tests/suites/integrations/moduleMetadata/appliesMetadata/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,22 @@ | ||
var _sentryModuleMetadataGlobal = | ||
typeof window !== 'undefined' | ||
? window | ||
: typeof global !== 'undefined' | ||
? global | ||
: typeof self !== 'undefined' | ||
? self | ||
: {}; | ||
|
||
_sentryModuleMetadataGlobal._sentryModuleMetadata = _sentryModuleMetadataGlobal._sentryModuleMetadata || {}; | ||
|
||
_sentryModuleMetadataGlobal._sentryModuleMetadata[new Error().stack] = Object.assign( | ||
{}, | ||
_sentryModuleMetadataGlobal._sentryModuleMetadata[new Error().stack], | ||
{ | ||
foo: 'bar', | ||
}, | ||
); | ||
|
||
setTimeout(() => { | ||
throw new Error('I am a module metadata Error'); | ||
}, 0); |
Oops, something went wrong.
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.