Avatar for the MystenLabs user
MystenLabs
walrus-sites
BlogDocsChangelog

Performance History

Latest Results

feat(site-builder): SEINT-228 Support for deletable blobs (#320) site-builder `destroy` command deleting also blobs. --------- Signed-off-by: giac-mysten <giacomo@mystenlabs.com> Co-authored-by: giac-mysten <giacomo@mystenlabs.com>
main
14 days ago
Notify in case of blob deletion failure
SEINT-228-deletable-blobs
14 days ago
chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates (#372) Bumps the npm_and_yarn group with 2 updates in the /portal directory: [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) and [@sentry/node](https://github.com/getsentry/sentry-javascript). Updates `@sentry/nextjs` from 8.38.0 to 8.52.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.52.0</h2> <h3>Important Changes</h3> <ul> <li><strong>feat(solidstart): Add <code>withSentry</code> wrapper for SolidStart config (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/15135">#15135</a>)</strong></li> </ul> <p>To enable the SolidStart SDK, wrap your SolidStart Config with <code>withSentry</code>. The <code>sentrySolidStartVite</code> plugin is now automatically added by <code>withSentry</code> and you can pass the Sentry build-time options like this:</p> <pre lang="js"><code>import { defineConfig } from '@solidjs/start/config'; import { withSentry } from '@sentry/solidstart'; <p>export default defineConfig(<br /> withSentry(<br /> {<br /> /* Your SolidStart config options... */<br /> },<br /> {<br /> // Options for setting up source maps<br /> org: process.env.SENTRY_ORG,<br /> project: process.env.SENTRY_PROJECT,<br /> authToken: process.env.SENTRY_AUTH_TOKEN,<br /> },<br /> ),<br /> );<br /> </code></pre></p> <p>With the <code>withSentry</code> wrapper, the Sentry server config should not be added to the <code>public</code> directory anymore. Add the Sentry server config in <code>src/instrument.server.ts</code>. Then, the server config will be placed inside the server build output as <code>instrument.server.mjs</code>.</p> <p>Now, there are two options to set up the SDK:</p> <ol> <li><strong>(recommended)</strong> Provide an <code>--import</code> CLI flag to the start command like this (path depends on your server setup): <code>node --import ./.output/server/instrument.server.mjs .output/server/index.mjs</code></li> <li>Add <code>autoInjectServerSentry: 'top-level-import'</code> and the Sentry config will be imported at the top of the server entry (comes with tracing limitations) <pre lang="js"><code>withSentry( { /* Your SolidStart config options... */ }, { // Optional: Install Sentry with a top-level import autoInjectServerSentry: 'top-level-import', }, ); </code></pre> </li> </ol> <h3>Other Changes</h3> <ul> <li>feat(v8/core): Add client outcomes for breadcrumbs buffer (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/15149">#15149</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/8.52.0/CHANGELOG.md"><code>@​sentry/nextjs</code>'s changelog</a>.</em></p> <blockquote> <h2>8.52.0</h2> <h3>Important Changes</h3> <ul> <li><strong>feat(solidstart): Add <code>withSentry</code> wrapper for SolidStart config (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/15135">#15135</a>)</strong></li> </ul> <p>To enable the SolidStart SDK, wrap your SolidStart Config with <code>withSentry</code>. The <code>sentrySolidStartVite</code> plugin is now automatically added by <code>withSentry</code> and you can pass the Sentry build-time options like this:</p> <pre lang="js"><code>import { defineConfig } from '@solidjs/start/config'; import { withSentry } from '@sentry/solidstart'; <p>export default defineConfig(<br /> withSentry(<br /> {<br /> /* Your SolidStart config options... */<br /> },<br /> {<br /> // Options for setting up source maps<br /> org: process.env.SENTRY_ORG,<br /> project: process.env.SENTRY_PROJECT,<br /> authToken: process.env.SENTRY_AUTH_TOKEN,<br /> },<br /> ),<br /> );<br /> </code></pre></p> <p>With the <code>withSentry</code> wrapper, the Sentry server config should not be added to the <code>public</code> directory anymore. Add the Sentry server config in <code>src/instrument.server.ts</code>. Then, the server config will be placed inside the server build output as <code>instrument.server.mjs</code>.</p> <p>Now, there are two options to set up the SDK:</p> <ol> <li><strong>(recommended)</strong> Provide an <code>--import</code> CLI flag to the start command like this (path depends on your server setup): <code>node --import ./.output/server/instrument.server.mjs .output/server/index.mjs</code></li> <li>Add <code>autoInjectServerSentry: 'top-level-import'</code> and the Sentry config will be imported at the top of the server entry (comes with tracing limitations) <pre lang="js"><code>withSentry( { /* Your SolidStart config options... */ }, { // Optional: Install Sentry with a top-level import autoInjectServerSentry: 'top-level-import', }, ); </code></pre> </li> </ol> <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/bbafacbc6fb145e5c61515d2babda6d5362970e7"><code>bbafacb</code></a> release: 8.52.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/a6f73001d8294e1198a7abf11a9f8b285165a369"><code>a6f7300</code></a> meta(changelog): Update CHANGELOG for 8.52.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15177">#15177</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/cb6aca71c47368f6d4495e4cf7ebf289ed63372c"><code>cb6aca7</code></a> fix(v8/core): Pass <code>module</code> into <code>loadModule</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15139">#15139</a>) (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15166">#15166</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/4a83c9a865fb2310ea699e6e5898b8389c46fd27"><code>4a83c9a</code></a> test(v8/e2e): Avoid making request to example.com in nextjs e2e test (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15176">#15176</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/3fa35107a437e332aba3b6e992c503579013d989"><code>3fa3510</code></a> test(v8/e2e): Unflake replay recording data optional e2e test (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15168">#15168</a>) (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15172">#15172</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/fe0272a4c4a14587f916913cbe2156f327cd95d0"><code>fe0272a</code></a> fix(v8/bun): Ensure instrumentation of <code>Bun.serve</code> survives a server reload (...</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/a3ddff69cf471fc7ac64ff0d76ed914dbf227062"><code>a3ddff6</code></a> feat(v8/core): Improve error formatting in ZodErrors integration (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15155">#15155</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/b468ab0260e7237579e395a20d544c7161a6eeb5"><code>b468ab0</code></a> feat(v8/core): Add client outcomes for breadcrumbs buffer (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15149">#15149</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/a76f243e1c529b1ae8bb658f382ab2bce5409770"><code>a76f243</code></a> feat(v8/solidstart): Add <code>withSentry</code> wrapper for SolidStart config (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15135">#15135</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/d5f80af5e6abd31fd5a1f6e19b1779a7ef36710b"><code>d5f80af</code></a> Merge branch 'release/8.51.0' into v8</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-javascript/compare/8.38.0...8.52.0">compare view</a></li> </ul> </details> <br /> Updates `@sentry/node` from 8.38.0 to 8.49.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>8.49.0</h2> <ul> <li>feat(v8/browser): Flush offline queue on flush and browser online event (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14969">#14969</a>)</li> <li>feat(v8/react): Add a <code>handled</code> prop to ErrorBoundary (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14978">#14978</a>)</li> <li>fix(profiling/v8): Don't put <code>require</code>, <code>__filename</code> and <code>__dirname</code> on global object (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14952">#14952</a>)</li> <li>fix(v8/node): Enforce that ContextLines integration does not leave open file handles (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14997">#14997</a>)</li> <li>fix(v8/replay): Disable mousemove sampling in rrweb for iOS browsers (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14944">#14944</a>)</li> <li>fix(v8/sveltekit): Ensure source maps deletion is called after source ma… (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14963">#14963</a>)</li> <li>fix(v8/vue): Re-throw error when no errorHandler exists (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14943">#14943</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/HHK1"><code>@​HHK1</code></a> and <a href="https://github.com/mstrokin"><code>@​mstrokin</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></td> <td>23.29 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> - with treeshaking flags</td> <td>21.96 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing)</td> <td>35.85 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay)</td> <td>73.19 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay) - with treeshaking flags</td> <td>63.58 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay with Canvas)</td> <td>77.5 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Tracing, Replay, Feedback)</td> <td>89.44 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. Feedback)</td> <td>39.5 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. sendFeedback)</td> <td>27.89 KB</td> </tr> <tr> <td><code>@​sentry/browser</code> (incl. FeedbackAsync)</td> <td>32.69 KB</td> </tr> <tr> <td><code>@​sentry/react</code></td> <td>25.97 KB</td> </tr> <tr> <td><code>@​sentry/react</code> (incl. Tracing)</td> <td>38.67 KB</td> </tr> <tr> <td><code>@​sentry/vue</code></td> <td>27.57 KB</td> </tr> <tr> <td><code>@​sentry/vue</code> (incl. Tracing)</td> <td>37.71 KB</td> </tr> <tr> <td><code>@​sentry/svelte</code></td> <td>23.45 KB</td> </tr> <tr> <td>CDN Bundle</td> <td>24.49 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing)</td> <td>37.56 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay)</td> <td>72.84 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay, Feedback)</td> <td>78.2 KB</td> </tr> <tr> <td>CDN Bundle - uncompressed</td> <td>71.93 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing) - uncompressed</td> <td>111.42 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay) - uncompressed</td> <td>225.68 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed</td> <td>238.78 KB</td> </tr> <tr> <td><code>@​sentry/nextjs</code> (client)</td> <td>38.92 KB</td> </tr> <tr> <td><code>@​sentry/sveltekit</code> (client)</td> <td>36.36 KB</td> </tr> <tr> <td><code>@​sentry/node</code></td> <td>162.82 KB</td> </tr> <tr> <td><code>@​sentry/node</code> - without tracing</td> <td>98.95 KB</td> </tr> <tr> <td><code>@​sentry/aws-serverless</code></td> <td>126.65 KB</td> </tr> </tbody> </table> <h2>8.48.0</h2> <h3>Deprecations</h3> <ul> <li> <p><strong>feat(v8/core): Deprecate <code>getDomElement</code> method (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14799">#14799</a>)</strong></p> <p>Deprecates <code>getDomElement</code>. There is no replacement.</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/8.49.0/CHANGELOG.md"><code>@​sentry/node</code>'s changelog</a>.</em></p> <blockquote> <h2>8.49.0</h2> <ul> <li>feat(v8/browser): Flush offline queue on flush and browser online event (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14969">#14969</a>)</li> <li>feat(v8/react): Add a <code>handled</code> prop to ErrorBoundary (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14978">#14978</a>)</li> <li>fix(profiling/v8): Don't put <code>require</code>, <code>__filename</code> and <code>__dirname</code> on global object (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14952">#14952</a>)</li> <li>fix(v8/node): Enforce that ContextLines integration does not leave open file handles (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14997">#14997</a>)</li> <li>fix(v8/replay): Disable mousemove sampling in rrweb for iOS browsers (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14944">#14944</a>)</li> <li>fix(v8/sveltekit): Ensure source maps deletion is called after source ma… (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14963">#14963</a>)</li> <li>fix(v8/vue): Re-throw error when no errorHandler exists (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14943">#14943</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/HHK1"><code>@​HHK1</code></a> and <a href="https://github.com/mstrokin"><code>@​mstrokin</code></a>. Thank you for your contribution!</p> <h2>8.48.0</h2> <h3>Deprecations</h3> <ul> <li> <p><strong>feat(v8/core): Deprecate <code>getDomElement</code> method (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14799">#14799</a>)</strong></p> <p>Deprecates <code>getDomElement</code>. There is no replacement.</p> </li> </ul> <h3>Other changes</h3> <ul> <li>fix(nestjs/v8): Use correct main/module path in package.json (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14791">#14791</a>)</li> <li>fix(v8/core): Use consistent <code>continueTrace</code> implementation in core (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14819">#14819</a>)</li> <li>fix(v8/node): Correctly resolve debug IDs for ANR events with custom appRoot (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14823">#14823</a>)</li> <li>fix(v8/node): Ensure <code>NODE_OPTIONS</code> is not passed to worker threads (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14825">#14825</a>)</li> <li>fix(v8/angular): Fall back to element <code>tagName</code> when name is not provided to <code>TraceDirective</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14828">#14828</a>)</li> <li>fix(aws-lambda): Remove version suffix from lambda layer (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14843">#14843</a>)</li> <li>fix(v8/node): Ensure express requests are properly handled (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14851">#14851</a>)</li> <li>feat(v8/node): Add <code>openTelemetrySpanProcessors</code> option (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14853">#14853</a>)</li> <li>fix(v8/react): Use <code>Set</code> as the <code>allRoutes</code> container. (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14878">#14878</a>) (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14884">#14884</a>)</li> <li>fix(v8/react): Improve handling of routes nested under path=&quot;/&quot; (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14897">#14897</a>)</li> <li>feat(v8/core): Add <code>normalizedRequest</code> to <code>samplingContext</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14903">#14903</a>)</li> <li>fix(v8/feedback): Avoid lazy loading code for <code>syncFeedbackIntegration</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14918">#14918</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/arturovt"><code>@​arturovt</code></a>. Thank you for your contribution!</p> <h2>8.47.0</h2> <ul> <li>feat(v8/core): Add <code>updateSpanName</code> helper function (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14736">#14736</a>)</li> <li>feat(v8/node): Do not overwrite prisma <code>db.system</code> in newer Prisma versions (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14772">#14772</a>)</li> <li>feat(v8/node/deps): Bump <code>@​prisma/instrumentation</code> from 5.19.1 to 5.22.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14755">#14755</a>)</li> <li>feat(v8/replay): Mask srcdoc iframe contents per default (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14779">#14779</a>)</li> <li>ref(v8/nextjs): Fix typo in source maps deletion warning (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14776">#14776</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/aloisklink"><code>@​aloisklink</code></a> and <a href="https://github.com/benjick"><code>@​benjick</code></a>. Thank you for your contributions!</p> <h2>8.46.0</h2> <ul> <li>feat: Allow capture of more than 1 ANR event [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14713">#14713</a>)</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/db519337854e32c6ef0582c2eb3d727306bc1ca7"><code>db51933</code></a> release: 8.49.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/629fba22ce9375f2d582c3ca53cb9805f939fe4f"><code>629fba2</code></a> meta(changelog): Update CHANGELOG for 8.49.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15019">#15019</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/f5ac6273fbaa2ab7700b261cb69723e7f14ccf89"><code>f5ac627</code></a> fix(v8/node): Enforce that ContextLines integration does not leave open file ...</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/286f6b009241170ee843779a598aefde4b146c2c"><code>286f6b0</code></a> test(v8/e2e): Fix node-express test transitive dependency (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/15004">#15004</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/798a93290827b71046a593ce065fdb59857e0082"><code>798a932</code></a> feat(v8/browser): Flush offline queue on flush and browser online event (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14969">#14969</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/0c3b2a41525101bb297cb391a085ae33c8bfafcd"><code>0c3b2a4</code></a> fix(v8/replay): Disable mousemove sampling in rrweb for iOS browsers (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14944">#14944</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/fda1aeee4dfc1d44730c2ce290053d9bc2b55b86"><code>fda1aee</code></a> feat(v8/react): Add a <code>handled</code> prop to ErrorBoundary (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14978">#14978</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/5182853d033d44c391427e19952961343dba2083"><code>5182853</code></a> chore(v8/repo): Add missing v7 changelog entries (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14961">#14961</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/af00c8f8a6f844fea64684f0f364f0f7647e91ee"><code>af00c8f</code></a> fix(v8/sveltekit): Ensure source maps deletion is called after source ma… (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/1">#1</a>...</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/8926cb744d4b161e9642534e5667634d7344b011"><code>8926cb7</code></a> fix(v8/vue): Re-throw error when no errorHandler exists (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14943">#14943</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-javascript/compare/8.38.0...8.49.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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/MystenLabs/walrus-sites/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
main
14 days ago
Merge branch 'main' into alextzimas/replace-config-loader-with-zod
alextzimas/replace-config-loader-with-zod
14 days ago
Merge branch 'main' into alextzimas/sew-27-use-different-redis-databases-for-allowlist-and-blocklist
alextzimas/sew-27-use-different-redis-databases-for-allowlist-and-blocklist
15 days ago

Active Branches

feat(site-builder): dry-run
last run
22 days ago
#325
CodSpeed Performance Gauge
0%
#347
CodSpeed Performance Gauge
+1%
#306
CodSpeed Performance Gauge
0%
Home Terms PrivacyDocs