-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Upgrade @sentry/browser from 9.7.0 to 9.9.0 #340
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
Conversation
Snyk has created this PR to upgrade @sentry/browser from 9.7.0 to 9.9.0. See this package in npm: @sentry/browser See this project in Snyk: https://app.snyk.io/org/reisene/project/55e114f8-489e-4f14-b900-20574b041e59?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr
Current Aviator status
This PR was merged manually (without Aviator). Merging manually can negatively impact the performance of the queue. Consider using Aviator next time.
See the real-time status of this PR on the
Aviator webapp.
Use the Aviator Chrome Extension
to see the status of your PR within GitHub.
|
Aviator Changeset actions:
|
Please follow naming conventions! 😿 |
Important Review skippedIgnore keyword(s) in the title. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) |
Przewodnik Recenzenta od SourceryTo żądanie pull aktualizuje pakiet Diagram sekwencji wysyłania logów za pomocą loggera SentrysequenceDiagram
participant User
participant Application
participant SentrySDK as Sentry
User->>Application: Perform action that generates a log
Application->>Sentry: Sentry.logger.info(message, context)
Sentry->>Sentry: Process log message and context
Sentry->>Sentry: Capture event
Sentry->>Sentry: Send event to Sentry
Diagram sekwencji łączenia poprzednich śladówsequenceDiagram
participant Browser
participant Application
participant SentrySDK as Sentry
Browser->>Application: User navigates to page
Application->>Sentry: Sentry.init({integrations: [browserTracingIntegration({linkPreviousTrace: 'in-memory'})]})
Sentry->>Sentry: Start new trace
Sentry->>Sentry: Check for previous trace
alt Previous trace exists
Sentry->>Sentry: Create link to previous trace
end
Sentry->>Sentry: Send trace to Sentry
Zmiany na Poziomie Plików
Porady i poleceniaInterakcja z Sourcery
Dostosowywanie Twojego DoświadczeniaUzyskaj dostęp do swojego panelu, aby:
Uzyskiwanie Pomocy
Original review guide in EnglishReviewer's Guide by SourceryThis pull request upgrades the Sequence diagram for sending logs with Sentry loggersequenceDiagram
participant User
participant Application
participant SentrySDK as Sentry
User->>Application: Perform action that generates a log
Application->>Sentry: Sentry.logger.info(message, context)
Sentry->>Sentry: Process log message and context
Sentry->>Sentry: Capture event
Sentry->>Sentry: Send event to Sentry
Sequence diagram for linking previous tracessequenceDiagram
participant Browser
participant Application
participant SentrySDK as Sentry
Browser->>Application: User navigates to page
Application->>Sentry: Sentry.init({integrations: [browserTracingIntegration({linkPreviousTrace: 'in-memory'})]})
Sentry->>Sentry: Start new trace
Sentry->>Sentry: Check for previous trace
alt Previous trace exists
Sentry->>Sentry: Create link to previous trace
end
Sentry->>Sentry: Send trace to Sentry
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Pominęliśmy przeglądanie tego żądaniaPull Request. Oto dlaczego:
- Wygląda na to, że został stworzony przez bota (hej, snyk-io[bot]!). Zakładamy, że wie, co robi!
- Wygląda na to, że został stworzony przez bota („[Snyk]” znaleziono w tytule). Zakładamy, że wie, co robi!
Original comment in English
We have skipped reviewing this pull request. Here's why:
- It seems to have been created by a bot (hey, snyk-io[bot]!). We assume it knows what it's doing!
- It seems to have been created by a bot ('[Snyk]' found in title). We assume it knows what it's doing!
Here's the code health analysis summary for commits Analysis Summary
|
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Files
|
Skipping bot pull request creation because the queue is empty and this pull request is up to date with |
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.
LGTM 👍
Merge ProtectionsYour pull request matches the following merge protections and will not be merged until they are valid. 🟢 Do not merge outdated PRsWonderful, this rule succeeded.Make sure PRs are almost up to date before merging
|
|
Snyk has created this PR to upgrade @sentry/browser from 9.7.0 to 9.9.0.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
The recommended version is 2 versions ahead of your current version.
The recommended version was released 24 days ago.
Release notes
Package name: @sentry/browser
Important Changes
feat(nextjs): Support
instrumentation-client.ts
(#15705)Next.js recently added a feature to support client-side (browser) instrumentation via the
experimental.clientInstrumentationHook
flag and theinstrumentation-client.ts
file.To be forwards compatible, the Sentry Next.js SDK will now pick up
instrumentation-client.ts
files even on older Next.js versions and add them to your client bundles.It is suggested that you either rename your
sentry.client.config.ts
file toinstrumentation-client.ts
, or if you already happen to have ainstrumentation-client.ts
file move the contents ofsentry.client.config.ts
toinstrumentation-client.ts
.feat(browser): Add
previous_trace
span links (#15569)The
@ sentry/browser
SDK and SDKs based on@ sentry/browser
now emits a link from the first root span of a newly started trace to the root span of a previously started trace. You can control this feature via an option inbrowserTracingIntegration()
:feat(browser): Add
logger.X
methods to browser SDK (#15763)For Sentry's upcoming logging product, the SDK now supports sending logs via dedicated
dsn: 'your-dsn-here',
_experiments: {
enableLogs: true, // This is required to use the logging features
},
});
Sentry.logger.info('This is a trace message', { userId: 123 });
// See PR for better documentation
Please note that the logs product is still in early access. See the link above for more information.
Other Changes
parseStringToURL
method (#15768)dropUndefinedKeys
(#15760)shouldHandleError
(#15771)addNonEnumerableProperty
(#15766)dropUndefinedKeys()
(#15757)dropUndefinedKeys()
(#15781)Bundle size 📦
res.end
before passing to Proxy (#15776)eventFilters
integration (#15752)Bundle size 📦
captureLog
method (#15717)sentryHandleError
(#15726)fatal
level for unhandled rejections instrict
mode (#15720)Bundle size 📦
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information:
Podsumowanie od Sourcery
Aktualizacja @sentry/browser z wersji 9.7.0 do 9.9.0
Ulepszenia:
Original summary in English
Summary by Sourcery
Upgrade @sentry/browser from version 9.7.0 to 9.9.0
Enhancements: