-
-
Notifications
You must be signed in to change notification settings - Fork 205
fix(deps): update dependency @sentry/node to v10 #2872
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
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/major-sentry-javascript-monorepo
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
🚀 Snapshot Release (
|
Package | Version | Info |
---|---|---|
@graphql-inspector/action |
5.0.9-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/cli |
5.0.9-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/audit-command |
5.0.9-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/coverage-command |
6.1.3-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/diff-command |
5.0.9-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/introspect-command |
5.0.9-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/similar-command |
5.0.9-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/validate-command |
5.0.9-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/core |
6.3.0-alpha-20250811132436-4259670e3629d193d993bd357dcb879aab392a6e |
npm ↗︎ unpkg ↗︎ |
💻 Website PreviewThe latest changes are available as preview in: https://pr-2872.graphql-inspector.pages.dev |
aea1855
to
c1b2065
Compare
c1b2065
to
b72f686
Compare
b72f686
to
b3288de
Compare
b3288de
to
b209014
Compare
b209014
to
8536389
Compare
8536389
to
c6ae297
Compare
c6ae297
to
2d6dc39
Compare
2d6dc39
to
8684c2a
Compare
8684c2a
to
432b786
Compare
432b786
to
b27dab2
Compare
b27dab2
to
905ae71
Compare
905ae71
to
ff27f30
Compare
ff27f30
to
3396708
Compare
9e16b77
to
66d4b50
Compare
66d4b50
to
e9c97c4
Compare
e9c97c4
to
7fbef57
Compare
7fbef57
to
daa7226
Compare
daa7226
to
1121dbb
Compare
1121dbb
to
5e81a05
Compare
5e81a05
to
6de19ec
Compare
6de19ec
to
d1057d5
Compare
d1057d5
to
2060113
Compare
2060113
to
8c65720
Compare
8c65720
to
ba5530b
Compare
ba5530b
to
7e7e67a
Compare
7e7e67a
to
5027e9f
Compare
5027e9f
to
4259670
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
8.49.0
->10.4.0
Release Notes
getsentry/sentry-javascript (@sentry/node)
v10.4.0
Compare Source
Important Changes
sendDefaultPii
istrue
This release includes a fix for a behaviour change
that was originally introduced with v9 of the SDK: User IP Addresses should only be added to Sentry events automatically,
if
sendDefaultPii
was set totrue
.However, the change in v9 required further internal adjustment, which should have been included in v10 of the SDK.
Unfortunately, the change did not make it into the initial v10 version but is now applied with
10.4.0
.There is no API breakage involved and hence it is safe to update.
However, after updating the SDK, events (errors, traces, replays, etc.) sent from the browser, will only include
user IP addresses, if you set
sendDefaultPii: true
in yourSentry.init
options.We apologize for any inconvenience caused!
ignoreStaticAssets
(#17370)This release adds a new option to
httpIntegration
to ignore requests for static assets (e.g.favicon.xml
orrobots.txt
). The option defaults totrue
, meaning that going forward, such requests will not be traced by default. You can still enable tracing for these requests by setting the option tofalse
:Other Changes
Internal Changes
Bundle size 📦
v10.3.0
Compare Source
skipOpenTelemetrySetup
option (#17349)globalHandlersIntegration
(#17216)handle
(#17277)v10.2.0
Compare Source
Important Changes
ignoreSpans
option (#17078)This release adds a new top-level
Sentry.init
option,ignoreSpans
, that can be used as follows:Spans matching the filter criteria will not be recorded. Potential child spans of filtered spans will be re-parented, if possible.
Adds support for OpenAI manual instrumentation in
@sentry/cloudflare
and@sentry/vercel-edge
.To instrument the OpenAI client, wrap it with
Sentry.instrumentOpenAiClient
and set recording settings.The
startTrace
option is deprecated and will be removed in a future major version. If you want to disable tracing, setSENTRY_TRACES_SAMPLE_RATE
to0.0
. instead. As of today, the flag does not affect traces anymore.Other Changes
gen_ai.invoke_agent
spans from child LLM calls (#17281)sentry.origin
span attribute toSentryTraced
decorator (#17318)openai
to the instrumented fn (#17320)sendBufferedReplayOrFlush
when opening/sending feedback (#17236)v10.1.0
Compare Source
diagnoseSdkConnectivity
doesn't create span (#17280)v10.0.0
Compare Source
Version
10.0.0
marks a release of the Sentry JavaScript SDKs that contains breaking changes. The goal of this release is to primarily upgrade the underlying OpenTelemetry dependencies to v2 with minimal breaking changes.How To Upgrade
Please carefully read through the migration guide in the Sentry docs on how to upgrade from version 9 to version 10. Make sure to select your specific platform/framework in the top left corner: https://docs.sentry.io/platforms/javascript/migration/v9-to-v10/
A comprehensive migration guide outlining all changes can be found within the Sentry JavaScript SDK Repository: https://github.com/getsentry/sentry-javascript/blob/develop/MIGRATION.md
Breaking Changes
BaseClient
(#17071)enableLogs
andbeforeSendLog
experimental options (#17063)hasTracingEnabled
(#17072)_experiments.autoFlushOnFeedback
option as default (#17220)Other Changes
SentryNodeServerlessSDKv10
v10 AWS Lambda Layer (#17069)flushIfServerless
function (#17177)strictTraceContinuation
(#16313)@sentry-internal/node-native-stacktrace
to0.2.2
(#17207)shouldHandleError
option tofastifyIntegration
(#16845)createSentryHandleError
(#17235)fastifyIntegration
error handler (#17208)vercelAiIntegration
have correct trace connected (#17132)handleErrorWithSentry
(#17157)Work in this release was contributed by @richardjelinek-fastest. Thank you for your contribution!
Bundle size 📦
v9.45.0
Compare Source
openai
to the instrumented fn (#17353)Bundle size 📦
v9.44.2
Compare Source
This release is publishing the AWS Lambda Layer under
SentryNodeServerlessSDKv9
. The previous release9.44.1
accidentally published the layer underSentryNodeServerlessSDKv10
.v9.44.1
Compare Source
v9.44.0
Compare Source
_experiments.autoFlushOnFeedback
(#17219)flushIfServerless
function (#17239)@sentry-internal/node-native-stacktrace
to0.2.2
(#17256)createSentryHandleError
(#17244)Bundle size 📦
v9.43.0
Compare Source
fastifyIntegration
error handler (#17211)Bundle size 📦
v9.42.1
Compare Source
globalThis
(#17185)handleErrorWithSentry
(#17174)Bundle size 📦
v9.42.0
Compare Source
Bundle size 📦
v9.41.0
Compare Source
v9.40.0
Compare Source
Important Changes
This release adds two Browser SDK APIs to let the main thread know about debugIds of worker files:
webWorkerIntegration({worker})
to be used in the main threadregisterWebWorker({self})
to be used in the web workerThe internal SDK
logger
export from@sentry/core
has been deprecated in favor of thedebug
export.debug
only exposeslog
,warn
, anderror
methods but is otherwise identical tologger
. Note that this deprecation does not affect thelogger
export from other packages (like@sentry/browser
or@sentry/node
) which is used for Sentry Logging.This release adds official support for instrumenting OpenAI SDK calls in with Sentry tracing, following OpenTelemetry semantic conventions for Generative AI. It instruments:
client.chat.completions.create()
- For chat-based completionsclient.responses.create()
- For the responses APIOther Changes
@opentelemetry/instrumentation
range to cover0.203.0
(#17043)Work in this release was contributed by @0xbad0c0d3 and @tommy-gilligan. Thank you for your contributions!
Bundle size 📦
v9.39.0
Compare Source
Important Changes
afterStartPageloadSpan
hook to improve spanId assignment on web vital spans (#16893)This PR adds a new afterStartPageloadSpan lifecycle hook to more robustly assign the correct pageload span ID to web vital spans, replacing the previous unreliable "wait for a tick" approach with a direct callback that fires when the pageload span becomes available.
This PR implements client-side parameterized routes for Next.js by leveraging an injected manifest within the existing app-router instrumentation to automatically parameterize all client-side transactions (e.g.
users/123
andusers/456
now become becomeusers/:id
).This PR changes the default behavior in the Node SDK to drop HTTP spans with 401-404 and 3xx status codes by default to reduce noise in tracing data.
Other Changes
vercel.ai.X
(#16908)disableSentryWebpackConfig
flag (#17013)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.