Skip to content

Commit

Permalink
Bump @sentry/browser and @sentry/nextjs in /cueweb (#1599)
Browse files Browse the repository at this point in the history
Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript)
to 8.40.0 and updates ancestor dependency
[@sentry/nextjs](https://github.com/getsentry/sentry-javascript). These
dependencies need to be updated together.

Updates `@sentry/browser` from 8.32.0 to 8.40.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript/releases"><code>@​sentry/browser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>8.40.0</h2>
<h3>Important Changes</h3>
<ul>
<li>
<p><strong>feat(angular): Support Angular 19 (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14398">#14398</a>)</strong></p>
<p>The <code>@sentry/angular</code> SDK can now be used with Angular 19.
If you're upgrading to the new Angular version, you might want to
migrate from the now deprecated <code>APP_INITIALIZER</code> token to
<code>provideAppInitializer</code>.
In this case, change the Sentry <code>TraceService</code> initialization
in <code>app.config.ts</code>:</p>
<pre lang="ts"><code>// Angular 18
export const appConfig: ApplicationConfig = {
  providers: [
    // other providers
    {
      provide: TraceService,
      deps: [Router],
    },
    {
      provide: APP_INITIALIZER,
      useFactory: () =&gt; () =&gt; {},
      deps: [TraceService],
      multi: true,
    },
  ],
};
<p>// Angular 19
export const appConfig: ApplicationConfig = {
providers: [
// other providers
{
provide: TraceService,
deps: [Router],
},
provideAppInitializer(() =&gt; {
inject(TraceService);
}),
],
};
</code></pre></p>
</li>
<li>
<p><strong>feat(core): Deprecate <code>debugIntegration</code> and
<code>sessionTimingIntegration</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14363">#14363</a>)</strong></p>
<p>The <code>debugIntegration</code> was deprecated and will be removed
in the next major version of the SDK.
To log outgoing events, use <a
href="https://docs.sentry.io/platforms/javascript/configuration/options/#hooks">Hook
Options</a> (<code>beforeSend</code>,
<code>beforeSendTransaction</code>, ...).</p>
<p>The <code>sessionTimingIntegration</code> was deprecated and will be
removed in the next major version of the SDK.
To capture session durations alongside events, use <a
href="https://docs.sentry.io/platforms/javascript/enriching-events/context/">Context</a>
(<code>Sentry.setContext()</code>).</p>
</li>
<li>
<p><strong>feat(nestjs): Deprecate <code>@WithSentry</code> in favor of
<code>@SentryExceptionCaptured</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14323">#14323</a>)</strong></p>
</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/browser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>8.40.0</h2>
<h3>Important Changes</h3>
<ul>
<li>
<p><strong>feat(angular): Support Angular 19 (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14398">#14398</a>)</strong></p>
<p>The <code>@sentry/angular</code> SDK can now be used with Angular 19.
If you're upgrading to the new Angular version, you might want to
migrate from the now deprecated <code>APP_INITIALIZER</code> token to
<code>provideAppInitializer</code>.
In this case, change the Sentry <code>TraceService</code> initialization
in <code>app.config.ts</code>:</p>
<pre lang="ts"><code>// Angular 18
export const appConfig: ApplicationConfig = {
  providers: [
    // other providers
    {
      provide: TraceService,
      deps: [Router],
    },
    {
      provide: APP_INITIALIZER,
      useFactory: () =&gt; () =&gt; {},
      deps: [TraceService],
      multi: true,
    },
  ],
};
<p>// Angular 19
export const appConfig: ApplicationConfig = {
providers: [
// other providers
{
provide: TraceService,
deps: [Router],
},
provideAppInitializer(() =&gt; {
inject(TraceService);
}),
],
};
</code></pre></p>
</li>
<li>
<p><strong>feat(core): Deprecate <code>debugIntegration</code> and
<code>sessionTimingIntegration</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14363">#14363</a>)</strong></p>
<p>The <code>debugIntegration</code> was deprecated and will be removed
in the next major version of the SDK.
To log outgoing events, use <a
href="https://docs.sentry.io/platforms/javascript/configuration/options/#hooks">Hook
Options</a> (<code>beforeSend</code>,
<code>beforeSendTransaction</code>, ...).</p>
<p>The <code>sessionTimingIntegration</code> was deprecated and will be
removed in the next major version of the SDK.
To capture session durations alongside events, use <a
href="https://docs.sentry.io/platforms/javascript/enriching-events/context/">Context</a>
(<code>Sentry.setContext()</code>).</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/7ff467ca6ddd3ac901afb55c1742e586356d109e"><code>7ff467c</code></a>
release: 8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/87a90a32d2b901693463be0e1f4a7f26b7f800f5"><code>87a90a3</code></a>
Merge pull request <a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14425">#14425</a>
from getsentry/prepare-release/8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/5841854712f843254ad0c5c3c57f82e630f5bdbb"><code>5841854</code></a>
meta(changelog): Update changelog for 8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/d140ae66b662d8531b8e700a8c2ad198b66cf5fd"><code>d140ae6</code></a>
Merge remote-tracking branch 'origin/master' into
prepare-release/8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/90f958fe8c5b5cae33e8e68c33c1cfff004b44c8"><code>90f958f</code></a>
ci: Skip optional E2E tests on release branches (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14424">#14424</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/6535500ec7247ce27ceba2a9cbae35b26e57fb03"><code>6535500</code></a>
feat(replay): Clear event buffer when full and in buffer mode (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14078">#14078</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/85daf9015a8e49761a27d3521706dc5742b58f15"><code>85daf90</code></a>
fix(feedback): Fix non-wrapping form title (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14355">#14355</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/ec701fdc3ca7352a3e76981481922469a6ca5dd2"><code>ec701fd</code></a>
Merge pull request <a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14412">#14412</a>
from getsentry/develop</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/138417b912a089d45fdf6b37e415041650e50df4"><code>138417b</code></a>
test(feedback): Fixes lazy loaded feedback bundles (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14410">#14410</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/c1ccdf3ec89d90eae10c3b03a3be2de963725606"><code>c1ccdf3</code></a>
Merge pull request <a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14408">#14408</a>
from getsentry/prepare-release/8.40.0</li>
<li>Additional commits viewable in <a
href="https://github.com/getsentry/sentry-javascript/compare/8.32.0...8.40.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@sentry/nextjs` from 8.32.0 to 8.40.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript/releases"><code>@​sentry/nextjs</code>'s
releases</a>.</em></p>
<blockquote>
<h2>8.40.0</h2>
<h3>Important Changes</h3>
<ul>
<li>
<p><strong>feat(angular): Support Angular 19 (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14398">#14398</a>)</strong></p>
<p>The <code>@sentry/angular</code> SDK can now be used with Angular 19.
If you're upgrading to the new Angular version, you might want to
migrate from the now deprecated <code>APP_INITIALIZER</code> token to
<code>provideAppInitializer</code>.
In this case, change the Sentry <code>TraceService</code> initialization
in <code>app.config.ts</code>:</p>
<pre lang="ts"><code>// Angular 18
export const appConfig: ApplicationConfig = {
  providers: [
    // other providers
    {
      provide: TraceService,
      deps: [Router],
    },
    {
      provide: APP_INITIALIZER,
      useFactory: () =&gt; () =&gt; {},
      deps: [TraceService],
      multi: true,
    },
  ],
};
<p>// Angular 19
export const appConfig: ApplicationConfig = {
providers: [
// other providers
{
provide: TraceService,
deps: [Router],
},
provideAppInitializer(() =&gt; {
inject(TraceService);
}),
],
};
</code></pre></p>
</li>
<li>
<p><strong>feat(core): Deprecate <code>debugIntegration</code> and
<code>sessionTimingIntegration</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14363">#14363</a>)</strong></p>
<p>The <code>debugIntegration</code> was deprecated and will be removed
in the next major version of the SDK.
To log outgoing events, use <a
href="https://docs.sentry.io/platforms/javascript/configuration/options/#hooks">Hook
Options</a> (<code>beforeSend</code>,
<code>beforeSendTransaction</code>, ...).</p>
<p>The <code>sessionTimingIntegration</code> was deprecated and will be
removed in the next major version of the SDK.
To capture session durations alongside events, use <a
href="https://docs.sentry.io/platforms/javascript/enriching-events/context/">Context</a>
(<code>Sentry.setContext()</code>).</p>
</li>
<li>
<p><strong>feat(nestjs): Deprecate <code>@WithSentry</code> in favor of
<code>@SentryExceptionCaptured</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14323">#14323</a>)</strong></p>
</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/nextjs</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>8.40.0</h2>
<h3>Important Changes</h3>
<ul>
<li>
<p><strong>feat(angular): Support Angular 19 (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14398">#14398</a>)</strong></p>
<p>The <code>@sentry/angular</code> SDK can now be used with Angular 19.
If you're upgrading to the new Angular version, you might want to
migrate from the now deprecated <code>APP_INITIALIZER</code> token to
<code>provideAppInitializer</code>.
In this case, change the Sentry <code>TraceService</code> initialization
in <code>app.config.ts</code>:</p>
<pre lang="ts"><code>// Angular 18
export const appConfig: ApplicationConfig = {
  providers: [
    // other providers
    {
      provide: TraceService,
      deps: [Router],
    },
    {
      provide: APP_INITIALIZER,
      useFactory: () =&gt; () =&gt; {},
      deps: [TraceService],
      multi: true,
    },
  ],
};
<p>// Angular 19
export const appConfig: ApplicationConfig = {
providers: [
// other providers
{
provide: TraceService,
deps: [Router],
},
provideAppInitializer(() =&gt; {
inject(TraceService);
}),
],
};
</code></pre></p>
</li>
<li>
<p><strong>feat(core): Deprecate <code>debugIntegration</code> and
<code>sessionTimingIntegration</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/14363">#14363</a>)</strong></p>
<p>The <code>debugIntegration</code> was deprecated and will be removed
in the next major version of the SDK.
To log outgoing events, use <a
href="https://docs.sentry.io/platforms/javascript/configuration/options/#hooks">Hook
Options</a> (<code>beforeSend</code>,
<code>beforeSendTransaction</code>, ...).</p>
<p>The <code>sessionTimingIntegration</code> was deprecated and will be
removed in the next major version of the SDK.
To capture session durations alongside events, use <a
href="https://docs.sentry.io/platforms/javascript/enriching-events/context/">Context</a>
(<code>Sentry.setContext()</code>).</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/7ff467ca6ddd3ac901afb55c1742e586356d109e"><code>7ff467c</code></a>
release: 8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/87a90a32d2b901693463be0e1f4a7f26b7f800f5"><code>87a90a3</code></a>
Merge pull request <a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14425">#14425</a>
from getsentry/prepare-release/8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/5841854712f843254ad0c5c3c57f82e630f5bdbb"><code>5841854</code></a>
meta(changelog): Update changelog for 8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/d140ae66b662d8531b8e700a8c2ad198b66cf5fd"><code>d140ae6</code></a>
Merge remote-tracking branch 'origin/master' into
prepare-release/8.40.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/90f958fe8c5b5cae33e8e68c33c1cfff004b44c8"><code>90f958f</code></a>
ci: Skip optional E2E tests on release branches (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14424">#14424</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/6535500ec7247ce27ceba2a9cbae35b26e57fb03"><code>6535500</code></a>
feat(replay): Clear event buffer when full and in buffer mode (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14078">#14078</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/85daf9015a8e49761a27d3521706dc5742b58f15"><code>85daf90</code></a>
fix(feedback): Fix non-wrapping form title (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14355">#14355</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/ec701fdc3ca7352a3e76981481922469a6ca5dd2"><code>ec701fd</code></a>
Merge pull request <a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14412">#14412</a>
from getsentry/develop</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/138417b912a089d45fdf6b37e415041650e50df4"><code>138417b</code></a>
test(feedback): Fixes lazy loaded feedback bundles (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14410">#14410</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/c1ccdf3ec89d90eae10c3b03a3be2de963725606"><code>c1ccdf3</code></a>
Merge pull request <a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/14408">#14408</a>
from getsentry/prepare-release/8.40.0</li>
<li>Additional commits viewable in <a
href="https://github.com/getsentry/sentry-javascript/compare/8.32.0...8.40.0">compare
view</a></li>
</ul>
</details>
<br />


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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/AcademySoftwareFoundation/OpenCue/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 25, 2024
1 parent 898ecd6 commit a43767a
Show file tree
Hide file tree
Showing 2 changed files with 952 additions and 293 deletions.
Loading

0 comments on commit a43767a

Please sign in to comment.