chore(deps): bump @sentry/node from 7.88.0 to 7.89.0 #20

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/sentry/node-7.89.0 into main 2023-12-21 06:47:48 +08:00
dependabot[bot] commented 2023-12-20 21:35:23 +08:00 (Migrated from github.com)

Bumps @sentry/node from 7.88.0 to 7.89.0.

Release notes

Sourced from @​sentry/node's releases.

7.89.0

Important Changes

Deprecations

  • feat(core): Deprecate configureScope (#9887)
  • feat(core): Deprecate pushScope & popScope (#9890)

This release deprecates configureScope, pushScope, and popScope, which will be removed in the upcoming v8 major release.

Hapi Integration

  • feat(node): Add Hapi Integration (#9539)

This release adds an integration for Hapi. It can be used as follows:

const Sentry = require('@sentry/node');
const Hapi = require('@hapi/hapi');

const init = async () => { const server = Hapi.server({ // your server configuration ... });

Sentry.init({
  dsn: '__DSN__',
  tracesSampleRate: 1.0,
  integrations: [
    new Sentry.Integrations.Hapi({ server }),
  ],
});

server.route({
// your route configuration ...
});

await server.start();

};

SvelteKit 2.0

  • chore(sveltekit): Add SvelteKit 2.0 to peer dependencies (#9861)

This release adds support for SvelteKit 2.0 in the @sentry/sveltekit package. If you're upgrading from SvelteKit 1.x to 2.x and already use the Sentry SvelteKit SDK, no changes apart from upgrading to this (or a newer) version are necessary.

Other Changes

  • feat(core): Add type & utility for function-based integrations (#9818)

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

7.89.0

Important Changes

Deprecations

  • feat(core): Deprecate configureScope (#9887)
  • feat(core): Deprecate pushScope & popScope (#9890)

This release deprecates configureScope, pushScope, and popScope, which will be removed in the upcoming v8 major release.

Hapi Integration

  • feat(node): Add Hapi Integration (#9539)

This release adds an integration for Hapi. It can be used as follows:

const Sentry = require('@sentry/node');
const Hapi = require('@hapi/hapi');

const init = async () => { const server = Hapi.server({ // your server configuration ... });

Sentry.init({
  dsn: '__DSN__',
  tracesSampleRate: 1.0,
  integrations: [
    new Sentry.Integrations.Hapi({ server }),
  ],
});

server.route({
// your route configuration ...
});

await server.start();

};

SvelteKit 2.0

  • chore(sveltekit): Add SvelteKit 2.0 to peer dependencies (#9861)

This release adds support for SvelteKit 2.0 in the @sentry/sveltekit package. If you're upgrading from SvelteKit 1.x to 2.x and already use the Sentry SvelteKit SDK, no changes apart from upgrading to this (or a newer) version are necessary.

Other Changes

... (truncated)

Commits
  • 5e9a4f4 release: 7.89.0
  • 53a08bf Merge pull request #9915 from getsentry/prepare-release/7.89.0
  • 9f173e1 meta(changelog): Update changelog for 7.89.0
  • cf773fc fix(sveltekit): Avoid capturing 404 errors on client side (#9902)
  • cef3621 ref(sveltekit): Improve SvelteKit 2.0 404 server error handling (#9901)
  • 31c769c test(sveltekit): Add SvelteKit 2.0 E2E test app (#9873)
  • a856913 fix(remix): Do not capture thrown redirect responses. (#9909)
  • 6d32228 fix(sveltekit): Add conditional exports (#9872)
  • 4e0c460 chore(sveltekit): Add SvelteKit 2.0 to peer dependencies (#9861)
  • c9552a4 ref(node): Refactor LocalVariables integration to avoid setupOnce (#9897)
  • 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.88.0 to 7.89.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.89.0</h2> <h3>Important Changes</h3> <h4>Deprecations</h4> <ul> <li><strong>feat(core): Deprecate <code>configureScope</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9887">#9887</a>)</strong></li> <li><strong>feat(core): Deprecate <code>pushScope</code> &amp; <code>popScope</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9890">#9890</a>)</strong></li> </ul> <p>This release deprecates <code>configureScope</code>, <code>pushScope</code>, and <code>popScope</code>, which will be removed in the upcoming v8 major release.</p> <h4>Hapi Integration</h4> <ul> <li><strong>feat(node): Add Hapi Integration (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9539">#9539</a>)</strong></li> </ul> <p>This release adds an integration for Hapi. It can be used as follows:</p> <pre lang="ts"><code>const Sentry = require('@sentry/node'); const Hapi = require('@hapi/hapi'); <p>const init = async () =&gt; { const server = Hapi.server({ // your server configuration ... });</p> <pre><code>Sentry.init({ dsn: '__DSN__', tracesSampleRate: 1.0, integrations: [ new Sentry.Integrations.Hapi({ server }), ], }); server.route({ // your route configuration ... }); await server.start(); </code></pre> <p>}; </code></pre></p> <h4>SvelteKit 2.0</h4> <ul> <li><strong>chore(sveltekit): Add SvelteKit 2.0 to peer dependencies (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9861">#9861</a>)</strong></li> </ul> <p>This release adds support for SvelteKit 2.0 in the <code>@sentry/sveltekit</code> package. If you're upgrading from SvelteKit 1.x to 2.x and already use the Sentry SvelteKit SDK, no changes apart from upgrading to this (or a newer) version are necessary.</p> <h3>Other Changes</h3> <ul> <li>feat(core): Add type &amp; utility for function-based integrations (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9818">#9818</a>)</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/develop/CHANGELOG.md"><code>@​sentry/node</code>'s changelog</a>.</em></p> <blockquote> <h2>7.89.0</h2> <h3>Important Changes</h3> <h4>Deprecations</h4> <ul> <li><strong>feat(core): Deprecate <code>configureScope</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9887">#9887</a>)</strong></li> <li><strong>feat(core): Deprecate <code>pushScope</code> &amp; <code>popScope</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9890">#9890</a>)</strong></li> </ul> <p>This release deprecates <code>configureScope</code>, <code>pushScope</code>, and <code>popScope</code>, which will be removed in the upcoming v8 major release.</p> <h4>Hapi Integration</h4> <ul> <li><strong>feat(node): Add Hapi Integration (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9539">#9539</a>)</strong></li> </ul> <p>This release adds an integration for Hapi. It can be used as follows:</p> <pre lang="ts"><code>const Sentry = require('@sentry/node'); const Hapi = require('@hapi/hapi'); <p>const init = async () =&gt; { const server = Hapi.server({ // your server configuration ... });</p> <pre><code>Sentry.init({ dsn: '__DSN__', tracesSampleRate: 1.0, integrations: [ new Sentry.Integrations.Hapi({ server }), ], }); server.route({ // your route configuration ... }); await server.start(); </code></pre> <p>}; </code></pre></p> <h4>SvelteKit 2.0</h4> <ul> <li><strong>chore(sveltekit): Add SvelteKit 2.0 to peer dependencies (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9861">#9861</a>)</strong></li> </ul> <p>This release adds support for SvelteKit 2.0 in the <code>@sentry/sveltekit</code> package. If you're upgrading from SvelteKit 1.x to 2.x and already use the Sentry SvelteKit SDK, no changes apart from upgrading to this (or a newer) version are necessary.</p> <h3>Other 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/5e9a4f48e49127ae4ee265c7bf89ede85707eeea"><code>5e9a4f4</code></a> release: 7.89.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/53a08bfc4d6e13c1e4946b9752090fd6b77e11b4"><code>53a08bf</code></a> Merge pull request <a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9915">#9915</a> from getsentry/prepare-release/7.89.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/9f173e165e772c2ad2f8c773a594de2df70c2a8a"><code>9f173e1</code></a> meta(changelog): Update changelog for 7.89.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/cf773fccb1735ff2a3152aafb5e14d75bbd7be38"><code>cf773fc</code></a> fix(sveltekit): Avoid capturing 404 errors on client side (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9902">#9902</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/cef3621ce44067992a9ab530d81ef6966bf2b9d3"><code>cef3621</code></a> ref(sveltekit): Improve SvelteKit 2.0 404 server error handling (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9901">#9901</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/31c769cd548197da07211fe82697c3c4460cea23"><code>31c769c</code></a> test(sveltekit): Add SvelteKit 2.0 E2E test app (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9873">#9873</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/a8569130cad640a9e8ba634c952fb8f4e4b5911a"><code>a856913</code></a> fix(remix): Do not capture thrown redirect responses. (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9909">#9909</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/6d3222820670b93d927c4d467e6d27845442659f"><code>6d32228</code></a> fix(sveltekit): Add conditional exports (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9872">#9872</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/4e0c460dc3c35855a79a308bf815eca74ed0be13"><code>4e0c460</code></a> chore(sveltekit): Add SvelteKit 2.0 to peer dependencies (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9861">#9861</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/c9552a4601df2fe4ac660cabd2e1ee3e64f798db"><code>c9552a4</code></a> ref(node): Refactor LocalVariables integration to avoid <code>setupOnce</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/9897">#9897</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-javascript/compare/7.88.0...7.89.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.88.0&new-version=7.89.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>
Commenting is not possible because the repository is archived.
No description provided.