1
0
Fork 0

chore(deps-dev): bump @sentry/types from 7.93.0 to 7.95.0 #92

Closed
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/sentry/types-7.95.0 into main
dependabot[bot] commented 2024-01-24 10:11:42 +08:00 (Migrated from github.com)

Bumps @sentry/types from 7.93.0 to 7.95.0.

Release notes

Sourced from @​sentry/types's releases.

7.95.0

Important Changes

Deprecations

This release includes some deprecations in preparation for v8.

Most notably, it deprecates the Replay & Feedback classes in favor of a functional replacement:

import * as Sentry from '@sentry/browser';

Sentry.init({ integrations: [ // Instead of new Sentry.Replay(), new Sentry.Feedback(), // Use the functional replacement: Sentry.replayIntegration(), Sentry.feedbackIntegration(), ], });

  • feat(core): Deprecate Span.origin in favor of sentry.origin attribute (#10260)
  • feat(core): Deprecate Span.parentSpanId (#10244)
  • feat(core): Expose isInitialized() to replace checking via getClient (#10296)
  • feat(replay): Deprecate Replay, ReplayCanvas, Feedback classes (#10270)
  • feat(wasm): Deprecate Wasm integration class (#10230)

Other Changes

  • feat: Make parameterize function available through browser and node API (#10085)
  • feat(feedback): Configure feedback border radius (#10289)
  • feat(sveltekit): Update default integration handling & deprecate addOrUpdateIntegration (#10263)
  • fix(replay-canvas): Add missing dependency on @​sentry/utils (#10279)
  • fix(tracing): Don't send negative ttfb (#10286)

Work in this release contributed by @​AleshaOleg. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped) 77.79 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 68.96 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) - Webpack (gzipped) 72.85 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 62.6 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 32.97 KB
@​sentry/browser (incl. Feedback) - Webpack (gzipped) 31.24 KB

... (truncated)

Changelog

Sourced from @​sentry/types's changelog.

7.95.0

Important Changes

Deprecations

This release includes some deprecations in preparation for v8.

Most notably, it deprecates the Replay & Feedback classes in favor of a functional replacement:

import * as Sentry from '@sentry/browser';

Sentry.init({ integrations: [ // Instead of new Sentry.Replay(), new Sentry.Feedback(), // Use the functional replacement: Sentry.replayIntegration(), Sentry.feedbackIntegration(), ], });

  • feat(core): Deprecate Span.origin in favor of sentry.origin attribute (#10260)
  • feat(core): Deprecate Span.parentSpanId (#10244)
  • feat(core): Expose isInitialized() to replace checking via getClient (#10296)
  • feat(replay): Deprecate Replay, ReplayCanvas, Feedback classes (#10270)
  • feat(wasm): Deprecate Wasm integration class (#10230)

Other Changes

  • feat: Make parameterize function available through browser and node API (#10085)
  • feat(feedback): Configure feedback border radius (#10289)
  • feat(sveltekit): Update default integration handling & deprecate addOrUpdateIntegration (#10263)
  • fix(replay-canvas): Add missing dependency on @​sentry/utils (#10279)
  • fix(tracing): Don't send negative ttfb (#10286)

Work in this release contributed by @​AleshaOleg. Thank you for your contribution!

7.94.1

This release fixes a publishing issue.

7.94.0

Important Changes

Deprecations

... (truncated)

Commits
  • 9a7af57 release: 7.95.0
  • 9fcfd51 Merge pull request #10298 from getsentry/prepare-release/7.95.0
  • d98bd74 meta(changelog): Update changelog for v7.95.0
  • c017181 fix(tracing): Don't send negative ttfb (#10286)
  • 675309d feat(core): Expose isInitialized() to replace checking via getClient (#10...
  • a0b987a feat(feedback): Configure feedback border radius (#10289)
  • 62b0c4d feat(sveltekit): Update default integration handling & deprecate `addOrUpdate...
  • a682534 feat(replay): Deprecate Replay, ReplayCanvas, Feedback classes (#10270)
  • 6868256 fix(replay-canvas): Add missing dependency on @​sentry/utils (#10279)
  • a27deca feat: Make parameterize function available through browser and node API (#1...
  • 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/types](https://github.com/getsentry/sentry-javascript) from 7.93.0 to 7.95.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript/releases"><code>@​sentry/types</code>'s releases</a>.</em></p> <blockquote> <h2>7.95.0</h2> <h3>Important Changes</h3> <h4>Deprecations</h4> <p>This release includes some deprecations in preparation for v8.</p> <p>Most notably, it deprecates the <code>Replay</code> &amp; <code>Feedback</code> classes in favor of a functional replacement:</p> <pre lang="js"><code>import * as Sentry from '@sentry/browser'; <p>Sentry.init({ integrations: [ // Instead of new Sentry.Replay(), new Sentry.Feedback(), // Use the functional replacement: Sentry.replayIntegration(), Sentry.feedbackIntegration(), ], }); </code></pre></p> <ul> <li>feat(core): Deprecate <code>Span.origin</code> in favor of <code>sentry.origin</code> attribute (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10260">#10260</a>)</li> <li>feat(core): Deprecate <code>Span.parentSpanId</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10244">#10244</a>)</li> <li>feat(core): Expose <code>isInitialized()</code> to replace checking via <code>getClient</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10296">#10296</a>)</li> <li>feat(replay): Deprecate <code>Replay</code>, <code>ReplayCanvas</code>, <code>Feedback</code> classes (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10270">#10270</a>)</li> <li>feat(wasm): Deprecate <code>Wasm</code> integration class (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10230">#10230</a>)</li> </ul> <h3>Other Changes</h3> <ul> <li>feat: Make <code>parameterize</code> function available through browser and node API (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10085">#10085</a>)</li> <li>feat(feedback): Configure feedback border radius (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10289">#10289</a>)</li> <li>feat(sveltekit): Update default integration handling &amp; deprecate <code>addOrUpdateIntegration</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10263">#10263</a>)</li> <li>fix(replay-canvas): Add missing dependency on <code>@​sentry/utils</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10279">#10279</a>)</li> <li>fix(tracing): Don't send negative ttfb (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10286">#10286</a>)</li> </ul> <p>Work in this release contributed by <a href="https://github.com/AleshaOleg"><code>@​AleshaOleg</code></a>. Thank you for your contribution!</p> <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>77.79 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay) - Webpack (gzipped)</td> <td>68.96 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay with Canvas) - Webpack (gzipped)</td> <td>72.85 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped)</td> <td>62.6 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing) - Webpack (gzipped)</td> <td>32.97 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Feedback) - Webpack (gzipped)</td> <td>31.24 KB</td> </tr> </tbody> </table> <!-- 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/develop/CHANGELOG.md"><code>@​sentry/types</code>'s changelog</a>.</em></p> <blockquote> <h2>7.95.0</h2> <h3>Important Changes</h3> <h4>Deprecations</h4> <p>This release includes some deprecations in preparation for v8.</p> <p>Most notably, it deprecates the <code>Replay</code> &amp; <code>Feedback</code> classes in favor of a functional replacement:</p> <pre lang="js"><code>import * as Sentry from '@sentry/browser'; <p>Sentry.init({ integrations: [ // Instead of new Sentry.Replay(), new Sentry.Feedback(), // Use the functional replacement: Sentry.replayIntegration(), Sentry.feedbackIntegration(), ], }); </code></pre></p> <ul> <li>feat(core): Deprecate <code>Span.origin</code> in favor of <code>sentry.origin</code> attribute (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10260">#10260</a>)</li> <li>feat(core): Deprecate <code>Span.parentSpanId</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10244">#10244</a>)</li> <li>feat(core): Expose <code>isInitialized()</code> to replace checking via <code>getClient</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10296">#10296</a>)</li> <li>feat(replay): Deprecate <code>Replay</code>, <code>ReplayCanvas</code>, <code>Feedback</code> classes (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10270">#10270</a>)</li> <li>feat(wasm): Deprecate <code>Wasm</code> integration class (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10230">#10230</a>)</li> </ul> <h3>Other Changes</h3> <ul> <li>feat: Make <code>parameterize</code> function available through browser and node API (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10085">#10085</a>)</li> <li>feat(feedback): Configure feedback border radius (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10289">#10289</a>)</li> <li>feat(sveltekit): Update default integration handling &amp; deprecate <code>addOrUpdateIntegration</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10263">#10263</a>)</li> <li>fix(replay-canvas): Add missing dependency on <code>@​sentry/utils</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10279">#10279</a>)</li> <li>fix(tracing): Don't send negative ttfb (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10286">#10286</a>)</li> </ul> <p>Work in this release contributed by <a href="https://github.com/AleshaOleg"><code>@​AleshaOleg</code></a>. Thank you for your contribution!</p> <h2>7.94.1</h2> <p>This release fixes a publishing issue.</p> <h2>7.94.0</h2> <h3>Important Changes</h3> <h4>Deprecations</h4> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/sentry-javascript/commit/9a7af577f4edb22cecab39bcb9358fa7771c33bd"><code>9a7af57</code></a> release: 7.95.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/9fcfd517f894824db04427f713e5e8fde73d1a9a"><code>9fcfd51</code></a> Merge pull request <a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10298">#10298</a> from getsentry/prepare-release/7.95.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/d98bd740ed71f62409ecaf093bf6eaa34a662ab9"><code>d98bd74</code></a> meta(changelog): Update changelog for v7.95.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/c017181e307d5c725a9bc5ea110fece9622de000"><code>c017181</code></a> fix(tracing): Don't send negative ttfb (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10286">#10286</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/675309d9bbe47959e3caf2c79764274ee9fe4404"><code>675309d</code></a> feat(core): Expose <code>isInitialized()</code> to replace checking via <code>getClient</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10">#10</a>...</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/a0b987abb9ba886f0b0820a98096522a1d1f34fe"><code>a0b987a</code></a> feat(feedback): Configure feedback border radius (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10289">#10289</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/62b0c4d0e552d09cd2ec3f706b735ae9e827281e"><code>62b0c4d</code></a> feat(sveltekit): Update default integration handling &amp; deprecate `addOrUpdate...</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/a68253420fed41d5195d6fed2a640ff98274817f"><code>a682534</code></a> feat(replay): Deprecate Replay, ReplayCanvas, Feedback classes (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10270">#10270</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/6868256df420fee152a8e8fd4b94f5c2aa425f4e"><code>6868256</code></a> fix(replay-canvas): Add missing dependency on <code>@​sentry/utils</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/10279">#10279</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/a27decab3a4fa146f061c79c74ce045013ebfeff"><code>a27deca</code></a> feat: Make <code>parameterize</code> function available through browser and node API (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/1">#1</a>...</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-javascript/compare/7.93.0...7.95.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/types&package-manager=npm_and_yarn&previous-version=7.93.0&new-version=7.95.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-01-27 18:06:46 +08:00 (Migrated from github.com)

Looks like @sentry/types is up-to-date now, so this is no longer needed.

Looks like @sentry/types is up-to-date now, so this is no longer needed.
Commenting is not possible because the repository is archived.
No description provided.