Bump the dev-patch-updates group across 1 directory with 5 updates #264

Closed
opened 2026-04-05 17:03:54 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @dependabot[bot] on 2/10/2026

Bumps the dev-patch-updates group with 5 updates in the / directory:

Package From To
@tanstack/react-query-devtools 5.91.1 5.91.3
drizzle-kit 0.31.8 0.31.9
esbuild 0.27.2 0.27.3
prettier 3.8.0 3.8.1
react-email 5.2.5 5.2.8

Updates @tanstack/react-query-devtools from 5.91.1 to 5.91.3

Release notes

Sourced from @​tanstack/react-query-devtools's releases.

@​tanstack/react-query-devtools@​5.91.3

Patch Changes

  • Updated dependencies [83366c4]:
    • @​tanstack/query-devtools@​5.93.0
Changelog

Sourced from @​tanstack/react-query-devtools's changelog.

5.91.3

Patch Changes

  • Updated dependencies [83366c4]:
    • @​tanstack/query-devtools@​5.93.0

5.91.2

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/react-query-devtools since your current version.


Updates drizzle-kit from 0.31.8 to 0.31.9

Release notes

Sourced from drizzle-kit's releases.

drizzle-kit@0.31.9

  • drizzle-kit api improvements for D1 connections
Commits
  • e8e6edf feat(drizzle-kit): support d1 via binding (#5302)
  • a086f59 Fixed pg-native Pool detection in node-postgres transactions breaking in envi...
  • See full diff in compare view

Updates esbuild from 0.27.2 to 0.27.3

Release notes

Sourced from esbuild's releases.

v0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
      
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
      
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>
      

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }
    

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
      
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
      
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>
      

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }
    

... (truncated)

