Bump @sentry/browser from 6.19.7 to 10.32.0 in /scripts/yarn
Type: Pull Request
State: Open
Association: Unknown
Comments: 2
(6 months ago)
(6 months ago)
Bumps @sentry/browser from 6.19.7 to 10.32.0.
Release notes
Sourced from @sentry/browser's releases.
10.32.0
Important Changes
feat(core): Apply scope attributes to logs (#18184)
You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only
string,numberandbooleanattribute values are supported.Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });Sentry.withScope(scope => {
scope.setAttribute('step', 'authentication');// scope attributes
is_admin,auth_providerandstepare added
Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
Sentry.logger.info(updated ${user.id} last activity);
});// scope attributes
is_adminandauth_providerare added
Sentry.logger.warn('stale website version, reloading page');
feat(replay): Add Request body with
attachRawBodyFromRequestoption (#18501)To attach the raw request body (from
Requestobjects passed as the firstfetchargument) to replay events, you can now use theattachRawBodyFromRequestoption in the Replay integration:Sentry.init({ integrations: [ Sentry.replayIntegration({ attachRawBodyFromRequest: true, }), ], });feat(tanstackstart-react): Trace server functions (#18500)
To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with
wrapFetchWithSentry.// src/server.ts import { wrapFetchWithSentry } from '@sentry/tanstackstart-react'; import handler, { createServerEntry } from '@tanstack/react-start/server-entry';export default createServerEntry(
wrapFetchWithSentry({
fetch(request: Request) {
return handler.fetch(request);
},
... (truncated)
Changelog
Sourced from @sentry/browser's changelog.
10.32.0
Important Changes
feat(core): Apply scope attributes to logs (#18184)
You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only
string,numberandbooleanattribute values are supported.Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });Sentry.withScope(scope => {
scope.setAttribute('step', 'authentication');// scope attributes
is_admin,auth_providerandstepare added
Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
Sentry.logger.info(updated ${user.id} last activity);
});// scope attributes
is_adminandauth_providerare added
Sentry.logger.warn('stale website version, reloading page');
feat(replay): Add Request body with
attachRawBodyFromRequestoption (#18501)To attach the raw request body (from
Requestobjects passed as the firstfetchargument) to replay events, you can now use theattachRawBodyFromRequestoption in the Replay integration:Sentry.init({ integrations: [ Sentry.replayIntegration({ attachRawBodyFromRequest: true, }), ], });feat(tanstackstart-react): Trace server functions (#18500)
To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with
wrapFetchWithSentry.// src/server.ts import { wrapFetchWithSentry } from '@sentry/tanstackstart-react'; import handler, { createServerEntry } from '@tanstack/react-start/server-entry';export default createServerEntry(
wrapFetchWithSentry({
fetch(request: Request) {
return handler.fetch(request);
... (truncated)
Commits
341340erelease: 10.32.0445b682Merge pull request #18560 from getsentry/prepare-release/10.32.0b21806cmeta(changelog): Update changelog for 10.32.0dac328achore(changelog): Add entry for tanstack start wrapFetchWithSentry (#18558)f196ba2chore(deps): bump@trpc/serverfrom 10.45.2 to 10.45.3 in /dev-packages/e2e-t...ea3a45fchore(changelog): Add entry for scope attributes (#18555)8da7295feat(core): Apply scope attributes to logs (#18184)968e529feat(vue): Add TanStack Router integration (#18547)97e0be0chore(e2e): Pin to react-router 7.10.1 in spa e2e test (#18548)ad28c4dfix(solid/tanstackrouter): Ensure web vitals are sent on pageload (#18542)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Package Dependencies
@sentry/browser
npm
6.19.7 → 10.32.0
Major
/scripts/yarn
Technical Details
| ID: | 12117486 |
| UUID: | 3743559462 |
| Node ID: | PR_kwDOIiJjWs65ne2J |
| Host: | GitHub |
| Repository: | python-benchmark/weblate |