chore(deps): bump @sentry/node from 7.102.1 to 7.105.0 #123

Closed
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/sentry/node-7.105.0 into main
dependabot[bot] commented 2024-03-04 20:17:50 +08:00 (Migrated from github.com)

Bumps @sentry/node from 7.102.1 to 7.105.0.

Release notes

Sourced from @​sentry/node's releases.

7.105.0

Important Changes

  • feat: Ensure withActiveSpan is exported everywhere (#10877)

You can use the withActiveSpan method to ensure a certain span is the active span in a given callback. This can be used to create a span as a child of a specific span with the startSpan API methods:

const parentSpan = Sentry.startInactiveSpan({ name: 'parent' });
if (parentSpan) {
  withActiveSpan(parentSpan, () => {
    // This will be a direct child of parentSpan
    const childSpan = Sentry.startInactiveSpan({ name: 'child' });
  });
}

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped) 78.71 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 69.87 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) - Webpack (gzipped) 73.83 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 63.48 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 33.84 KB
@​sentry/browser (incl. browserTracingIntegration) - Webpack (gzipped) 34.88 KB
@​sentry/browser (incl. Feedback) - Webpack (gzipped) 31.44 KB
@​sentry/browser (incl. sendFeedback) - Webpack (gzipped) 31.45 KB
@​sentry/browser - Webpack (gzipped) 22.68 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped) 76.98 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 68.4 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 34.2 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 25.11 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 215.54 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 103.35 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 75.38 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 37.37 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 70.25 KB
@​sentry/react - Webpack (gzipped) 22.71 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 89.1 KB
@​sentry/nextjs Client - Webpack (gzipped) 53.28 KB
@​sentry-internal/feedback - Webpack (gzipped) 17.28 KB

7.104.0

