-
-
Notifications
You must be signed in to change notification settings - Fork 204
fix(deps): update dependency @sentry/node to v9 #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-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/cli |
5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/audit-command |
5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/coverage-command |
6.1.3-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/diff-command |
5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/introspect-command |
5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/similar-command |
5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/validate-command |
5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
npm ↗︎ unpkg ↗︎ |
@graphql-inspector/core |
6.3.0-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c |
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
10a8da6
to
2e0c663
Compare
2e0c663
to
94028ee
Compare
94028ee
to
519692f
Compare
519692f
to
66d05e5
Compare
66d05e5
to
773ab5e
Compare
773ab5e
to
400ba67
Compare
400ba67
to
a6fae54
Compare
a6fae54
to
85f2259
Compare
85f2259
to
9e16b77
Compare
9e16b77
to
66d4b50
Compare
66d4b50
to
e9c97c4
Compare
e9c97c4
to
7fbef57
Compare
7fbef57
to
daa7226
Compare
daa7226
to
1121dbb
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
->9.40.0
Release Notes
getsentry/sentry-javascript (@sentry/node)
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)tracing/errors.ts
(#16888)beforeSendLog
inconsoleSandbox
(#16968)source=route
(#16984)Work in this release was contributed by @janpapenbrock. Thank you for your contribution!
Bundle size 📦
v9.38.0
Compare Source
Important Changes
This release publishes the
@sentry/node-native
SDK.Other Changes
debug
to replacelogger
(#16906)nextHopProtocol
when adding resource spans (#16900)Bundle size 📦
v9.37.0
Compare Source
Important Changes
feat(nuxt): Parametrize SSR routes (#16843)
When requesting dynamic or catch-all routes in Nuxt, those will now be shown as parameterized routes in Sentry.
For example,
/users/123
will be shown as/users/:userId()
in Sentry. This will make it easier to identify patterns and make grouping easier.Other Changes
beforeStartNavigationSpan
lifecycle hook (#16863)wrapRequestHandler
(#16852)instrumentation-client.ts|js
(#16855)redirect()
calls as errors in Cloudflare (#16853)deleteSourcemapsAfterUpload
jsdoc default value (#16867)Work in this release was contributed by @zachkirsch. Thank you for your contribution!
Bundle size 📦
v9.36.0
Compare Source
Important Changes
This release adds a new SDK
@sentry/node-core
which ships without any OpenTelemetry instrumententation out of the box. All OpenTelemetry dependencies are peer dependencies and OpenTelemetry has to be set up manually.Use
@sentry/node-core
when:Use
@sentry/node
when:The ANR integration has been deprecated and will be removed in future versions. Use
eventLoopBlockIntegration
from@sentry/node-native
instead._experiments.ignoreMutations
option (#16816)This replay option allows to configure a selector list of elements to not capture mutations for.
Other changes
@sentry/replay-internal
(#16794)diagnoseSdkConnectivity
request (#16840)Work in this release was contributed by @Spice-King and @stayallive. Thank you for your contributions!
Bundle size 📦
v9.35.0
Compare Source
Context
andContexts
types (#16763)eventLoopBlockIntegration
(#16709)parentSpan
is considered (#16776)require
for fastify integration (#16789)@sentry/cloudflare
as optional peerDependency (#16782)@Cron
decorated tasks (#16792)Work in this release was contributed by @0xbad0c0d3 and @alSergey. Thank you for your contributions!
v9.34.0
Compare Source
Important Changes
feat(nuxt): Add Cloudflare Nitro plugin (#15597)
A Nitro plugin for
@sentry/nuxt
which initializes Sentry when deployed to Cloudflare (cloudflare-pages
preset).Remove the previous server config file:
sentry.server.config.ts
Add a plugin in
server/plugins
(e.g.server/plugins/sentry-cloudflare-setup.ts
)Add this code in your plugin file
or with access to
nitroApp
:Other Changes
Bundle size 📦
v9.33.0
Compare Source
Important Changes
vercelAiIntegration
to cloudflare & vercel-edge (#16732)The
vercelAiIntegration
is now available as opt-in for the Cloudflare and the Next.js SDK for Vercel Edge.To use it, add the integration in
Sentry.init
And enable telemetry for Vercel AI calls
The Node.js SDK now includes instrumentation for Postgres.js.
If you're on Fastify v5, you no longer need to call
setupFastifyErrorHandler
. It is done automatically by the node SDK. Older versions still rely on callingsetupFastifyErrorHandler
.Other Changes
waitUntil
(#16681)ai
from default server external packages (#16736)Work in this release was contributed by @0xbad0c0d3. Thank you for your contribution!
v9.32.0
Compare Source
Important Changes
Enhances CLS (Cumulative Layout Shift) spans by adding attributes detailing the elements that caused layout shifts.
instrumentWorkflowWithSentry
to instrument workflows (#16672)We've added support for Cloudflare Workflows, enabling comprehensive tracing for your workflow runs. This integration uses the workflow's instanceId as the Sentry trace_id and for sampling, linking all steps together. You'll now be able to see full traces, including retries with exponential backoff.
Adds the ability to send logs to Sentry via a pino transport.
Other Changes
errorHandler
option (#16718)CloudEventsContext
compatible withCloudEvent
(#16705)false
(#16695)@opentelemetry/resources
(#16727)Work in this release was contributed by @flaeppe. Thank you for your contribution!
Bundle size 📦
v9.31.0
Compare Source
Important Changes
Adds an option to automatically generate a random tunnel route for the Next.js SDK. This helps prevent ad blockers and other tools from blocking Sentry requests by using a randomized path instead of the predictable
/monitoring
endpoint.scope
&client
togetTraceData
(#16633)Adds the ability to pass custom
scope
andclient
parameters to thegetTraceData
function, providing more flexibility when generating trace data for distributed tracing.Other Changes
x-forwarded-host
andx-forwarded-proto
headers (#16687)@sentry/opentelemetry
dependency (#16677)@sentry/pino-transport
(#16652)safeJoin
usage in console logging integration (#16658)CloudEvent
type compatible (#16661)instrumentation-client.js
file (#16637)Bundle size 📦
v9.30.0
Compare Source
vercelAiIntegration
whenai
module is detected (#16565)modulesIntegration
works in more environments (#16566)sendDefaultPii
(#16527)Bundle size 📦
v9.29.0
Compare Source
v9.28.1
Compare Source
Work in this release was contributed by @eltigerchino. Thank you for your contribution!
Bundle size 📦
| Path | Size
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.