Commit e99a59c
authored
chore(deps): bump esbuild, @vitejs/plugin-react-swc and vite in /applications/tari_dan_wallet_web_ui (tari-project#1337)
Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates
ancestor dependencies [esbuild](https://github.com/evanw/esbuild),
[@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc)
and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
These dependencies need to be updated together.
Updates `esbuild` from 0.18.20 to 0.25.1
<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.1</h2>
<ul>
<li>
<p>Fix incorrect paths in inline source maps (<a
href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4105">#4105</a>)</p>
<p>This fixes a regression from version 0.25.0 where esbuild didn't
correctly resolve relative paths contained within source maps in inline
<code>sourceMappingURL</code> data URLs. The paths were incorrectly
being passed through as-is instead of being resolved relative to the
source file containing the <code>sourceMappingURL</code> comment, which
was due to the data URL not being a file URL. This regression has been
fixed, and this case now has test coverage.</p>
</li>
<li>
<p>Fix invalid generated source maps (<a
href="https://redirect.github.com/evanw/esbuild/issues/4080">#4080</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4107">#4107</a>)</p>
<p>This release fixes a regression from version 0.24.1 that could cause
esbuild to generate invalid source maps. Specifically under certain
conditions, esbuild could generate a mapping with an out-of-bounds
source index. It was introduced by code that attempted to improve
esbuild's handling of "null" entries in source maps (i.e.
mappings with a generated position but no original position). This
regression has been fixed.</p>
<p>This fix was contributed by <a
href="https://github.com/jridgewell"><code>@jridgewell</code></a>.</p>
</li>
<li>
<p>Fix a regression with non-file source map paths (<a
href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>)</p>
<p>The format of paths in source maps that aren't in the
<code>file</code> namespace was unintentionally changed in version
0.25.0. Path namespaces is an esbuild-specific concept that is
optionally available for plugins to use to distinguish paths from
<code>file</code> paths and from paths meant for other plugins.
Previously the namespace was prepended to the path joined with a
<code>:</code> character, but version 0.25.0 unintentionally failed to
prepend the namespace. The previous behavior has been restored.</p>
</li>
<li>
<p>Fix a crash with <code>switch</code> optimization (<a
href="https://redirect.github.com/evanw/esbuild/issues/4088">#4088</a>)</p>
<p>The new code in the previous release to optimize dead code in switch
statements accidentally introduced a crash in the edge case where one or
more switch case values include a function expression. This is because
esbuild now visits the case values first to determine whether any cases
are dead code, and then visits the case bodies once the dead code status
is known. That triggered some internal asserts that guard against
traversing the AST in an unexpected order. This crash has been fixed by
changing esbuild to expect the new traversal ordering. Here's an example
of affected code:</p>
<pre lang="js"><code>switch (x) {
case '':
return y.map(z => z.value)
case y.map(z => z.key).join(','):
return []
}
</code></pre>
</li>
<li>
<p>Update Go from 1.23.5 to 1.23.7 (<a
href="https://redirect.github.com/evanw/esbuild/issues/4076">#4076</a>,
<a
href="https://redirect.github.com/evanw/esbuild/pull/4077">#4077</a>)</p>
<p>This should have no effect on existing code as this version change
does not change Go's operating system support. It may remove certain
reports from vulnerability scanners that detect which version of the Go
compiler esbuild uses.</p>
<p>This PR was contributed by <a
href="https://github.com/MikeWillCook"><code>@MikeWillCook</code></a>.</p>
</li>
</ul>
<h2>v0.25.0</h2>
<p><strong>This release deliberately contains backwards-incompatible
changes.</strong> To avoid automatically picking up releases like this,
you should either be pinning the exact version of <code>esbuild</code>
in your <code>package.json</code> file (recommended) or be using a
version range syntax that only accepts patch upgrades such as
<code>^0.24.0</code> or <code>~0.24.0</code>. See npm's documentation
about <a
href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for
more information.</p>
<ul>
<li>
<p>Restrict access to esbuild's development server (<a
href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">GHSA-67mh-4wv8-2f99</a>)</p>
<p>This change addresses esbuild's first security vulnerability report.
Previously esbuild set the <code>Access-Control-Allow-Origin</code>
header to <code>*</code> to allow esbuild's development server to be
flexible in how it's used for development. However, this allows the
websites you visit to make HTTP requests to esbuild's local development
server, which gives read-only access to your source code if the website
were to fetch your source code's specific URL. You can read more
information in <a
href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">the
report</a>.</p>
<p>Starting with this release, <a
href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">CORS</a>
will now be disabled, and requests will now be denied if the host does
not match the one provided to <code>--serve=</code>. The default host is
<code>0.0.0.0</code>, which refers to all of the IP addresses that
represent the local machine (e.g. both <code>127.0.0.1</code> and
<code>192.168.0.1</code>). If you want to customize anything about
esbuild's development server, you can <a
href="https://esbuild.github.io/api/#serve-proxy">put a proxy in front
of esbuild</a> and modify the incoming and/or outgoing requests.</p>
<p>In addition, the <code>serve()</code> API call has been changed to
return an array of <code>hosts</code> instead of a single
<code>host</code> string. This makes it possible to determine all of the
hosts that esbuild's development server will accept.</p>
<p>Thanks to <a
href="https://github.com/sapphi-red"><code>@sapphi-red</code></a> for
reporting this issue.</p>
</li>
<li>
<p>Delete output files when a build fails in watch mode (<a
href="https://redirect.github.com/evanw/esbuild/issues/3643">#3643</a>)</p>
<p>It has been requested for esbuild to delete files when a build fails
in watch mode. Previously esbuild left the old files in place, which
could cause people to not immediately realize that the most recent build
failed. With this release, esbuild will now delete all output files if a
rebuild fails. Fixing the build error and triggering another rebuild
will restore all output files again.</p>
</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/6bfc1c13b4d986b86e8bc2035f00c337b0c1d007"><code>6bfc1c1</code></a>
publish 0.25.1 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/f9b39529a328f513cd73b36e8488a4a624df5c36"><code>f9b3952</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>:
prepend namespaces to source map paths</li>
<li><a
href="https://github.com/evanw/esbuild/commit/ccf3dd7889e7765a1d6f1596ada0f22b320d7174"><code>ccf3dd7</code></a>
add "contributed by" in changelog</li>
<li><a
href="https://github.com/evanw/esbuild/commit/48cd7a9e26452f30345eb10a3d471f26de56d1ec"><code>48cd7a9</code></a>
Update Go from 1.23.5 to 1.23.7 (<a
href="https://redirect.github.com/evanw/esbuild/issues/4077">#4077</a>)</li>
<li><a
href="https://github.com/evanw/esbuild/commit/1f04fa4dc85ef4b1fa01e1938fa127a2cc170c35"><code>1f04fa4</code></a>
fix absolute windows paths in source maps</li>
<li><a
href="https://github.com/evanw/esbuild/commit/9ca03f6ea8aa4c418cb66da876139eef4e2abb26"><code>9ca03f6</code></a>
also add test case from <a
href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a></li>
<li><a
href="https://github.com/evanw/esbuild/commit/2f244c085a970b873e579ac2a0b1c054cf9c66ea"><code>2f244c0</code></a>
add test case from <a
href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a></li>
<li><a
href="https://github.com/evanw/esbuild/commit/1dde994de8858d71fe0e9e128d22142b3c9d7de6"><code>1dde994</code></a>
fix incorrect test names</li>
<li><a
href="https://github.com/evanw/esbuild/commit/9f008c59b628b65c00878d7673ed24317e911666"><code>9f008c5</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>:
<code>file</code> namespace for <code>sourceMappingURL</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/cbd5eb8c82089619f235b96be7b7b18c06fc10c0"><code>cbd5eb8</code></a>
release notes and tests for <a
href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a></li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.18.20...v0.25.1">compare
view</a></li>
</ul>
</details>
<br />
Updates `@vitejs/plugin-react-swc` from 3.7.0 to 3.8.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite-plugin-react-swc/releases"><code>@vitejs/plugin-react-swc</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.8.0</h2>
<h3>Add useAtYourOwnRisk_mutateSwcOptions option</h3>
<p>The future of Vite is with OXC, and from the beginning this was a
design choice to not exposed too many specialties from SWC so that Vite
React users can move to another transformer later.
Also debugging why some specific version of decorators with some other
unstable/legacy feature doesn't work is not fun, so we won't provide
support for it, hence the name <code>useAtYourOwnRisk</code>.</p>
<pre lang="ts"><code>react({
useAtYourOwnRisk_mutateSwcOptions(options) {
options.jsc.parser.decorators = true;
options.jsc.transform.decoratorVersion = "2022-03";
},
});
</code></pre>
<h2>v3.7.2</h2>
<h3>Add Vite 6 to peerDependencies range <a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/pull/207">#207</a></h3>
<p>Thanks <a
href="https://github.com/RobinTail"><code>@RobinTail</code></a></p>
<h3>Revert throw when refresh runtime is loaded twice <a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/237">#237</a></h3>
<p>Revert the throw when refresh runtime is loaded twice to enable usage
in micro frontend apps. This was added to help fix setup usage, and this
is not worth an annoying warning for others or a config parameter.</p>
<p>This revert was done in the Babel plugin last year and I didn't port
it back.</p>
<h2>v3.7.1</h2>
<p>Ignore directive sourcemap error <a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/231">#231</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite-plugin-react-swc/blob/main/CHANGELOG.md"><code>@vitejs/plugin-react-swc</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.8.0</h2>
<h3>Add useAtYourOwnRisk_mutateSwcOptions option</h3>
<p>The future of Vite is with OXC, and from the beginning this was a
design choice to not exposed too many specialties from SWC so that Vite
React users can move to another transformer later.
Also debugging why some specific version of decorators with some other
unstable/legacy feature doesn't work is not fun, so we won't provide
support for it, hence the name <code>useAtYourOwnRisk</code>.</p>
<pre lang="ts"><code>react({
useAtYourOwnRisk_mutateSwcOptions(options) {
options.jsc.parser.decorators = true;
options.jsc.transform.decoratorVersion = "2022-03";
},
});
</code></pre>
<h2>3.7.2</h2>
<h3>Add Vite 6 to peerDependencies range <a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/pull/207">#207</a></h3>
<p>Thanks <a
href="https://github.com/RobinTail"><code>@RobinTail</code></a></p>
<h3>Revert throw when refresh runtime is loaded twice <a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/237">#237</a></h3>
<p>Revert the throw when refresh runtime is loaded twice to enable usage
in micro frontend apps. This was added to help fix setup usage, and this
is not worth an annoying warning for others or a config parameter.</p>
<p>This revert was done in the Babel plugin last year and I didn't port
it back.</p>
<h2>3.7.1</h2>
<p>Ignore directive sourcemap error <a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/231">#231</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/f79b137f50084a902312cd829eb1be0e56466f0e"><code>f79b137</code></a>
release: v3.8.0</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/ea18caa8dd48b697e71375284c690ccfe0280456"><code>ea18caa</code></a>
fix(deps): update all non-major dependencies (<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/233">#233</a>)</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/374377ad1a6e1624af842f273134e2780c812c50"><code>374377a</code></a>
fix(deps): update dependency react-router-dom to v7 (<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/245">#245</a>)</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/b91516a70f98401b8e4e2d3ff39e76a3516258df"><code>b91516a</code></a>
chore(deps): update dependency <code>@types/node</code> to v22 (<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/240">#240</a>)</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/e546701655432ca400f6acfcf069150abe898349"><code>e546701</code></a>
chore: test against React 18 & React 19 (<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/261">#261</a>)</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/b55e68ff6a09c06ef96848b3b942640e7ada8cc0"><code>b55e68f</code></a>
doc: remove outdated section (<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/260">#260</a>)</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/f499d75f3b20dbf2a0944047e474e249cb5f5404"><code>f499d75</code></a>
feat: add useAtYourOwnRisk_mutateSwcOptions option (<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/255">#255</a>)</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/f642b2256135d3fbcdf01d63af41febe3dd83591"><code>f642b22</code></a>
release: v3.7.2</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/def01487011716589a7f6f695f733e712f704aea"><code>def0148</code></a>
Add Vite 6 to peerDependencies range (<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/207">#207</a>)</li>
<li><a
href="https://github.com/vitejs/vite-plugin-react-swc/commit/beb09db39d4930a0013916508648e21d1d76d3e9"><code>beb09db</code></a>
fix: revert throw when refresh runtime is loaded twice (fixes <a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/234">#234</a>)
(<a
href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/237">#237</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite-plugin-react-swc/compare/v3.7.0...v3.8.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `vite` from 4.5.9 to 6.2.2
<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>v6.2.2</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.2.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@6.2.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@6.2.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.2.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.2.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@6.2.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@6.2.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.2.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.2.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.2.0-beta.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.2.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.2.0-beta.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.2.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@6.1.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@6.1.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.1.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.1.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@6.1.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@6.1.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.1.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.1.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.1.0-beta.2</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.1.0-beta.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.1.0-beta.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.1.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.1.0-beta.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.1.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.0.11</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.0.11/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.0.10</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.0.10/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.0.9</h2>
<p>This version contains a breaking change due to security fixes. See <a
href="https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6">https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6</a>
for more 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><!-- raw HTML omitted -->6.2.2 (2025-03-14)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: await client buildStart on top level buildStart (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19624">#19624</a>)
(<a
href="https://github.com/vitejs/vite/commit/b31faab2a81b839e4b747baeb9c7a7cbb724f8d2">b31faab</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19624">#19624</a></li>
<li>fix(css): inline css correctly for double quote use strict (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19590">#19590</a>)
(<a
href="https://github.com/vitejs/vite/commit/d0aa833296668fc420a27a1ea88ecdbdeacdbce7">d0aa833</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19590">#19590</a></li>
<li>fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19613">#19613</a>)
(<a
href="https://github.com/vitejs/vite/commit/363d691b4995d72f26a14eb59ed88a9483b1f931">363d691</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19613">#19613</a></li>
<li>fix(indexHtml): ensure correct URL when querying module graph (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19601">#19601</a>)
(<a
href="https://github.com/vitejs/vite/commit/dc5395a27e44066ef7725278c4057d9f1071a53f">dc5395a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19601">#19601</a></li>
<li>fix(preview): use preview https config, not server (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19633">#19633</a>)
(<a
href="https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f1978e">98b3160</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19633">#19633</a></li>
<li>fix(ssr): use optional chaining to prevent "undefined is not an
object" happening in `ssrRewriteStac (<a
href="https://github.com/vitejs/vite/commit/43097550a1aa8ff633c39fb197b5f9ac1222119b">4309755</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19612">#19612</a></li>
<li>feat: show friendly error for malformed <code>base</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19616">#19616</a>)
(<a
href="https://github.com/vitejs/vite/commit/2476391b2854aaa67d0ed317b6d0c462e68028f7">2476391</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19616">#19616</a></li>
<li>feat(worker): show asset filename conflict warning (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19591">#19591</a>)
(<a
href="https://github.com/vitejs/vite/commit/367d968fbf584e9f0e17192b816e92e8045c6217">367d968</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19591">#19591</a></li>
<li>chore: extend commit hash correctly when ambigious with a non-commit
object (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19600">#19600</a>)
(<a
href="https://github.com/vitejs/vite/commit/89a62873243805518b672212db7e317989c5c197">89a6287</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19600">#19600</a></li>
</ul>
<h2><!-- raw HTML omitted -->6.2.1 (2025-03-07)<!-- raw HTML omitted
--></h2>
<ul>
<li>refactor: remove <code>isBuild</code> check from preAliasPlugin (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19587">#19587</a>)
(<a
href="https://github.com/vitejs/vite/commit/c9e086d35ac35ee1c6d85d48369e8a67a2ba6bfe">c9e086d</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19587">#19587</a></li>
<li>refactor: restore endsWith usage (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19554">#19554</a>)
(<a
href="https://github.com/vitejs/vite/commit/6113a9670cc9b7d29fe0bffe033f7823e36ded00">6113a96</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19554">#19554</a></li>
<li>refactor: use <code>applyToEnvironment</code> in internal plugins
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19588">#19588</a>)
(<a
href="https://github.com/vitejs/vite/commit/f678442d5701a00648a745956f9d884247e4e710">f678442</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19588">#19588</a></li>
<li>fix(css): stabilize css module hashes with lightningcss in dev mode
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19481">#19481</a>)
(<a
href="https://github.com/vitejs/vite/commit/92125b41e4caa3e862bf5fd9b1941546f25d9bf2">92125b4</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19481">#19481</a></li>
<li>fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19555">#19555</a>)
(<a
href="https://github.com/vitejs/vite/commit/f612e0fdf6810317b61fcca1ded125755f261d78">f612e0f</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19555">#19555</a></li>
<li>fix(reporter): fix incorrect bundle size calculation with non-ASCII
characters (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19561">#19561</a>)
(<a
href="https://github.com/vitejs/vite/commit/437c0ed8baa6739bbe944779b9e7515f9035046a">437c0ed</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19561">#19561</a></li>
<li>fix(sourcemap): combine sourcemaps with multiple sources without
matched source (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18971">#18971</a>)
(<a
href="https://github.com/vitejs/vite/commit/e3f6ae14f7a93118d7341de7379967f815725c4b">e3f6ae1</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18971">#18971</a></li>
<li>fix(ssr): named export should overwrite export all (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19534">#19534</a>)
(<a
href="https://github.com/vitejs/vite/commit/2fd2fc110738622651d361488767734cc23c34dd">2fd2fc1</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19534">#19534</a></li>
<li>feat: add <code>*?url&no-inline</code> type and warning for
<code>.json?inline</code> / <code>.json?no-inline</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19566">#19566</a>)
(<a
href="https://github.com/vitejs/vite/commit/c0d36677cd305e8fa89153ed6305f0e0df43d289">c0d3667</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19566">#19566</a></li>
<li>test: add glob import test case (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19516">#19516</a>)
(<a
href="https://github.com/vitejs/vite/commit/aa1d8075cc7ce7fbba62fea9e37ccb9b304fc039">aa1d807</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19516">#19516</a></li>
<li>test: convert config playground to unit tests (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19568">#19568</a>)
(<a
href="https://github.com/vitejs/vite/commit/c0e68da4774f3487e9ba0c4d4d2c5e76bdc890ea">c0e68da</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19568">#19568</a></li>
<li>test: convert resolve-config playground to unit tests (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19567">#19567</a>)
(<a
href="https://github.com/vitejs/vite/commit/db5fb48f5d4c1ee411e59c1e9b70d62fdb9d53d2">db5fb48</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19567">#19567</a></li>
<li>perf: flush compile cache after 10s (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19537">#19537</a>)
(<a
href="https://github.com/vitejs/vite/commit/6c8a5a27e645a182f5b03a4ed6aa726eab85993f">6c8a5a2</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19537">#19537</a></li>
<li>chore(css): move environment destructuring after condition check (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19492">#19492</a>)
(<a
href="https://github.com/vitejs/vite/commit/c9eda2348c244d591d23f131c6ddf262b256cbf0">c9eda23</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19492">#19492</a></li>
<li>chore(html): remove unnecessary value check (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19491">#19491</a>)
(<a
href="https://github.com/vitejs/vite/commit/797959f01da583b85a0be1dc89f762fd01d138db">797959f</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19491">#19491</a></li>
</ul>
<h2>6.2.0 (2025-02-25)</h2>
<ul>
<li>fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19501">#19501</a>)
(<a
href="https://github.com/vitejs/vite/commit/c94c9e052127cf4796374de1d698ec60b2973dfa">c94c9e0</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19501">#19501</a></li>
<li>fix(worker): string interpolation in dynamic worker options (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19476">#19476</a>)
(<a
href="https://github.com/vitejs/vite/commit/07091a1e804e5934208ef0b6324a04317dd0d815">07091a1</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19476">#19476</a></li>
<li>chore: use unicode cross icon instead of x (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19497">#19497</a>)
(<a
href="https://github.com/vitejs/vite/commit/5c70296ffb22fe5a0f4039835aa14feb096b4a97">5c70296</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19497">#19497</a></li>
</ul>
<h2>6.2.0-beta.1 (2025-02-21)</h2>
<ul>
<li>fix(css): temporary add <code>?.</code> after
<code>this.getModuleInfo</code> in <code>vite:css-post</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19478">#19478</a>)
(<a
href="https://github.com/vitejs/vite/commit/12b0b8a953ad7d08ba0540cb4f5cb26a7fa69da2">12b0b8a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19478">#19478</a></li>
</ul>
<h2>6.2.0-beta.0 (2025-02-21)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/vitejs/vite/commit/b12911edba0cd9edbad170a0940d37bb1e16ef2c"><code>b12911e</code></a>
release: v6.2.2</li>
<li><a
href="https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f1978e"><code>98b3160</code></a>
fix(preview): use preview https config, not server (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19633">#19633</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/b31faab2a81b839e4b747baeb9c7a7cbb724f8d2"><code>b31faab</code></a>
fix: await client buildStart on top level buildStart (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19624">#19624</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/dc5395a27e44066ef7725278c4057d9f1071a53f"><code>dc5395a</code></a>
fix(indexHtml): ensure correct URL when querying module graph (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19601">#19601</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/2476391b2854aaa67d0ed317b6d0c462e68028f7"><code>2476391</code></a>
feat: show friendly error for malformed <code>base</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19616">#19616</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/43097550a1aa8ff633c39fb197b5f9ac1222119b"><code>4309755</code></a>
fix(ssr): use optional chaining to prevent "undefined is not an
object" happe...</li>
<li><a
href="https://github.com/vitejs/vite/commit/363d691b4995d72f26a14eb59ed88a9483b1f931"><code>363d691</code></a>
fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19613">#19613</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/d0aa833296668fc420a27a1ea88ecdbdeacdbce7"><code>d0aa833</code></a>
fix(css): inline css correctly for double quote use strict (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19590">#19590</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/367d968fbf584e9f0e17192b816e92e8045c6217"><code>367d968</code></a>
feat(worker): show asset filename conflict warning (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19591">#19591</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/89a62873243805518b672212db7e317989c5c197"><code>89a6287</code></a>
chore: extend commit hash correctly when ambigious with a non-commit
object (...</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite/commits/v6.2.2/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/tari-project/tari-dan/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent c4a7b95 commit e99a59c
File tree
2 files changed
+627
-204
lines changed- applications/tari_dan_wallet_web_ui
2 files changed
+627
-204
lines changed
0 commit comments