Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(astro): Mark SDK package as Astro-external #9509

Merged
merged 1 commit into from
Nov 9, 2023

Conversation

Lms24
Copy link
Member

@Lms24 Lms24 commented Nov 9, 2023

Astro's Vite plugin tries to detect if a package is an "astro component package" (i.e. contains .astro) files by checking for a bunch of heuristics in the project's package.json. These packages will be run through the Astro compiler.

https://github.com/withastro/astro/blob/7c458514c06c95158245bba4fa3c254abd333f5a/packages/astro/src/core/create-vite.ts#L74-L89

Because our SDK package matches multiple of the used heuristics, it is added to the compiler build which causes errors because some of our packages make the build fail (not sure why/how). Apparently, this is only problematic when the project is managed by pnpm which results in a build error. Other package managers don't seem to have a problem.

This PR adds the astro.external: true flag to the package.json which short-circuits the heuristics checks and excludes the package from being added to the compiler run.

Fixes pnpm/pnpm#7279 for us

Big thanks to @matthewp for helping us debug this!

@Lms24 Lms24 requested a review from lforst November 9, 2023 14:38
@Lms24 Lms24 enabled auto-merge (squash) November 9, 2023 14:41
@Lms24 Lms24 merged commit ab39b26 into develop Nov 9, 2023
49 checks passed
@Lms24 Lms24 deleted the lms/fix-astro-pnpm-build branch November 9, 2023 14:53
@Lms24 Lms24 self-assigned this Nov 9, 2023
ccomb pushed a commit to MTES-MCT/ecobalyse that referenced this pull request Dec 4, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade
@sentry/tracing from 7.78.0 to 7.80.0.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **2 versions** ahead of your current
version.
- The recommended version was released **23 days ago**, on 2023-11-09.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>@sentry/tracing</b></summary>
    <ul>
      <li>
