Bump esbuild and vite #3

Closed
opened 2025-10-14 16:11:59 -06:00 by navan · 0 comments
Owner

Originally created by @dependabot[bot] on 6/24/2025

Bumps esbuild to 0.25.5 and updates ancestor dependency vite. These dependencies need to be updated together.

Updates esbuild from 0.17.18 to 0.25.5

Release notes

Sourced from esbuild's releases.

v0.25.5

  • Fix a regression with browser in package.json (#4187)

    The fix to #4144 in version 0.25.3 introduced a regression that caused browser overrides specified in package.json to fail to override relative path names that end in a trailing slash. That behavior change affected the axios@0.30.0 package. This regression has been fixed, and now has test coverage.

  • Add support for certain keywords as TypeScript tuple labels (#4192)

    Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a ? modifier. These labels included function, import, infer, new, readonly, and typeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:

    type Foo = [
      value: any,
      readonly?: boolean, // This is now parsed correctly
    ]
    
  • Add CSS prefixes for the stretch sizing value (#4184)

    This release adds support for prefixing CSS declarations such as div { width: stretch }. That CSS is now transformed into this depending on what the --target= setting includes:

    div {
      width: -webkit-fill-available;
      width: -moz-available;
      width: stretch;
    }
    

v0.25.4

  • Add simple support for CORS to esbuild's development server (#4125)

    Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from localhost where the esbuild development server is running.

    To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new cors option will now set the Access-Control-Allow-Origin response header when the request has a matching Origin header. Note that this currently only works for requests that don't send a preflight OPTIONS request, as esbuild's development server doesn't currently support OPTIONS requests.

    Some examples:

    • CLI:

      esbuild --servedir=. --cors-origin=https://example.com
      
    • JS:

      const ctx = await esbuild.context({})
      await ctx.serve({
        servedir: '.',
        cors: {
      

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2023

This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).

0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    

    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
    constructor() {
    super();
    this.#private = 1;
    }
    #private;
    }

    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
    constructor() {
    this.#private = 1;
    super();
    }
    #private;
    }

    // New output
    class Foo extends Bar {
    #private = 1;
    constructor() {
    super();
    }
    }

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

... (truncated)

Commits

Updates vite from 4.3.9 to 7.0.0

Release notes

Sourced from vite's releases.

create-vite@7.0.0

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0-beta.2

Please refer to CHANGELOG.md for details.

v7.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0-beta.0

Please refer to CHANGELOG.md for details.

v7.0.0-beta.0

Please refer to CHANGELOG.md for details.

create-vite@6.5.0

Please refer to CHANGELOG.md for details.

create-vite@6.4.1

Please refer to CHANGELOG.md for details.

create-vite@6.4.0

Please refer to CHANGELOG.md for details.

v6.3.5

Please refer to CHANGELOG.md for details.

v6.3.4

Please refer to CHANGELOG.md for details.

v6.3.3

Please refer to CHANGELOG.md for details.

v6.3.2

Please refer to CHANGELOG.md for details.

create-vite@6.3.1

Please refer to CHANGELOG.md for details.

v6.3.1

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.0.0 (2025-06-24)

Vite 7 is out!

Today, we're excited to announce the release of the next Vite major:

Breaking Changes

Features

Fixes

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
*Originally created by @dependabot[bot] on 6/24/2025* Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.5 and updates ancestor dependency [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). These dependencies need to be updated together. Updates `esbuild` from 0.17.18 to 0.25.5 <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.25.5</h2> <ul> <li> <p>Fix a regression with <code>browser</code> in <code>package.json</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4187">#4187</a>)</p> <p>The fix to <a href="https://redirect.github.com/evanw/esbuild/issues/4144">#4144</a> in version 0.25.3 introduced a regression that caused <code>browser</code> overrides specified in <code>package.json</code> to fail to override relative path names that end in a trailing slash. That behavior change affected the <code>axios@0.30.0</code> package. This regression has been fixed, and now has test coverage.</p> </li> <li> <p>Add support for certain keywords as TypeScript tuple labels (<a href="https://redirect.github.com/evanw/esbuild/issues/4192">#4192</a>)</p> <p>Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a <code>?</code> modifier. These labels included <code>function</code>, <code>import</code>, <code>infer</code>, <code>new</code>, <code>readonly</code>, and <code>typeof</code>. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:</p> <pre lang="ts"><code>type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ] </code></pre> </li> <li> <p>Add CSS prefixes for the <code>stretch</code> sizing value (<a href="https://redirect.github.com/evanw/esbuild/issues/4184">#4184</a>)</p> <p>This release adds support for prefixing CSS declarations such as <code>div { width: stretch }</code>. That CSS is now transformed into this depending on what the <code>--target=</code> setting includes:</p> <pre lang="css"><code>div { width: -webkit-fill-available; width: -moz-available; width: stretch; } </code></pre> </li> </ul> <h2>v0.25.4</h2> <ul> <li> <p>Add simple support for CORS to esbuild's development server (<a href="https://redirect.github.com/evanw/esbuild/issues/4125">#4125</a>)</p> <p>Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as &quot;debugging in production&quot; by having your production website load code from <code>localhost</code> where the esbuild development server is running.</p> <p>To enable this use case, esbuild is adding a feature to allow <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS">Cross-Origin Resource Sharing</a> (a.k.a. CORS) for <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS#simple_requests">simple requests</a>. Specifically, passing your origin to the new <code>cors</code> option will now set the <code>Access-Control-Allow-Origin</code> response header when the request has a matching <code>Origin</code> header. Note that this currently only works for requests that don't send a preflight <code>OPTIONS</code> request, as esbuild's development server doesn't currently support <code>OPTIONS</code> requests.</p> <p>Some examples:</p> <ul> <li> <p><strong>CLI:</strong></p> <pre><code>esbuild --servedir=. --cors-origin=https://example.com </code></pre> </li> <li> <p><strong>JS:</strong></p> <pre lang="js"><code>const ctx = await esbuild.context({}) await ctx.serve({ servedir: '.', cors: { </code></pre> </li> </ul> </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-2023.md">esbuild's changelog</a>.</em></p> <blockquote> <h1>Changelog: 2023</h1> <p>This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).</p> <h2>0.19.11</h2> <ul> <li> <p>Fix TypeScript-specific class transform edge case (<a href="https://redirect.github.com/evanw/esbuild/issues/3559">#3559</a>)</p> <p>The previous release introduced an optimization that avoided transforming <code>super()</code> in the class constructor for TypeScript code compiled with <code>useDefineForClassFields</code> set to <code>false</code> if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case <em>and</em> there are <code>#private</code> instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to <code>super()</code> (since <code>super()</code> is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:</p> <pre lang="ts"><code>// Original code class Foo extends Bar { #private = 1; public: any; constructor() { super(); } } <p>// Old output (with esbuild v0.19.9)<br /> class Foo extends Bar {<br /> constructor() {<br /> super();<br /> this.#private = 1;<br /> }<br /> #private;<br /> }</p> <p>// Old output (with esbuild v0.19.10)<br /> class Foo extends Bar {<br /> constructor() {<br /> this.#private = 1;<br /> super();<br /> }<br /> #private;<br /> }</p> <p>// New output<br /> class Foo extends Bar {<br /> #private = 1;<br /> constructor() {<br /> super();<br /> }<br /> }<br /> </code></pre></p> </li> <li> <p>Minifier: allow reording a primitive past a side-effect (<a href="https://redirect.github.com/evanw/esbuild/issues/3568">#3568</a>)</p> <p>The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/ea453bf687c8e5cf3c5f11aae372c5ca33be0c98"><code>ea453bf</code></a> publish 0.25.5 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/223ddc6a5f1b4721573765eb5b8571888f64313e"><code>223ddc6</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4187">#4187</a>: browser <code>package.json</code> regression</li> <li><a href="https://github.com/evanw/esbuild/commit/b2c825150b7aa471bcc9b4302ba990557596c35f"><code>b2c8251</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4192">#4192</a>: typescript tuple label parser edge case</li> <li><a href="https://github.com/evanw/esbuild/commit/28cf2f3e7f4b5b2e629171c0e340fbb406ce68f8"><code>28cf2f3</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4184">#4184</a>: css prefixes for <code>stretch</code></li> <li><a href="https://github.com/evanw/esbuild/commit/bee1b09cd565fd122c798f57c9617111f7c999ca"><code>bee1b09</code></a> fix comment indents</li> <li><a href="https://github.com/evanw/esbuild/commit/9ddfe5fa15a5e782f8118459a1b8aa3f9f9e87c2"><code>9ddfe5f</code></a> run <code>make update-compat-table</code></li> <li><a href="https://github.com/evanw/esbuild/commit/c339f34484463f597b77c8450c393bfdd26c629e"><code>c339f34</code></a> fix a misplaced comment</li> <li><a href="https://github.com/evanw/esbuild/commit/218d29e9da018d60cf87b8fb496bb8167936ff54"><code>218d29e</code></a> publish 0.25.4 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/e66cd0bf6daebff56527540c433c69e49e9dcb13"><code>e66cd0b</code></a> dev server: simple support for CORS requests (<a href="https://redirect.github.com/evanw/esbuild/issues/4171">#4171</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/8bf33685941e857c2b0f10c4d719a895f9d1ceea"><code>8bf3368</code></a> js api: validate some options as arrays of strings</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.17.18...v0.25.5">compare view</a></li> </ul> </details> <br /> Updates `vite` from 4.3.9 to 7.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>create-vite@7.0.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@7.0.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-legacy@7.0.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/plugin-legacy@7.0.0/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.0-beta.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.0-beta.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.0-beta.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-legacy@7.0.0-beta.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/plugin-legacy@7.0.0-beta.1/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-legacy@7.0.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/plugin-legacy@7.0.0-beta.0/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.5.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.5.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.4.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.4.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.4.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.4.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.3.5</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.3.5/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.3.4</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.3.4/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.3.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.3.3/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.3.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.3.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.3.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.3.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.3.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.3.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2>7.0.0 (2025-06-24)</h2> <p><img src="https://github.com/vitejs/vite/blob/main/docs/public/og-image-announcing-vite7.png" alt="Vite 7 is out!" /></p> <p>Today, we're excited to announce the release of the next Vite major:</p> <ul> <li><strong><a href="https://vite.dev/blog/announcing-vite7.html">Vite 7.0 announcement blog post</a></strong></li> <li><a href="https://vite.dev/">Docs</a> (translations: <a href="https://cn.vite.dev/">简体中文</a>, <a href="https://ja.vite.dev/">日本語</a>, <a href="https://es.vite.dev/">Español</a>, <a href="https://pt.vite.dev/">Português</a>, <a href="https://ko.vite.dev/">한국어</a>, <a href="https://de.vite.dev/">Deutsch</a>, <a href="https://fa.vite.dev/">فارسی</a>)</li> <li><a href="https://vite.dev/guide/migration.html">Migration Guide</a></li> </ul> <h3>Breaking Changes</h3> <ul> <li>fix(ssr)!: don't access <code>Object</code> variable in ssr transformed code (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19996">#19996</a>) (<a href="https://github.com/vitejs/vite/commit/fceff60dc81730f7768b57f14e7a112facff387d">fceff60</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19996">#19996</a></li> <li>chore!: remove deprecated splitVendorChunkPlugin (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19255">#19255</a>) (<a href="https://github.com/vitejs/vite/commit/91a92c7e1eaf55cd5d5cfa49c546e130045e7dee">91a92c7</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19255">#19255</a></li> <li>chore!: remove node 18 support (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19972">#19972</a>) (<a href="https://github.com/vitejs/vite/commit/00b8a98f36376804437e1342265453915ae613de">00b8a98</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19972">#19972</a></li> <li>feat!: bump <code>build.target</code> and name it <code>baseline-widely-available</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20007">#20007</a>) (<a href="https://github.com/vitejs/vite/commit/4a8aa82556eb2b9e54673a6aac77873e0eb27fa9">4a8aa82</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20007">#20007</a></li> <li>refactor!: bump required node version to 20.19+, 22.12+ and remove cjs build (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20032">#20032</a>) (<a href="https://github.com/vitejs/vite/commit/2b80243fada75378e80475028fdcc78f4432bd6f">2b80243</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20032">#20032</a></li> <li>refactor!: remove <code>experimental.skipSsrTransform</code> option (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20038">#20038</a>) (<a href="https://github.com/vitejs/vite/commit/6c3dd8e46fa77060603679cda91a4c8d01d095ab">6c3dd8e</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20038">#20038</a></li> <li>refactor!: remove <code>HotBroadcaster</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19988">#19988</a>) (<a href="https://github.com/vitejs/vite/commit/cda8c947934466da27e874b6c064451cf73f03e5">cda8c94</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19988">#19988</a></li> <li>refactor!: remove deprecated <code>HotBroadcaster</code> related types (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19987">#19987</a>) (<a href="https://github.com/vitejs/vite/commit/86b5e0030bf204f8f2db0cf8ee895ab3ecf154b8">86b5e00</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19987">#19987</a></li> <li>refactor!: remove deprecated hook-level <code>enforce</code>/<code>transform</code> from <code>transformIndexHtml</code> hook (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19349">#19349</a> (<a href="https://github.com/vitejs/vite/commit/6198b9d2a32f7bd17b3332525a98c06d9a425fb1">6198b9d</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19349">#19349</a></li> <li>refactor!: remove deprecated no-op type only properties (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19985">#19985</a>) (<a href="https://github.com/vitejs/vite/commit/9151c2400f6ab494f73d78aea4435b7c1ef5fc30">9151c24</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19985">#19985</a></li> <li>refactor(css)!: always use sass compiler API (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19978">#19978</a>) (<a href="https://github.com/vitejs/vite/commit/3bfe5c5ff96af0a0624c8f14503ef87a0c0850ed">3bfe5c5</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19978">#19978</a></li> <li>refactor(css)!: remove sass legacy API support (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19977">#19977</a>) (<a href="https://github.com/vitejs/vite/commit/6eaccc9009d718a1afcff2af587e81eb959f5b60">6eaccc9</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19977">#19977</a></li> </ul> <h3>Features</h3> <ul> <li>feat(types): use terser types from terser package (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20274">#20274</a>) (<a href="https://github.com/vitejs/vite/commit/a5799fa74c6190ecbb2da3d280136ff32463afc6">a5799fa</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20274">#20274</a></li> <li>feat: apply some middlewares before <code>configurePreviewServer</code> hook (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20224">#20224</a>) (<a href="https://github.com/vitejs/vite/commit/b989c42cf84378e6cb93970de739941f0d56d6f6">b989c42</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20224">#20224</a></li> <li>feat: apply some middlewares before <code>configureServer</code> hook (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20222">#20222</a>) (<a href="https://github.com/vitejs/vite/commit/f5cc4c0ded337670b439e51bc95f173e2b5cf9ad">f5cc4c0</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20222">#20222</a></li> <li>feat: add base option to import.meta.glob (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20163">#20163</a>) (<a href="https://github.com/vitejs/vite/commit/253d6c6df2ebe3c4a88dabb6cec000128681561f">253d6c6</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20163">#20163</a></li> <li>feat: add <code>this.meta.viteVersion</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20088">#20088</a>) (<a href="https://github.com/vitejs/vite/commit/f55bf41e91f8dfe829a46e58f0035b19c8ab6a25">f55bf41</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20088">#20088</a></li> <li>feat: allow passing down resolved config to vite's <code>createServer</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19894">#19894</a>) (<a href="https://github.com/vitejs/vite/commit/c1ae9bd4a0542b4703ae7766ad61d072e8b833bd">c1ae9bd</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19894">#19894</a></li> <li>feat: buildApp hook (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19971">#19971</a>) (<a href="https://github.com/vitejs/vite/commit/5da659de902f0a2d6d8beefbf269128383b63887">5da659d</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19971">#19971</a></li> <li>feat: make PluginContext available for Vite-specific hooks (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19936">#19936</a>) (<a href="https://github.com/vitejs/vite/commit/7063839d47dfd4ac6be1247ba68e414ffe287b00">7063839</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19936">#19936</a></li> <li>feat: resolve environments plugins at config time (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20120">#20120</a>) (<a href="https://github.com/vitejs/vite/commit/f6a28d5f792ba5cc4dc236e3e6edd05199cabcc8">f6a28d5</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20120">#20120</a></li> <li>feat: stabilize <code>css.preprocessorMaxWorkers</code> and default to <code>true</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19992">#19992</a>) (<a href="https://github.com/vitejs/vite/commit/70aee139ea802478bad56e5e441f187140bcf0cc">70aee13</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19992">#19992</a></li> <li>feat: stabilize <code>optimizeDeps.noDiscovery</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19984">#19984</a>) (<a href="https://github.com/vitejs/vite/commit/6d2dcb494db9f40565f11b50bdbb8c1b7245697d">6d2dcb4</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19984">#19984</a></li> <li>feat(build): provide names for asset entrypoints (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19912">#19912</a>) (<a href="https://github.com/vitejs/vite/commit/c4e01dc5ab0f1708383c39d28ce62e12b8f374fc">c4e01dc</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19912">#19912</a></li> <li>feat(client): support opening fileURL in editor (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20040">#20040</a>) (<a href="https://github.com/vitejs/vite/commit/1bde4d25243cd9beaadb01413e896fef562626ef">1bde4d2</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20040">#20040</a></li> </ul> <h3>Fixes</h3> <ul> <li>fix: keep <code>import.meta.url</code> in bundled Vite (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20235">#20235</a>) (<a href="https://github.com/vitejs/vite/commit/3bf3a8ab00e5a0dfab0bb5741cb871ea30b72651">3bf3a8a</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20235">#20235</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20271">#20271</a>) (<a href="https://github.com/vitejs/vite/commit/6b64d63d700154de2c00270300b671cef8863708">6b64d63</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20271">#20271</a></li> <li>fix(module-runner): export <code>ssrExportNameKey</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20266">#20266</a>) (<a href="https://github.com/vitejs/vite/commit/ac302a729062dbfc67f762b3c4af46b7893c214f">ac302a7</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20266">#20266</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/eafd28ac88d5908cbc3e0a047ed7a12094386436"><code>eafd28a</code></a> chore: rearrange 7.0 changelog (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20280">#20280</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/b85f32275b443bf6b647572a9209f1e078b5b4dd"><code>b85f322</code></a> release: v7.0.0</li> <li><a href="https://github.com/vitejs/vite/commit/9b98dcbf75546240e1609185828e18a77bac8c8d"><code>9b98dcb</code></a> fix(module-runner): expose <code>normalizeModuleId</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20277">#20277</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/a5799fa74c6190ecbb2da3d280136ff32463afc6"><code>a5799fa</code></a> feat(types): use terser types from terser package (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20274">#20274</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/f7377c3eae6323bd3237ff5de5ae55c879fe7325"><code>f7377c3</code></a> chore(deps): update rolldown-related dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20270">#20270</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/6b64d63d700154de2c00270300b671cef8863708"><code>6b64d63</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20271">#20271</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/ac302a729062dbfc67f762b3c4af46b7893c214f"><code>ac302a7</code></a> fix(module-runner): export <code>ssrExportNameKey</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20266">#20266</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/b135918b91e8381c50bd2d076d40e9a65fe68bfe"><code>b135918</code></a> chore: typos in comments (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20259">#20259</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/3f469012ad38e3cb330adc74a8b3ec88561c822e"><code>3f46901</code></a> perf(utils): improve performance of <code>numberToPos</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20244">#20244</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/3bf3a8ab00e5a0dfab0bb5741cb871ea30b72651"><code>3bf3a8a</code></a> fix: keep <code>import.meta.url</code> in bundled Vite (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20235">#20235</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/create-vite@7.0.0/packages/vite">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/oxalorg/sakura/network/alerts). </details>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github/sakura#3
No description provided.