Commits
  • 9129e00 publish 0.27.3 to npm
  • e20e411 small fix to release notes
  • 0dc0f2d fix #4322: parse and print CSS @scope rules
  • 55fe391 update firefox css gradient support
  • 2c35297 update gradient lowering transform
  • 9209e44 Update Go to 1.25.7 (#4388)
  • e8d861b close #4374: compat table for the using feature
  • 19b8887 no longer need williamkapke/node-compat-table
  • 7e44218 the kangax/compat-table repo moved to a new url
  • 23b9338 run make update-compat-table
  • Additional commits viewable in compare view

Updates prettier from 3.8.0 to 3.8.1

Release notes

Sourced from prettier's releases.

3.8.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.1

diff

Include available printers in plugin type declarations (#18706 by @​porada)

// Input
import * as prettierPluginEstree from "prettier/plugins/estree";

// Prettier 3.8.0 // Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339) prettierPluginEstree.printers.estree; //=> any

// Prettier 3.8.1 prettierPluginEstree.printers.estree; //=> Printer prettierPluginEstree.printers["estree-json"]; //=> Printer

Commits

Updates react-email from 5.2.5 to 5.2.8

Release notes

Sourced from react-email's releases.

react-email@5.2.8

No release notes provided.

react-email@5.2.7

No release notes provided.

react-email@5.2.6

Patch Changes

  • 11f56c5: fix RESEND_API_KEY being overwritten in email preview
Changelog

Sourced from react-email's changelog.

5.2.8

5.2.7

5.2.6

Patch Changes

  • 11f56c5: fix RESEND_API_KEY being overwritten in email preview

5.3.0-canary.2

Patch Changes

  • 1b9df29: ensure that installed preview server also has dev dependencies

5.3.0-canary.1

Patch Changes

  • 0289914: fix random errors due to root directory not being the preview's path

5.3.0-canary.0

Minor Changes

  • 7c18bd3: don't require installing @​react-email/preview-server in the project, pack it into $HOME/.react-email
Commits
  • a2cfc98 chore(root): version packages (#2946)
  • 52dfbb9 chore(root): version packages (#2939)
  • 047ba86 chore(root): version packages (#2911)
  • e20a39c fix(react-email): support for environments that don't support env -S (#2915)
  • a52215d fix(react-email): installation failure in build when bumping @​react-email/tai...
  • 419cf58 chore: revert new UI installation method (#2924)
  • ef742ec chore(react-email): remove unused code (#2925)
  • 11f56c5 fix(react-email): ovewriting common user env variable (#2910)
  • a23801c chore(root): version packages (canary) (#2907)
  • dc61082 chore(deps): bump tar from 7.5.1 to 7.5.7 (#2906)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for react-email since your current version.


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 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
*Originally created by @dependabot[bot] on 2/10/2026* Bumps the dev-patch-updates group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.91.1` | `5.91.3` | | [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.31.8` | `0.31.9` | | [esbuild](https://github.com/evanw/esbuild) | `0.27.2` | `0.27.3` | | [prettier](https://github.com/prettier/prettier) | `3.8.0` | `3.8.1` | | [react-email](https://github.com/resend/react-email/tree/HEAD/packages/react-email) | `5.2.5` | `5.2.8` | Updates `@tanstack/react-query-devtools` from 5.91.1 to 5.91.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/query/releases"><code>@​tanstack/react-query-devtools</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​tanstack/react-query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.91.3</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/TanStack/query/commit/83366c46a6825b5c591399c705d8128743c527dd"><code>83366c4</code></a>]: <ul> <li><code>@​tanstack/query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.93.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/TanStack/query/blob/main/packages/react-query-devtools/CHANGELOG.md"><code>@​tanstack/react-query-devtools</code>'s changelog</a>.</em></p> <blockquote> <h2>5.91.3</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/TanStack/query/commit/83366c46a6825b5c591399c705d8128743c527dd"><code>83366c4</code></a>]: <ul> <li><code>@​tanstack/query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.93.0</li> </ul> </li> </ul> <h2>5.91.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/TanStack/query/commit/f9fc56a9b8724bcfae46f8f6cb229123478eb4db"><code>f9fc56a</code></a>, <a href="https://github.com/TanStack/query/commit/0b29b6f877d4b3a6d05b1c85fb9cb1e6ea736291"><code>0b29b6f</code></a>]: <ul> <li><code>@​tanstack/query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.92.0</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.90.14</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/query/commit/a678f0957cff5e2cf4efa26dbbeb0747e3bbee6d"><code>a678f09</code></a> ci: Version Packages (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/10069">#10069</a>)</li> <li><a href="https://github.com/TanStack/query/commit/84564f1293f4ca067e9cb40bf3e51cce1939ef8d"><code>84564f1</code></a> ci: Version Packages (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/10001">#10001</a>)</li> <li><a href="https://github.com/TanStack/query/commit/f15b7fcc01e995ab8835f1b1cc82ebb472c1ff64"><code>f15b7fc</code></a> ci: prepare for trusted publishing (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/9952">#9952</a>)</li> <li><a href="https://github.com/TanStack/query/commit/72d8ac5c592004b8f9c3ee086fcb9c3cd615ca05"><code>72d8ac5</code></a> fix: update react and nextJs (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/9944">#9944</a>)</li> <li>See full diff in <a href="https://github.com/TanStack/query/commits/@tanstack/react-query-devtools@5.91.3/packages/react-query-devtools">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@​tanstack/react-query-devtools</code> since your current version.</p> </details> <br /> Updates `drizzle-kit` from 0.31.8 to 0.31.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/drizzle-team/drizzle-orm/releases">drizzle-kit's releases</a>.</em></p> <blockquote> <h2>drizzle-kit@0.31.9</h2> <ul> <li>drizzle-kit api improvements for D1 connections</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/e8e6edfef5ca69c6188d320388ad440265911057"><code>e8e6edf</code></a> feat(drizzle-kit): support d1 via binding (<a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/5302">#5302</a>)</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/a086f59fba7f46f3a077893ba912c99e91eaa760"><code>a086f59</code></a> Fixed pg-native Pool detection in node-postgres transactions breaking in envi...</li> <li>See full diff in <a href="https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.31.8...drizzle-kit@0.31.9">compare view</a></li> </ul> </details> <br /> Updates `esbuild` from 0.27.2 to 0.27.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.27.3</h2> <ul> <li> <p>Preserve URL fragments in data URLs (<a href="https://redirect.github.com/evanw/esbuild/issues/4370">#4370</a>)</p> <p>Consider the following HTML, CSS, and SVG:</p> <ul> <li> <p><code>index.html</code>:</p> <pre lang="html"><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;icons.css&quot;&gt;&lt;/head&gt; &lt;body&gt;&lt;div class=&quot;triangle&quot;&gt;&lt;/div&gt;&lt;/body&gt; &lt;/html&gt; </code></pre> </li> <li> <p><code>icons.css</code>:</p> <pre lang="css"><code>.triangle { width: 10px; height: 10px; background: currentColor; clip-path: url(./triangle.svg#x); } </code></pre> </li> <li> <p><code>triangle.svg</code>:</p> <pre lang="xml"><code>&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt; &lt;defs&gt; &lt;clipPath id=&quot;x&quot;&gt; &lt;path d=&quot;M0 0H10V10Z&quot;/&gt; &lt;/clipPath&gt; &lt;/defs&gt; &lt;/svg&gt; </code></pre> </li> </ul> <p>The CSS uses a URL fragment (the <code>#x</code>) to reference the <code>clipPath</code> element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the <code>dataurl</code> loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:</p> <pre lang="css"><code>/* icons.css */ .triangle { width: 10px; height: 10px; background: currentColor; clip-path: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt;&lt;defs&gt;&lt;clipPath id=&quot;x&quot;&gt;&lt;path d=&quot;M0 0H10V10Z&quot;/&gt;&lt;/clipPath&gt;&lt;/defs&gt;&lt;/svg&gt;#x'); } </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.27.3</h2> <ul> <li> <p>Preserve URL fragments in data URLs (<a href="https://redirect.github.com/evanw/esbuild/issues/4370">#4370</a>)</p> <p>Consider the following HTML, CSS, and SVG:</p> <ul> <li> <p><code>index.html</code>:</p> <pre lang="html"><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;icons.css&quot;&gt;&lt;/head&gt; &lt;body&gt;&lt;div class=&quot;triangle&quot;&gt;&lt;/div&gt;&lt;/body&gt; &lt;/html&gt; </code></pre> </li> <li> <p><code>icons.css</code>:</p> <pre lang="css"><code>.triangle { width: 10px; height: 10px; background: currentColor; clip-path: url(./triangle.svg#x); } </code></pre> </li> <li> <p><code>triangle.svg</code>:</p> <pre lang="xml"><code>&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt; &lt;defs&gt; &lt;clipPath id=&quot;x&quot;&gt; &lt;path d=&quot;M0 0H10V10Z&quot;/&gt; &lt;/clipPath&gt; &lt;/defs&gt; &lt;/svg&gt; </code></pre> </li> </ul> <p>The CSS uses a URL fragment (the <code>#x</code>) to reference the <code>clipPath</code> element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the <code>dataurl</code> loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:</p> <pre lang="css"><code>/* icons.css */ .triangle { width: 10px; height: 10px; background: currentColor; clip-path: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt;&lt;defs&gt;&lt;clipPath id=&quot;x&quot;&gt;&lt;path d=&quot;M0 0H10V10Z&quot;/&gt;&lt;/clipPath&gt;&lt;/defs&gt;&lt;/svg&gt;#x'); } </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/9129e00e6c36a3e374820cb5e3fc2cd319c8ab85"><code>9129e00</code></a> publish 0.27.3 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/e20e4115acda9c9f052fdd1ec8d7d5c5489e837b"><code>e20e411</code></a> small fix to release notes</li> <li><a href="https://github.com/evanw/esbuild/commit/0dc0f2dee556460bd7b81d5bbbae5a2f86449ab6"><code>0dc0f2d</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4322">#4322</a>: parse and print CSS <code>@scope</code> rules</li> <li><a href="https://github.com/evanw/esbuild/commit/55fe39164cd3429fcb92c6f358a8dfe2f6e6e559"><code>55fe391</code></a> update firefox css gradient support</li> <li><a href="https://github.com/evanw/esbuild/commit/2c35297c7ad249a51b9cc3974fa91f74dc13f68c"><code>2c35297</code></a> update gradient lowering transform</li> <li><a href="https://github.com/evanw/esbuild/commit/9209e4445abe7610018f0f758fd5d1fa13ec3ea8"><code>9209e44</code></a> Update Go to 1.25.7 (<a href="https://redirect.github.com/evanw/esbuild/issues/4388">#4388</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/e8d861b68cf8c3c3a4806ec87444ee48b9af1ade"><code>e8d861b</code></a> close <a href="https://redirect.github.com/evanw/esbuild/issues/4374">#4374</a>: compat table for the <code>using</code> feature</li> <li><a href="https://github.com/evanw/esbuild/commit/19b8887368396934957abd75f316cc069d6cc067"><code>19b8887</code></a> no longer need <code>williamkapke/node-compat-table</code></li> <li><a href="https://github.com/evanw/esbuild/commit/7e442189722b54bc6c574ae1148e1014d99e5f32"><code>7e44218</code></a> the <code>kangax/compat-table</code> repo moved to a new url</li> <li><a href="https://github.com/evanw/esbuild/commit/23b9338ed5efbdfa29d59b8b0d8088b1761fdc39"><code>23b9338</code></a> run <code>make update-compat-table</code></li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.27.2...v0.27.3">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.8.0 to 3.8.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.8.1</h2> <ul> <li>Include available <code>printers</code> in plugin type declarations (<a href="https://redirect.github.com/prettier/prettier/pull/18706">#18706</a> by <a href="https://github.com/porada"><code>@​porada</code></a>)</li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#381">Changelog</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.8.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.8.0...3.8.1">diff</a></p> <h4>Include available <code>printers</code> in plugin type declarations (<a href="https://redirect.github.com/prettier/prettier/pull/18706">#18706</a> by <a href="https://github.com/porada"><code>@​porada</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="ts"><code>// Input import * as prettierPluginEstree from &quot;prettier/plugins/estree&quot;; <p>// Prettier 3.8.0 // Property 'printers' does not exist on type 'typeof import(&quot;prettier/plugins/estree&quot;)'. ts(2339) prettierPluginEstree.printers.estree; //=&gt; any</p> <p>// Prettier 3.8.1 prettierPluginEstree.printers.estree; //=&gt; Printer prettierPluginEstree.printers[&quot;estree-json&quot;]; //=&gt; Printer </code></pre></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/90983f40dce5e20beea4e5618b5e0426a6a7f4f0"><code>90983f4</code></a> Release 3.8.1</li> <li><a href="https://github.com/prettier/prettier/commit/57f702f7656e6fc03873f8121480c321b2f44c8c"><code>57f702f</code></a> Include available <code>printers</code> in plugin type declarations (<a href="https://redirect.github.com/prettier/prettier/issues/18706">#18706</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/bece82785141274c12956b0af3bae77a44ae3a9e"><code>bece827</code></a> Revert change in release script</li> <li><a href="https://github.com/prettier/prettier/commit/82a4ab26f1e7fccd0041272de12a3c6b942e622b"><code>82a4ab2</code></a> Bump Prettier dependency to 3.8.0</li> <li><a href="https://github.com/prettier/prettier/commit/5213ee463c653f47e1821de414a4f30573f83337"><code>5213ee4</code></a> Clean changelog_unreleased</li> <li><a href="https://github.com/prettier/prettier/commit/f95ad0f8e1dd9fb5507e7088f42f91fa6b5f3cb0"><code>f95ad0f</code></a> Comment out finished steps</li> <li><a href="https://github.com/prettier/prettier/commit/b2034e819aef944fe1fe3bbf532118885a854f64"><code>b2034e8</code></a> Fix release script</li> <li><a href="https://github.com/prettier/prettier/commit/5824b15189303d52892ffbc0812751533666c674"><code>5824b15</code></a> Release 3.8.0</li> <li><a href="https://github.com/prettier/prettier/commit/04336012b351529f624eaeb3ac9af52a5b7b7c01"><code>0433601</code></a> Add blog post for v3.8.0 (<a href="https://redirect.github.com/prettier/prettier/issues/18639">#18639</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c45fef106ec4d1efdcd61a64c3dd3298272b3d99"><code>c45fef1</code></a> Fix LWC attribute with <code>--embedded-language-formatting off</code> (<a href="https://redirect.github.com/prettier/prettier/issues/18383">#18383</a>)</li> <li>See full diff in <a href="https://github.com/prettier/prettier/compare/3.8.0...3.8.1">compare view</a></li> </ul> </details> <br /> Updates `react-email` from 5.2.5 to 5.2.8 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/resend/react-email/releases">react-email's releases</a>.</em></p> <blockquote> <h2>react-email@5.2.8</h2> <p>No release notes provided.</p> <h2>react-email@5.2.7</h2> <p>No release notes provided.</p> <h2>react-email@5.2.6</h2> <h3>Patch Changes</h3> <ul> <li>11f56c5: fix RESEND_API_KEY being overwritten in email preview</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/resend/react-email/blob/canary/packages/react-email/CHANGELOG.md">react-email's changelog</a>.</em></p> <blockquote> <h2>5.2.8</h2> <h2>5.2.7</h2> <h2>5.2.6</h2> <h3>Patch Changes</h3> <ul> <li>11f56c5: fix RESEND_API_KEY being overwritten in email preview</li> </ul> <h2>5.3.0-canary.2</h2> <h3>Patch Changes</h3> <ul> <li>1b9df29: ensure that installed preview server also has dev dependencies</li> </ul> <h2>5.3.0-canary.1</h2> <h3>Patch Changes</h3> <ul> <li>0289914: fix random errors due to root directory not being the preview's path</li> </ul> <h2>5.3.0-canary.0</h2> <h3>Minor Changes</h3> <ul> <li>7c18bd3: don't require installing <code>@​react-email/preview-server</code> in the project, pack it into <code>$HOME/.react-email</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/resend/react-email/commit/a2cfc98bca3a5c04415585f2663a3f5fb3deaa30"><code>a2cfc98</code></a> chore(root): version packages (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2946">#2946</a>)</li> <li><a href="https://github.com/resend/react-email/commit/52dfbb9580b86b1990ae5bed00fc26b40b45b8c7"><code>52dfbb9</code></a> chore(root): version packages (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2939">#2939</a>)</li> <li><a href="https://github.com/resend/react-email/commit/047ba865375ce0469c52d3577ab04ae1507575b9"><code>047ba86</code></a> chore(root): version packages (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2911">#2911</a>)</li> <li><a href="https://github.com/resend/react-email/commit/e20a39cd7fcdee9074e58d58cc769267c8ffaa26"><code>e20a39c</code></a> fix(react-email): support for environments that don't support <code>env -S</code> (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2915">#2915</a>)</li> <li><a href="https://github.com/resend/react-email/commit/a52215d59f39f3a9a9f00f954ae5f21a235972b4"><code>a52215d</code></a> fix(react-email): installation failure in build when bumping <code>@​react-email/tai</code>...</li> <li><a href="https://github.com/resend/react-email/commit/419cf58394168799a6d593a63ca48f027abfcc91"><code>419cf58</code></a> chore: revert new UI installation method (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2924">#2924</a>)</li> <li><a href="https://github.com/resend/react-email/commit/ef742ec2444fc0f12423ae6b1a0b7c92bfa78ee7"><code>ef742ec</code></a> chore(react-email): remove unused code (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2925">#2925</a>)</li> <li><a href="https://github.com/resend/react-email/commit/11f56c5277d2d231fc1a3e0978b0dd6cf687c6b0"><code>11f56c5</code></a> fix(react-email): ovewriting common user env variable (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2910">#2910</a>)</li> <li><a href="https://github.com/resend/react-email/commit/a23801c50ebdefab73b9fdf249d2e11a776e3da8"><code>a23801c</code></a> chore(root): version packages (canary) (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2907">#2907</a>)</li> <li><a href="https://github.com/resend/react-email/commit/dc6108283f4f5d8d0e6c2e09b887110466cdbdbb"><code>dc61082</code></a> chore(deps): bump tar from 7.5.1 to 7.5.7 (<a href="https://github.com/resend/react-email/tree/HEAD/packages/react-email/issues/2906">#2906</a>)</li> <li>Additional commits viewable in <a href="https://github.com/resend/react-email/commits/react-email@5.2.8/packages/react-email">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for react-email since your current version.</p> </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 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 </details>
Sign in to join this conversation.
No Label dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/pangolin#264