<b>7.80.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.80.0">2023-11-09</a></br><ul>
<li>feat(astro): Add distributed tracing via <code>&lt;meta&gt;</code>
tags (<a class="issue-link js-issue-link" data-error-text="Failed to
load title" data-id="1983131322" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9483"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9483/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9483">#9483</a>)</li>
<li>feat(node): Capture internal server errors in trpc middleware (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983103348" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9482"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9482/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9482">#9482</a>)</li>
<li>feat(remix): Export a type to use for <code>MetaFunction</code>
parameters (<a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="1984109785" data-permission-text="Title is
private"
data-url="getsentry/sentry-javascript#9493"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9493/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9493">#9493</a>)</li>
<li>fix(astro): Mark SDK package as Astro-external (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1985765040" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9509"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9509/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9509">#9509</a>)</li>
<li>ref(nextjs): Don't initialize Server SDK during build (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1985175170" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9503"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9503/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9503">#9503</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.25 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.83 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.1 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.91 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.32 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.81 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.35 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.13 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.98 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
<b>7.79.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.79.0">2023-11-08</a></br><ul>
<li>feat(tracing): Add span <code>origin</code> to trace context (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1981343917" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9472"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9472/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9472">#9472</a>)</li>
<li>fix(deno): Emit .mjs files (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1983345013"
data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9485"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9485/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9485">#9485</a>)</li>
<li>fix(nextjs): Flush servercomponent events for edge (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983533334" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9487"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9487/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9487">#9487</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.82 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.09 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.23 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.89 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.28 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.8 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.12 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.81 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
        <b>7.78.0</b> - 2023-11-08
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases">@sentry/tracing
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiIzZGVkMDNjZC1lNGYwLTQ5MWQtYTVmOC05NDg0NmU1YzYxZGYiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6IjNkZWQwM2NkLWU0ZjAtNDkxZC1hNWY4LTk0ODQ2ZTVjNjFkZiJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6/settings/integration?pkg&#x3D;@sentry/tracing&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"3ded03cd-e4f0-491d-a5f8-94846e5c61df","prPublicId":"3ded03cd-e4f0-491d-a5f8-94846e5c61df","dependencies":[{"name":"@sentry/tracing","from":"7.78.0","to":"7.80.0"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"8a1190df-0364-4a9a-93bd-a9f28b54daf6","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":2,"publishedDate":"2023-11-09T16:53:51.102Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->

Co-authored-by: snyk-bot <snyk-bot@snyk.io>
ccomb added a commit to MTES-MCT/ecobalyse that referenced this pull request Dec 4, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade @sentry/node
from 7.78.0 to 7.80.0.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **2 versions** ahead of your current
version.
- The recommended version was released **23 days ago**, on 2023-11-09.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>@sentry/node</b></summary>
    <ul>
      <li>
<b>7.80.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.80.0">2023-11-09</a></br><ul>
<li>feat(astro): Add distributed tracing via <code>&lt;meta&gt;</code>
tags (<a class="issue-link js-issue-link" data-error-text="Failed to
load title" data-id="1983131322" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9483"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9483/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9483">#9483</a>)</li>
<li>feat(node): Capture internal server errors in trpc middleware (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983103348" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9482"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9482/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9482">#9482</a>)</li>
<li>feat(remix): Export a type to use for <code>MetaFunction</code>
parameters (<a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="1984109785" data-permission-text="Title is
private"
data-url="getsentry/sentry-javascript#9493"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9493/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9493">#9493</a>)</li>
<li>fix(astro): Mark SDK package as Astro-external (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1985765040" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9509"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9509/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9509">#9509</a>)</li>
<li>ref(nextjs): Don't initialize Server SDK during build (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1985175170" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9503"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9503/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9503">#9503</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.25 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.83 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.1 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.91 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.32 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.81 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.35 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.13 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.98 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
<b>7.79.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.79.0">2023-11-08</a></br><ul>
<li>feat(tracing): Add span <code>origin</code> to trace context (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1981343917" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9472"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9472/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9472">#9472</a>)</li>
<li>fix(deno): Emit .mjs files (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1983345013"
data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9485"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9485/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9485">#9485</a>)</li>
<li>fix(nextjs): Flush servercomponent events for edge (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983533334" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9487"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9487/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9487">#9487</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.82 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.09 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.23 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.89 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.28 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.8 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.12 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.81 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
        <b>7.78.0</b> - 2023-11-08
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases">@sentry/node
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiIyZjAwZjMwMC02ZGIxLTQ1MTItOGFiZi0yZTZhZTkzYWMzNzYiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6IjJmMDBmMzAwLTZkYjEtNDUxMi04YWJmLTJlNmFlOTNhYzM3NiJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6/settings/integration?pkg&#x3D;@sentry/node&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"2f00f300-6db1-4512-8abf-2e6ae93ac376","prPublicId":"2f00f300-6db1-4512-8abf-2e6ae93ac376","dependencies":[{"name":"@sentry/node","from":"7.78.0","to":"7.80.0"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"8a1190df-0364-4a9a-93bd-a9f28b54daf6","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":2,"publishedDate":"2023-11-09T16:51:37.203Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->

Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: Christophe Combelles <ccomb@free.fr>
ccomb added a commit to MTES-MCT/ecobalyse that referenced this pull request Dec 4, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade
@sentry/browser from 7.78.0 to 7.80.0.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **2 versions** ahead of your current
version.
- The recommended version was released **23 days ago**, on 2023-11-09.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>@sentry/browser</b></summary>
    <ul>
      <li>
<b>7.80.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.80.0">2023-11-09</a></br><ul>
<li>feat(astro): Add distributed tracing via <code>&lt;meta&gt;</code>
tags (<a class="issue-link js-issue-link" data-error-text="Failed to
load title" data-id="1983131322" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9483"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9483/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9483">#9483</a>)</li>
<li>feat(node): Capture internal server errors in trpc middleware (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983103348" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9482"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9482/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9482">#9482</a>)</li>
<li>feat(remix): Export a type to use for <code>MetaFunction</code>
parameters (<a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="1984109785" data-permission-text="Title is
private"
data-url="getsentry/sentry-javascript#9493"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9493/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9493">#9493</a>)</li>
<li>fix(astro): Mark SDK package as Astro-external (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1985765040" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9509"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9509/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9509">#9509</a>)</li>
<li>ref(nextjs): Don't initialize Server SDK during build (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1985175170" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9503"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9503/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9503">#9503</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.25 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.83 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.1 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.91 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.32 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.81 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.35 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.13 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.98 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
<b>7.79.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.79.0">2023-11-08</a></br><ul>
<li>feat(tracing): Add span <code>origin</code> to trace context (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1981343917" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9472"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9472/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9472">#9472</a>)</li>
<li>fix(deno): Emit .mjs files (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1983345013"
data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9485"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9485/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9485">#9485</a>)</li>
<li>fix(nextjs): Flush servercomponent events for edge (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983533334" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9487"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9487/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9487">#9487</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.82 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.09 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.23 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.89 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.28 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.8 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.12 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.81 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
        <b>7.78.0</b> - 2023-11-08
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases">@sentry/browser
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiI5ODdkYmMzNi1mOGJhLTRmYTctYjFmYi01ZTNkNDU3Zjk5ZDgiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6Ijk4N2RiYzM2LWY4YmEtNGZhNy1iMWZiLTVlM2Q0NTdmOTlkOCJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6/settings/integration?pkg&#x3D;@sentry/browser&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"987dbc36-f8ba-4fa7-b1fb-5e3d457f99d8","prPublicId":"987dbc36-f8ba-4fa7-b1fb-5e3d457f99d8","dependencies":[{"name":"@sentry/browser","from":"7.78.0","to":"7.80.0"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/mtes-mct/project/8a1190df-0364-4a9a-93bd-a9f28b54daf6?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"8a1190df-0364-4a9a-93bd-a9f28b54daf6","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":2,"publishedDate":"2023-11-09T16:51:32.991Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->

Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: Christophe Combelles <ccomb@free.fr>
JanCizmar added a commit to tolgee/tolgee-platform that referenced this pull request Jan 3, 2024
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade
@sentry/browser from 7.49.0 to 7.80.0.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **55 versions** ahead of your current
version.
- The recommended version was released **24 days ago**, on 2023-11-09.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>@sentry/browser</b></summary>
    <ul>
      <li>
<b>7.80.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.80.0">2023-11-09</a></br><ul>
<li>feat(astro): Add distributed tracing via <code>&lt;meta&gt;</code>
tags (<a class="issue-link js-issue-link" data-error-text="Failed to
load title" data-id="1983131322" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9483"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9483/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9483">#9483</a>)</li>
<li>feat(node): Capture internal server errors in trpc middleware (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983103348" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9482"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9482/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9482">#9482</a>)</li>
<li>feat(remix): Export a type to use for <code>MetaFunction</code>
parameters (<a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="1984109785" data-permission-text="Title is
private"
data-url="getsentry/sentry-javascript#9493"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9493/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9493">#9493</a>)</li>
<li>fix(astro): Mark SDK package as Astro-external (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1985765040" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9509"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9509/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9509">#9509</a>)</li>
<li>ref(nextjs): Don't initialize Server SDK during build (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1985175170" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9503"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9503/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9503">#9503</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.25 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.83 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.1 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.91 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.32 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.81 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.35 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.13 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.98 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
<b>7.79.0</b> - <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases/tag/7.79.0">2023-11-08</a></br><ul>
<li>feat(tracing): Add span <code>origin</code> to trace context (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1981343917" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9472"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9472/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9472">#9472</a>)</li>
<li>fix(deno): Emit .mjs files (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1983345013"
data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9485"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9485/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9485">#9485</a>)</li>
<li>fix(nextjs): Flush servercomponent events for edge (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1983533334" data-permission-text="Title is private"
data-url="getsentry/sentry-javascript#9487"
data-hovercard-type="pull_request"
data-hovercard-url="/getsentry/sentry-javascript/pull/9487/hovercard"
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/pull/9487">#9487</a>)</li>
</ul>
<h2>Bundle size 📦</h2>
<table>
<thead>
<tr>
<th>Path</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.24 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking
flags (gzipped)</td>
<td>55.49 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - Webpack (gzipped)</td>
<td>30.98 KB</td>
</tr>
<tr>
<td>@ sentry/browser - Webpack (gzipped)</td>
<td>21.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle
(gzipped)</td>
<td>61.82 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)</td>
<td>29.09 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (gzipped)</td>
<td>21.23 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified
&amp; uncompressed)</td>
<td>194.89 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified &amp;
uncompressed)</td>
<td>88.3 KB</td>
</tr>
<tr>
<td>@ sentry/browser - ES6 CDN Bundle (minified &amp; uncompressed)</td>
<td>63.28 KB</td>
</tr>
<tr>
<td>@ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)</td>
<td>31.8 KB</td>
</tr>
<tr>
<td>@ sentry/react (incl. Tracing, Replay) - Webpack (gzipped)</td>
<td>65.61 KB</td>
</tr>
<tr>
<td>@ sentry/react - Webpack (gzipped)</td>
<td>21.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client (incl. Tracing, Replay) - Webpack
(gzipped)</td>
<td>82.34 KB</td>
</tr>
<tr>
<td>@ sentry/nextjs Client - Webpack (gzipped)</td>
<td>48.12 KB</td>
</tr>
<tr>
<td>@ sentry-internal/feedback - Webpack (gzipped)</td>
<td>15.81 KB</td>
</tr>
</tbody>
</table>
      </li>
      <li>
        <b>7.78.0</b> - 2023-11-08
      </li>
      <li>
        <b>7.77.0</b> - 2023-10-31
      </li>
      <li>
        <b>7.76.0</b> - 2023-10-27
      </li>
      <li>
        <b>7.75.1</b> - 2023-10-25
      </li>
      <li>
        <b>7.75.0</b> - 2023-10-24
      </li>
      <li>
        <b>7.74.2-alpha.1</b> - 2023-10-23
      </li>
      <li>
        <b>7.74.2-alpha.0</b> - 2023-10-19
      </li>
      <li>
        <b>7.74.1</b> - 2023-10-17
      </li>
      <li>
        <b>7.74.0</b> - 2023-10-13
      </li>
      <li>
        <b>7.73.0</b> - 2023-10-02
      </li>
      <li>
        <b>7.72.0</b> - 2023-09-26
      </li>
      <li>
        <b>7.71.0</b> - 2023-09-25
      </li>
      <li>
        <b>7.70.0</b> - 2023-09-20
      </li>
      <li>
        <b>7.70.0-beta.1</b> - 2023-09-15
      </li>
      <li>
        <b>7.70.0-beta.0</b> - 2023-09-14
      </li>
      <li>
        <b>7.69.0</b> - 2023-09-13
      </li>
      <li>
        <b>7.68.0</b> - 2023-09-06
      </li>
      <li>
        <b>7.67.0</b> - 2023-09-05
      </li>
      <li>
        <b>7.67.0-beta.0</b> - 2023-08-31
      </li>
      <li>
        <b>7.66.0</b> - 2023-08-30
      </li>
      <li>
        <b>7.66.0-alpha.0</b> - 2023-08-29
      </li>
      <li>
        <b>7.65.0</b> - 2023-08-28
      </li>
      <li>
        <b>7.65.0-alpha.0</b> - 2023-08-16
      </li>
      <li>
        <b>7.64.0</b> - 2023-08-14
      </li>
      <li>
        <b>7.64.0-alpha.0</b> - 2023-08-11
      </li>
      <li>
        <b>7.63.0</b> - 2023-08-10
      </li>
      <li>
        <b>7.62.0</b> - 2023-08-09
      </li>
      <li>
        <b>7.61.1</b> - 2023-08-04
      </li>
      <li>
        <b>7.61.0</b> - 2023-07-31
      </li>
      <li>
        <b>7.60.1</b> - 2023-07-26
      </li>
      <li>
        <b>7.60.0</b> - 2023-07-21
      </li>
      <li>
        <b>7.59.3</b> - 2023-07-19
      </li>
      <li>
        <b>7.59.2</b> - 2023-07-18
      </li>
      <li>
        <b>7.59.1</b> - 2023-07-18
      </li>
      <li>
        <b>7.59.0-beta.1</b> - 2023-07-17
      </li>
      <li>
        <b>7.59.0-beta.0</b> - 2023-07-13
      </li>
      <li>
        <b>7.58.1</b> - 2023-07-13
      </li>
      <li>
        <b>7.58.0</b> - 2023-07-12
      </li>
      <li>
        <b>7.57.0</b> - 2023-06-28
      </li>
      <li>
        <b>7.57.0-beta.0</b> - 2023-06-21
      </li>
      <li>
        <b>7.56.0</b> - 2023-06-19
      </li>
      <li>
        <b>7.55.2</b> - 2023-06-14
      </li>
      <li>
        <b>7.55.1</b> - 2023-06-14
      </li>
      <li>
        <b>7.55.0</b> - 2023-06-13
      </li>
      <li>
        <b>7.54.0</b> - 2023-06-01
      </li>
      <li>
        <b>7.53.1</b> - 2023-05-24
      </li>
      <li>
        <b>7.53.0</b> - 2023-05-23
      </li>
      <li>
        <b>7.52.1</b> - 2023-05-15
      </li>
      <li>
        <b>7.52.0</b> - 2023-05-15
      </li>
      <li>
        <b>7.51.2</b> - 2023-05-08
      </li>
      <li>
        <b>7.51.1</b> - 2023-05-08
      </li>
      <li>
        <b>7.51.0</b> - 2023-05-04
      </li>
      <li>
        <b>7.50.0</b> - 2023-04-27
      </li>
      <li>
        <b>7.49.0</b> - 2023-04-20
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/getsentry/sentry-javascript/releases">@sentry/browser
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiI2ZDA3MzEwZS1kMzQ5LTRhOTktOGJiMS0wNzE3M2I3N2YzOTkiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6IjZkMDczMTBlLWQzNDktNGE5OS04YmIxLTA3MTczYjc3ZjM5OSJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/jancizmar/project/b0bcfaa3-849f-4ad3-a7bc-e7f1b8f77516?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/jancizmar/project/b0bcfaa3-849f-4ad3-a7bc-e7f1b8f77516/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/jancizmar/project/b0bcfaa3-849f-4ad3-a7bc-e7f1b8f77516/settings/integration?pkg&#x3D;@sentry/browser&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"6d07310e-d349-4a99-8bb1-07173b77f399","prPublicId":"6d07310e-d349-4a99-8bb1-07173b77f399","dependencies":[{"name":"@sentry/browser","from":"7.49.0","to":"7.80.0"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/jancizmar/project/b0bcfaa3-849f-4ad3-a7bc-e7f1b8f77516?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"b0bcfaa3-849f-4ad3-a7bc-e7f1b8f77516","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":55,"publishedDate":"2023-11-09T16:51:32.991Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->

Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Astro build with Sentry causes build error when using pnpm
3 participants