Important Changes

  • feat(performance): create Interaction standalone spans on inp events (#10709)

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

7.105.0

Important Changes

  • feat: Ensure withActiveSpan is exported everywhere (#10877)

You can use the withActiveSpan method to ensure a certain span is the active span in a given callback. This can be used to create a span as a child of a specific span with the startSpan API methods:

const parentSpan = Sentry.startInactiveSpan({ name: 'parent' });
if (parentSpan) {
  withActiveSpan(parentSpan, () => {
    // This will be a direct child of parentSpan
    const childSpan = Sentry.startInactiveSpan({ name: 'child' });
  });
}

7.104.0

Important Changes

  • feat(performance): create Interaction standalone spans on inp events (#10709)

This release adds support for the INP web vital. This is currently only supported for Saas Sentry, and product support is released with the upcoming 24.3.0 release of self-hosted.

To opt-in to this feature, you can use the enableInp option in the browserTracingIntegration:

Sentry.init({
  integrations: [
    Sentry.browserTracingIntegration({
      enableInp: true,
    });
  ]
})

Other Changes

  • feat(feedback): Flush replays when feedback form opens (#10567)
  • feat(profiling-node): Expose nodeProfilingIntegration (#10864)
  • fix(profiling-node): Fix dependencies to point to current versions (#10861)
  • fix(replay): Add errorHandler for replayCanvas integration (#10796)

7.103.0

Important Changes

... (truncated)

Commits
  • e23dc27 release: 7.105.0
  • 0eac510 meta(changelog): Update changelog for v7.105.0 (#10880)
  • 7b11379 feat: Ensure withActiveSpan is exported everywhere [v7] (#10877)
  • ac5992f Merge branch 'release/7.104.0' into v7
  • eadb6c8 release: 7.104.0
  • 9d2f623 Merge pull request #10875 from getsentry/abhi-7.104.0-release
  • 868a20e fix(feedback): Update typing for v7
  • 17744cd feat(feedback): Flush replays when feedback form opens (#10567)
  • 3770187 fix(replay): Add errorHandler for replayCanvas integration (#10796)
  • c9e8fa9 meta: CHANGELOG for 7.104.0
  • Additional commits viewable in compare view

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 7.102.1 to 7.105.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript/releases"><code>@​sentry/node</code>'s releases</a>.</em></p> <blockquote> <h2>7.105.0</h2> <h3>Important Changes</h3> <ul> <li><strong>feat: Ensure <code>withActiveSpan</code> is exported everywhere (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10877">#10877</a>)</strong></li> </ul> <p>You can use the <code>withActiveSpan</code> method to ensure a certain span is the active span in a given callback. This can be used to create a span as a child of a specific span with the <code>startSpan</code> API methods:</p> <pre lang="js"><code>const parentSpan = Sentry.startInactiveSpan({ name: 'parent' }); if (parentSpan) { withActiveSpan(parentSpan, () =&gt; { // This will be a direct child of parentSpan const childSpan = Sentry.startInactiveSpan({ name: 'child' }); }); } </code></pre> <h2>Bundle size 📦</h2> <table> <thead> <tr> <th>Path</th> <th>Size</th> </tr> </thead> <tbody> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay, Feedback) - Webpack (gzipped)</td> <td>78.71 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay) - Webpack (gzipped)</td> <td>69.87 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay with Canvas) - Webpack (gzipped)</td> <td>73.83 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped)</td> <td>63.48 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing) - Webpack (gzipped)</td> <td>33.84 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. browserTracingIntegration) - Webpack (gzipped)</td> <td>34.88 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Feedback) - Webpack (gzipped)</td> <td>31.44 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. sendFeedback) - Webpack (gzipped)</td> <td>31.45 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> - Webpack (gzipped)</td> <td>22.68 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped)</td> <td>76.98 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped)</td> <td>68.4 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing) - ES6 CDN Bundle (gzipped)</td> <td>34.2 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> - ES6 CDN Bundle (gzipped)</td> <td>25.11 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay) - ES6 CDN Bundle (minified &amp; uncompressed)</td> <td>215.54 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing) - ES6 CDN Bundle (minified &amp; uncompressed)</td> <td>103.35 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> - ES6 CDN Bundle (minified &amp; uncompressed)</td> <td>75.38 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing) - ES5 CDN Bundle (gzipped)</td> <td>37.37 KB</td> </tr> <tr> <td><code>@​sentry/react</code> (incl. Tracing, Replay) - Webpack (gzipped)</td> <td>70.25 KB</td> </tr> <tr> <td><code>@​sentry/react</code> - Webpack (gzipped)</td> <td>22.71 KB</td> </tr> <tr> <td><code>@​sentry/nextjs</code> Client (incl. Tracing, Replay) - Webpack (gzipped)</td> <td>89.1 KB</td> </tr> <tr> <td><code>@​sentry/nextjs</code> Client - Webpack (gzipped)</td> <td>53.28 KB</td> </tr> <tr> <td><code>@​sentry-internal/feedback</code> - Webpack (gzipped)</td> <td>17.28 KB</td> </tr> </tbody> </table> <h2>7.104.0</h2> <h3>Important Changes</h3> <ul> <li><strong>feat(performance): create Interaction standalone spans on inp events (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10709">#10709</a>)</strong></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript/blob/7.105.0/CHANGELOG.md"><code>@​sentry/node</code>'s changelog</a>.</em></p> <blockquote> <h2>7.105.0</h2> <h3>Important Changes</h3> <ul> <li><strong>feat: Ensure <code>withActiveSpan</code> is exported everywhere (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10877">#10877</a>)</strong></li> </ul> <p>You can use the <code>withActiveSpan</code> method to ensure a certain span is the active span in a given callback. This can be used to create a span as a child of a specific span with the <code>startSpan</code> API methods:</p> <pre lang="js"><code>const parentSpan = Sentry.startInactiveSpan({ name: 'parent' }); if (parentSpan) { withActiveSpan(parentSpan, () =&gt; { // This will be a direct child of parentSpan const childSpan = Sentry.startInactiveSpan({ name: 'child' }); }); } </code></pre> <h2>7.104.0</h2> <h3>Important Changes</h3> <ul> <li><strong>feat(performance): create Interaction standalone spans on inp events (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10709">#10709</a>)</strong></li> </ul> <p>This release adds support for the INP web vital. This is currently only supported for Saas Sentry, and product support is released with the upcoming <code>24.3.0</code> release of self-hosted.</p> <p>To opt-in to this feature, you can use the <code>enableInp</code> option in the <code>browserTracingIntegration</code>:</p> <pre lang="js"><code>Sentry.init({ integrations: [ Sentry.browserTracingIntegration({ enableInp: true, }); ] }) </code></pre> <h3>Other Changes</h3> <ul> <li>feat(feedback): Flush replays when feedback form opens (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10567">#10567</a>)</li> <li>feat(profiling-node): Expose <code>nodeProfilingIntegration</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10864">#10864</a>)</li> <li>fix(profiling-node): Fix dependencies to point to current versions (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10861">#10861</a>)</li> <li>fix(replay): Add <code>errorHandler</code> for replayCanvas integration (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10796">#10796</a>)</li> </ul> <h2>7.103.0</h2> <h3>Important Changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/sentry-javascript/commit/e23dc271efb3ac2b66ae4ce5747cf9482a664168"><code>e23dc27</code></a> release: 7.105.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/0eac5104adb3ad14dcd1c4180feee789445975c7"><code>0eac510</code></a> meta(changelog): Update changelog for v7.105.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10880">#10880</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/7b1137996ff38cfaec913b2cedd0f579cd453255"><code>7b11379</code></a> feat: Ensure <code>withActiveSpan</code> is exported everywhere [v7] (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10877">#10877</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/ac5992fed21c4f9c8716087975e0db160bcd245e"><code>ac5992f</code></a> Merge branch 'release/7.104.0' into v7</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/eadb6c884887feacecb8eab17569bb64de9b9e99"><code>eadb6c8</code></a> release: 7.104.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/9d2f623d15f78a749f3ba5e0ec2de70d3c30044a"><code>9d2f623</code></a> Merge pull request <a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10875">#10875</a> from getsentry/abhi-7.104.0-release</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/868a20e2fc664c45fd6b5125b502d59e60b5d3ca"><code>868a20e</code></a> fix(feedback): Update typing for v7</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/17744cd078e8793f215837a5df574ea74c83a1fa"><code>17744cd</code></a> feat(feedback): Flush replays when feedback form opens (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10567">#10567</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/3770187c0b534c78bc7371e17b168d7dc1b0ad46"><code>3770187</code></a> fix(replay): Add <code>errorHandler</code> for replayCanvas integration (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10796">#10796</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/c9e8fa9bee526c3c6cbd3fda5cfef2dc90c3e044"><code>c9e8fa9</code></a> meta: CHANGELOG for 7.104.0</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-javascript/compare/7.102.1...7.105.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/node&package-manager=npm_and_yarn&previous-version=7.102.1&new-version=7.105.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
dependabot[bot] commented 2024-03-08 17:15:46 +08:00 (Migrated from github.com)

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. If you change your mind, just re-open this PR and I'll resolve any conflicts on it.
Commenting is not possible because the repository is archived.
No description provided.