Commit graph

891 commits

Author SHA1 Message Date
OpenGOALBot 472899c14a release: bump to version - v2.4.3 2024-03-08 00:43:04 +00:00
Tyler Wilding f6e59e07bf
Only display Jak 3 dev video on Windows (#451) 2024-03-07 19:42:29 -05:00
dependabot[bot] 58784f6e0a
build(deps): bump the backend-deps group in /src-tauri with 2 updates (#450)
Bumps the backend-deps group in /src-tauri with 2 updates:
[chrono](https://github.com/chronotope/chrono) and
[sysinfo](https://github.com/GuillaumeGomez/sysinfo).

Updates `chrono` from 0.4.34 to 0.4.35
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chronotope/chrono/releases">chrono's
releases</a>.</em></p>
<blockquote>
<h2>v0.4.35</h2>
<p>Most of our efforts have shifted to improving the API for a 0.5
release, for which cleanups and refactorings are landing on the 0.4.x
branch.</p>
<p>The most significant changes in this release are two sets of
deprecations.</p>
<ul>
<li>
<p>We deprecated all timestamp-related methods on
<code>NaiveDateTime</code>. The reason is that a timestamp is defined to
be in UTC. The <code>NaiveDateTime</code> type doesn't know the offset
from UTC, so it was technically wrong to have these methods. The
alternative is to use the similar methods on the
<code>DateTime&lt;Utc&gt;</code> type, or from the <code>TimeZone</code>
trait.</p>
<p>Converting from <code>NaiveDateTime</code> to
<code>DateTime&lt;Utc&gt;</code> is simple with <code>.and_utc()</code>,
and in the other direction with <code>.naive_utc()</code>.</p>
</li>
<li>
<p>The panicking constructors of <code>TimeDelta</code> (the new name of
the <code>Duration</code> type) are deprecated. This was the last part
of chrono that defaulted to panicking on error, dating from before rust
1.0.</p>
</li>
<li>
<p>A nice change is that <code>NaiveDate</code> now includes a niche. So
now <code>Option&lt;NaiveDate&gt;</code>,
<code>Option&lt;NaiveDateTime&gt;</code> and
<code>Option&lt;DateTime&lt;Tz&gt;&gt;</code> are the same size as their
base types.</p>
</li>
<li>
<p><code>format::Numeric</code> and <code>format::Fixed</code> are
marked as <code>non_exhaustive</code>. This will allow us to improve our
formatting and parsing support, and we have reason to believe this
breaking change will have little to no impact on users.</p>
</li>
</ul>
<h1>Additions</h1>
<ul>
<li>Add <code>DateTime::{from_timestamp_micros,
from_timestamp_nanos}</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1234">#1234</a>)</li>
<li>Add getters to <code>Parsed</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1465">#1465</a>)</li>
</ul>
<h1>Deprecations</h1>
<ul>
<li>Deprecate timestamp methods on <code>NaiveDateTime</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1473">#1473</a>)</li>
<li>Deprecate panicking constructors of <code>TimeDelta</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1450">#1450</a>)</li>
</ul>
<h1>Changes/fixes</h1>
<ul>
<li>Use <code>NonZeroI32</code> inside <code>NaiveDate</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1207">#1207</a>)</li>
<li>Mark <code>format::Numeric</code> and <code>format::Fixed</code> as
<code>non_exhaustive</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1430">#1430</a>)</li>
<li><code>Parsed</code> fixes to error values (<a
href="https://redirect.github.com/chronotope/chrono/issues/1439">#1439</a>)</li>
<li>Use <code>overflowing_naive_local</code> in
<code>DateTime::checked_add*</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1333">#1333</a>)</li>
<li>Do complete range checks in <code>Parsed::set_*</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1465">#1465</a>)</li>
</ul>
<h1>Documentation</h1>
<ul>
<li>Rustfmt doctests (<a
href="https://redirect.github.com/chronotope/chrono/issues/1452">#1452</a>)</li>
<li>Improve docs for crate features (<a
href="https://redirect.github.com/chronotope/chrono/issues/1455">#1455</a>,
thanks <a
href="https://github.com/edmorley"><code>@​edmorley</code></a>)</li>
<li>Add more documentation and examples to <code>Parsed</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1439">#1439</a>)</li>
</ul>
<h1>Internal</h1>
<ul>
<li>Refactor <code>internals</code> module (<a
href="https://redirect.github.com/chronotope/chrono/issues/1428">#1428</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1429">#1429</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1431">#1431</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1432">#1432</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1433">#1433</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1438">#1438</a>)</li>
<li>CI: test cross-compiling to <code>x86_64-unknown-illumos</code>
instead of Solaris (<a
href="https://redirect.github.com/chronotope/chrono/issues/1437">#1437</a>)</li>
<li>CI: lint Windows target, fix clippy warning (<a
href="https://redirect.github.com/chronotope/chrono/issues/1441">#1441</a>)</li>
<li>CI: only run <code>cargo hack check</code> on Linux (<a
href="https://redirect.github.com/chronotope/chrono/issues/1442">#1442</a>)</li>
<li>Update windows-bindgen to 0.54 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1462">#1462</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1483">#1483</a>)</li>
<li>Simplify error value of <code>parse_internal</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1459">#1459</a>)</li>
<li>Simplify <code>SerdeError</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1458">#1458</a>)</li>
<li>Simplify <code>NaiveDate::from_isoywd</code> a bit (<a
href="https://redirect.github.com/chronotope/chrono/issues/1464">#1464</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9fdb59638e"><code>9fdb596</code></a>
Prepare 0.4.35</li>
<li><a
href="9e667b606e"><code>9e667b6</code></a>
Deprecate panicking <code>TimeDelta</code> constructors</li>
<li><a
href="2c1b0bea94"><code>2c1b0be</code></a>
Tests: replace <code>TimeDelta::milliseconds</code> with
<code>try_milliseconds</code></li>
<li><a
href="2bf3302ce5"><code>2bf3302</code></a>
Tests: replace <code>TimeDelta::seconds</code> with
<code>try_seconds</code></li>
<li><a
href="f93508ffd9"><code>f93508f</code></a>
Tests: replace <code>TimeDelta::minutes</code> with
<code>try_minutes</code></li>
<li><a
href="9fc931a394"><code>9fc931a</code></a>
Tests: replace <code>TimeDelta::hours</code> with
<code>try_hours</code></li>
<li><a
href="9f23c08e10"><code>9f23c08</code></a>
Tests: replace <code>TimeDelta::days</code> with
<code>try_days</code></li>
<li><a
href="e8f9b5e041"><code>e8f9b5e</code></a>
Tests: replace <code>TimeDelta::weeks</code> with
<code>try_weeks</code></li>
<li><a
href="51a1aa27bd"><code>51a1aa2</code></a>
Tests: use <code>Days</code> type when it is more appropriate than
<code>TimeDelta</code></li>
<li><a
href="4251bd1eb1"><code>4251bd1</code></a>
Replace <code>TimeDelta::seconds</code> with
<code>try_seconds</code></li>
<li>Additional commits viewable in <a
href="https://github.com/chronotope/chrono/compare/v0.4.34...v0.4.35">compare
view</a></li>
</ul>
</details>
<br />

Updates `sysinfo` from 0.30.6 to 0.30.7
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md">sysinfo's
changelog</a>.</em></p>
<blockquote>
<h1>0.30.7</h1>
<ul>
<li>Linux: Fix cgroup memory computation.</li>
<li>FreeBSD: Fix documentation about disk usage.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3753723786"><code>3753723</code></a>
Merge pull request <a
href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1221">#1221</a>
from GuillaumeGomez/update</li>
<li><a
href="a1d27e3259"><code>a1d27e3</code></a>
Update crate version to 0.30.7</li>
<li><a
href="71ae39d385"><code>71ae39d</code></a>
Update CHANGELOG for 0.30.7</li>
<li><a
href="180018bc81"><code>180018b</code></a>
Update dependencies</li>
<li><a
href="8a01e99099"><code>8a01e99</code></a>
Merge pull request <a
href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1220">#1220</a>
from getsentry/cgroup-v2</li>
<li><a
href="2fe6093427"><code>2fe6093</code></a>
remove memory stat code from cgroup mem calculation</li>
<li><a
href="8da2f057ae"><code>8da2f05</code></a>
Merge pull request <a
href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1216">#1216</a>
from janlugt/master</li>
<li><a
href="770f6ceea9"><code>770f6ce</code></a>
Clarify comment about disk_usage() in FreeBSD</li>
<li>See full diff in <a
href="https://github.com/GuillaumeGomez/sysinfo/compare/v0.30.6...v0.30.7">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-06 18:55:11 -05:00
dependabot[bot] 98aa146c72
build(deps): bump the backend-deps group in /src-tauri with 4 updates (#447)
Bumps the backend-deps group in /src-tauri with 4 updates:
[log](https://github.com/rust-lang/log),
[sysinfo](https://github.com/GuillaumeGomez/sysinfo),
[walkdir](https://github.com/BurntSushi/walkdir) and
[wgpu](https://github.com/gfx-rs/wgpu).

Updates `log` from 0.4.20 to 0.4.21
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/log/blob/master/CHANGELOG.md">log's
changelog</a>.</em></p>
<blockquote>
<h2>[0.4.21] - 2024-02-27</h2>
<h2>What's Changed</h2>
<ul>
<li>Minor clippy nits by <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/578">rust-lang/log#578</a></li>
<li>Simplify Display impl by <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/579">rust-lang/log#579</a></li>
<li>Set all crates to 2021 edition by <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/580">rust-lang/log#580</a></li>
<li>Various changes based on review by <a
href="https://github.com/Thomasdezeeuw"><code>@​Thomasdezeeuw</code></a>
in <a
href="https://redirect.github.com/rust-lang/log/pull/583">rust-lang/log#583</a></li>
<li>Fix typo in file_static() method doc by <a
href="https://github.com/dimo414"><code>@​dimo414</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/590">rust-lang/log#590</a></li>
<li>Specialize empty key value pairs by <a
href="https://github.com/EFanZh"><code>@​EFanZh</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/576">rust-lang/log#576</a></li>
<li>Fix incorrect lifetime in Value::to_str() by <a
href="https://github.com/peterjoel"><code>@​peterjoel</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/587">rust-lang/log#587</a></li>
<li>Remove some API of the key-value feature by <a
href="https://github.com/Thomasdezeeuw"><code>@​Thomasdezeeuw</code></a>
in <a
href="https://redirect.github.com/rust-lang/log/pull/585">rust-lang/log#585</a></li>
<li>Add logcontrol-log and log-reload by <a
href="https://github.com/swsnr"><code>@​swsnr</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/595">rust-lang/log#595</a></li>
<li>Add Serialization section to kv::Value docs by <a
href="https://github.com/Thomasdezeeuw"><code>@​Thomasdezeeuw</code></a>
in <a
href="https://redirect.github.com/rust-lang/log/pull/593">rust-lang/log#593</a></li>
<li>Rename Value::to_str to to_cow_str by <a
href="https://github.com/Thomasdezeeuw"><code>@​Thomasdezeeuw</code></a>
in <a
href="https://redirect.github.com/rust-lang/log/pull/592">rust-lang/log#592</a></li>
<li>Clarify documentation and simplify initialization of
<code>STATIC_MAX_LEVEL</code> by <a
href="https://github.com/ptosi"><code>@​ptosi</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/594">rust-lang/log#594</a></li>
<li>Update docs to 2021 edition, test by <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/577">rust-lang/log#577</a></li>
<li>Add &quot;alterable_logger&quot; link to README.md by <a
href="https://github.com/brummer-simon"><code>@​brummer-simon</code></a>
in <a
href="https://redirect.github.com/rust-lang/log/pull/589">rust-lang/log#589</a></li>
<li>Normalize line ending by <a
href="https://github.com/EFanZh"><code>@​EFanZh</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/602">rust-lang/log#602</a></li>
<li>Remove <code>ok_or</code> in favor of <code>Option::ok_or</code> by
<a
href="https://github.com/AngelicosPhosphoros"><code>@​AngelicosPhosphoros</code></a>
in <a
href="https://redirect.github.com/rust-lang/log/pull/607">rust-lang/log#607</a></li>
<li>Use <code>Acquire</code> ordering for initialization check by <a
href="https://github.com/AngelicosPhosphoros"><code>@​AngelicosPhosphoros</code></a>
in <a
href="https://redirect.github.com/rust-lang/log/pull/610">rust-lang/log#610</a></li>
<li>Get structured logging API ready for stabilization by <a
href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a
href="https://redirect.github.com/rust-lang/log/pull/613">rust-lang/log#613</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/nyurik"><code>@​nyurik</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/log/pull/578">rust-lang/log#578</a></li>
<li><a href="https://github.com/dimo414"><code>@​dimo414</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/log/pull/590">rust-lang/log#590</a></li>
<li><a href="https://github.com/peterjoel"><code>@​peterjoel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/log/pull/587">rust-lang/log#587</a></li>
<li><a href="https://github.com/ptosi"><code>@​ptosi</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/log/pull/594">rust-lang/log#594</a></li>
<li><a
href="https://github.com/brummer-simon"><code>@​brummer-simon</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/log/pull/589">rust-lang/log#589</a></li>
<li><a
href="https://github.com/AngelicosPhosphoros"><code>@​AngelicosPhosphoros</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/log/pull/607">rust-lang/log#607</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3ccdc286fe"><code>3ccdc28</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/log/issues/617">#617</a>
from rust-lang/cargo/0.4.21</li>
<li><a
href="6153cb289f"><code>6153cb2</code></a>
prepare for 0.4.21 release</li>
<li><a
href="f0f74946a4"><code>f0f7494</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/log/issues/613">#613</a>
from rust-lang/feat/kv-cleanup</li>
<li><a
href="2b220bf3b7"><code>2b220bf</code></a>
clean up structured logging example</li>
<li><a
href="646e9ab991"><code>646e9ab</code></a>
use original Visitor name for VisitValue</li>
<li><a
href="cf85c38d35"><code>cf85c38</code></a>
add needed subfeatures to kv_unstable</li>
<li><a
href="73e953905b"><code>73e9539</code></a>
fix up capturing of :err</li>
<li><a
href="31bb4b0ff3"><code>31bb4b0</code></a>
move error macros together</li>
<li><a
href="ad917118a5"><code>ad91711</code></a>
support field shorthand in macros</li>
<li><a
href="90a347bd83"><code>90a347b</code></a>
restore removed APIs as deprecated</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/log/compare/0.4.20...0.4.21">compare
view</a></li>
</ul>
</details>
<br />

Updates `sysinfo` from 0.30.5 to 0.30.6
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md">sysinfo's
changelog</a>.</em></p>
<blockquote>
<h1>0.30.6</h1>
<ul>
<li>macOS: Fix missing update of process run time.</li>
<li>Add new <code>Groups</code> API.</li>
<li>Improve documentation.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="933dad660d"><code>933dad6</code></a>
Merge pull request <a
href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1214">#1214</a>
from GuillaumeGomez/update</li>
<li><a
href="ba66087869"><code>ba66087</code></a>
Merge pull request <a
href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1215">#1215</a>
from GuillaumeGomez/fix-test_process_run_time</li>
<li><a
href="ec95f1dcb9"><code>ec95f1d</code></a>
Fix <code>test_process_run_time</code></li>
<li><a
href="3d990b9cef"><code>3d990b9</code></a>
Update crate version to 0.30.6</li>
<li><a
href="d516baf4aa"><code>d516baf</code></a>
Update CHANGELOG for 0.30.6</li>
<li><a
href="b04d3bc7fe"><code>b04d3bc</code></a>
Merge pull request <a
href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1213">#1213</a>
from GuillaumeGomez/process-run_time-test</li>
<li><a
href="0e4a879312"><code>0e4a879</code></a>
Add test for process::run_time</li>
<li><a
href="fbb9dbf136"><code>fbb9dbf</code></a>
Merge pull request <a
href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1212">#1212</a>
from janlugt/master</li>
<li><a
href="795ec1a918"><code>795ec1a</code></a>
fix</li>
<li><a
href="3a95615a29"><code>3a95615</code></a>
Update run_time for MacOS processes</li>
<li>Additional commits viewable in <a
href="https://github.com/GuillaumeGomez/sysinfo/compare/v0.30.5...v0.30.6">compare
view</a></li>
</ul>
</details>
<br />

Updates `walkdir` from 2.4.0 to 2.5.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="4f26be4d45"><code>4f26be4</code></a>
2.5.0</li>
<li><a
href="3be5734033"><code>3be5734</code></a>
api: implement <code>FusedIterator</code></li>
<li><a
href="b0d16b759a"><code>b0d16b7</code></a>
ci: fix it</li>
<li>See full diff in <a
href="https://github.com/BurntSushi/walkdir/compare/2.4.0...2.5.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `wgpu` from 0.19.1 to 0.19.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/releases">wgpu's
releases</a>.</em></p>
<blockquote>
<h2>v0.19.3</h2>
<p>This release includes <code>wgpu</code>, <code>wgpu-core</code>, and
<code>wgpu-hal</code>. All other crates are unchanged.</p>
<h3>Major Changes</h3>
<h4>Vendored WebGPU Bindings from <code>web_sys</code></h4>
<p><strong><code>--cfg=web_sys_unstable_apis</code> is no longer needed
in your <code>RUSTFLAGS</code> to compile for WebGPU!!!</strong></p>
<p>While WebGPU's javascript api is stable in the browsers, the
<code>web_sys</code> bindings for WebGPU are still improving. As such
they are hidden behind the special cfg
<code>--cfg=web_sys_unstable_apis</code> and are not available by
default. Everyone who wanted to use our WebGPU backend needed to enable
this cfg in their <code>RUSTFLAGS</code>. This was very inconvenient and
made it hard to use WebGPU, especially when WebGPU is enabled by
default. Additionally, the unstable APIs don't adhere to semver, so
there were repeated breakages.</p>
<p>To combat this problem we have decided to vendor the
<code>web_sys</code> bindings for WebGPU within the crate. Notably we
are not forking the bindings, merely vendoring, so any improvements we
make to the bindings will be contributed directly to upstream
<code>web_sys</code>.</p>
<p>By <a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5325">#5325</a>.</p>
<h3>Bug Fixes</h3>
<h4>General</h4>
<ul>
<li>Fix an issue where command encoders weren't properly freed if an
error occurred during command encoding. By <a
href="https://github.com/ErichDonGubler"><code>@​ErichDonGubler</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5251">#5251</a>.</li>
</ul>
<h4>Android</h4>
<ul>
<li>Fix linking error when targeting android without <code>winit</code>.
By <a href="https://github.com/ashdnazg"><code>@​ashdnazg</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5326">#5326</a>.</li>
</ul>
<h2>v0.19.2</h2>
<p>This release includes <code>wgpu</code>, <code>wgpu-core</code>,
<code>wgpu-hal</code>, <code>wgpu-types</code>, and <code>naga</code>.
All other crates are unchanged.</p>
<h3>Added/New Features</h3>
<h4>General</h4>
<ul>
<li><code>wgpu::Id</code> now implements
<code>PartialOrd</code>/<code>Ord</code> allowing it to be put in
<code>BTreeMap</code>s. By <a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a>
and <a href="https://github.com/9291Sam"><code>@​9291Sam</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5176">#5176</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>Log an error when OpenGL texture format heuristics fail. By <a
href="https://github.com/PolyMeilex"><code>@​PolyMeilex</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5266">#5266</a></li>
</ul>
<h4><code>wgsl-out</code></h4>
<ul>
<li>Learned to generate acceleration structure types. By <a
href="https://github.com/JMS55"><code>@​JMS55</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5261">#5261</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Fix link in <code>wgpu::Instance::create_surface</code>
documentation. By <a
href="https://github.com/HexoKnight"><code>@​HexoKnight</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5280">#5280</a>.</li>
<li>Fix typo in <code>wgpu::CommandEncoder::clear_buffer</code>
documentation. By <a
href="https://github.com/PWhiddy"><code>@​PWhiddy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5281">#5281</a>.</li>
<li><code>Surface</code> configuration incorrectly claimed that
<code>wgpu::Instance::create_surface</code> was unsafe. By <a
href="https://github.com/hackaugusto"><code>@​hackaugusto</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5265">#5265</a>.</li>
</ul>
<h3>Bug Fixes</h3>
<h4>General</h4>
<ul>
<li>Device lost callbacks are invoked when replaced and when global is
dropped. By <a
href="https://github.com/bradwerth"><code>@​bradwerth</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5168">#5168</a></li>
<li>Fix performance regression when allocating a large amount of
resources of the same type. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5229">#5229</a></li>
<li>Fix docs.rs wasm32 builds. By <a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5310">#5310</a></li>
<li>Improve error message when binding count limit hit. By <a
href="https://github.com/hackaugusto"><code>@​hackaugusto</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5298">#5298</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/blob/v0.19.3/CHANGELOG.md">wgpu's
changelog</a>.</em></p>
<blockquote>
<h2>v0.19.3 (2024-03-01)</h2>
<h3>Major Changes</h3>
<h4>Vendored WebGPU Bindings from <code>web_sys</code></h4>
<p><strong><code>--cfg=web_sys_unstable_apis</code> is no longer needed
in your <code>RUSTFLAGS</code> to compile for WebGPU!!!</strong></p>
<p>While WebGPU's javascript api is stable in the browsers, the
<code>web_sys</code> bindings for WebGPU are still improving. As such
they are hidden behind the special cfg
<code>--cfg=web_sys_unstable_apis</code> and are not available by
default. Everyone who wanted to use our WebGPU backend needed to enable
this cfg in their <code>RUSTFLAGS</code>. This was very inconvenient and
made it hard to use WebGPU, especially when WebGPU is enabled by
default. Additionally, the unstable APIs don't adhere to semver, so
there were repeated breakages.</p>
<p>To combat this problem we have decided to vendor the
<code>web_sys</code> bindings for WebGPU within the crate. Notably we
are not forking the bindings, merely vendoring, so any improvements we
make to the bindings will be contributed directly to upstream
<code>web_sys</code>.</p>
<p>By <a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5325">#5325</a>.</p>
<h3>Bug Fixes</h3>
<h4>General</h4>
<ul>
<li>Fix an issue where command encoders weren't properly freed if an
error occurred during command encoding. By <a
href="https://github.com/ErichDonGubler"><code>@​ErichDonGubler</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5251">#5251</a>.</li>
</ul>
<h4>Android</h4>
<ul>
<li>Fix linking error when targeting android without <code>winit</code>.
By <a href="https://github.com/ashdnazg"><code>@​ashdnazg</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5326">#5326</a>.</li>
</ul>
<h2>v0.19.2 (2024-02-29)</h2>
<h3>Added/New Features</h3>
<h4>General</h4>
<ul>
<li><code>wgpu::Id</code> now implements
<code>PartialOrd</code>/<code>Ord</code> allowing it to be put in
<code>BTreeMap</code>s. By <a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a>
and <a href="https://github.com/9291Sam"><code>@​9291Sam</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5176">#5176</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>Log an error when OpenGL texture format heuristics fail. By <a
href="https://github.com/PolyMeilex"><code>@​PolyMeilex</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5266">#5266</a></li>
</ul>
<h4><code>wgsl-out</code></h4>
<ul>
<li>Learned to generate acceleration structure types. By <a
href="https://github.com/JMS55"><code>@​JMS55</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5261">#5261</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Fix link in <code>wgpu::Instance::create_surface</code>
documentation. By <a
href="https://github.com/HexoKnight"><code>@​HexoKnight</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5280">#5280</a>.</li>
<li>Fix typo in <code>wgpu::CommandEncoder::clear_buffer</code>
documentation. By <a
href="https://github.com/PWhiddy"><code>@​PWhiddy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5281">#5281</a>.</li>
<li><code>Surface</code> configuration incorrectly claimed that
<code>wgpu::Instance::create_surface</code> was unsafe. By <a
href="https://github.com/hackaugusto"><code>@​hackaugusto</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5265">#5265</a>.</li>
</ul>
<h3>Bug Fixes</h3>
<h4>General</h4>
<ul>
<li>Device lost callbacks are invoked when replaced and when global is
dropped. By <a
href="https://github.com/bradwerth"><code>@​bradwerth</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5168">#5168</a></li>
<li>Fix performance regression when allocating a large amount of
resources of the same type. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5229">#5229</a></li>
<li>Fix docs.rs wasm32 builds. By <a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5310">#5310</a></li>
<li>Improve error message when binding count limit hit. By <a
href="https://github.com/hackaugusto"><code>@​hackaugusto</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5298">#5298</a></li>
<li>Remove an unnecessary <code>clone</code> during GLSL shader
injestion. By <a
href="https://github.com/a1phyr"><code>@​a1phyr</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5118">#5118</a>.</li>
<li>Fix missing validation for <code>Device::clear_buffer</code> where
<code>offset + size &gt; buffer.size</code> was not checked when
<code>size</code> was omitted. By <a
href="https://github.com/ErichDonGubler"><code>@​ErichDonGubler</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5282">#5282</a>.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9f505e730f"><code>9f505e7</code></a>
Versions</li>
<li><a
href="75fd68939c"><code>75fd689</code></a>
wgpu-hal: add ndk-sys dependency to fix linking error. (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5326">#5326</a>)</li>
<li><a
href="bb09828a9e"><code>bb09828</code></a>
Vendor WebGPU Bindings from web_sys (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5325">#5325</a>)</li>
<li><a
href="d189cf27e8"><code>d189cf2</code></a>
fix: discard cmd. enc. buf. on
<code>wgpu_core::Global::command_encoder_drop</code></li>
<li><a
href="be8c7e6ced"><code>be8c7e6</code></a>
fix(gles): discard cmd. enc. buf. on drop</li>
<li><a
href="45ef1757cb"><code>45ef175</code></a>
fix(dx12): discard cmd. enc. buf. on drop</li>
<li><a
href="61d779d4d6"><code>61d779d</code></a>
Versions</li>
<li><a
href="f8355a8114"><code>f8355a8</code></a>
[wgpu-hal.gles] Error log for failed GLES heuristics (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5266">#5266</a>)</li>
<li><a
href="7214da6820"><code>7214da6</code></a>
Fix missing validation for <code>Device::clear_buffer</code> where
`offset + size &gt; buff...</li>
<li><a
href="c27f743558"><code>c27f743</code></a>
Avoid a clone when creating a Glsl shader (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5118">#5118</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/gfx-rs/wgpu/compare/v0.19.1...v0.19.3">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-06 18:28:10 -05:00
dependabot[bot] 53c19bc29f
build(deps): bump the backend-deps-tauri group in /src-tauri with 1 update (#448)
Bumps the backend-deps-tauri group in /src-tauri with 1 update:
[tauri](https://github.com/tauri-apps/tauri).

Updates `tauri` from 1.6.0 to 1.6.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases">tauri's
releases</a>.</em></p>
<blockquote>
<h2>tauri v1.6.1</h2>
<p>Updating crates.io index</p>
<!-- raw HTML omitted -->
<pre><code>Fetching advisory database from
`https://github.com/RustSec/advisory-db.git`
Loaded 605 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (583 crate dependencies)
Crate:     safemem
Version:   0.3.3
Warning:   unmaintained
Title:     safemem is unmaintained
Date:      2023-02-14
ID:        RUSTSEC-2023-0081
URL:       https://rustsec.org/advisories/RUSTSEC-2023-0081
Dependency tree:
safemem 0.3.3
└── line-wrap 0.1.1
    └── plist 1.6.0
        └── tauri-codegen 1.4.2
            ├── tauri-macros 1.4.3
            │   └── tauri 1.6.1
            │       ├── tauri 1.6.1
            │       ├── restart 0.1.0
            │       └── app-updater 0.1.0
            └── tauri-build 1.5.1
                └── app-updater 0.1.0
<p>Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL: <a
href="https://rustsec.org/advisories/RUSTSEC-2021-0145">https://rustsec.org/advisories/RUSTSEC-2021-0145</a>
Dependency tree:
atty 0.2.14
└── clap 3.2.25
└── tauri 1.6.1
├── tauri 1.6.1
├── restart 0.1.0
└── app-updater 0.1.0</p>
<p>warning: 2 allowed warnings found
</code></pre></p>
<!-- raw HTML omitted -->
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="80a215a6f3"><code>80a215a</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/9013">#9013</a>)</li>
<li><a
href="01ae1218dc"><code>01ae121</code></a>
ci: downgrade thread_local to 1.1.7 in msrv list (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/9012">#9012</a>)</li>
<li><a
href="d42668ce17"><code>d42668c</code></a>
fix(runtime-wry): avoid panic during clipboard initialization on wayland
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/9003">#9003</a>)</li>
<li><a
href="1ab0db6352"><code>1ab0db6</code></a>
chore: port PR template from <code>dev</code> branch (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/9004">#9004</a>)</li>
<li><a
href="e816a46b95"><code>e816a46</code></a>
chore: update lock files</li>
<li><a
href="a4b82d9dba"><code>a4b82d9</code></a>
chore: bump tauri-utils</li>
<li>See full diff in <a
href="https://github.com/tauri-apps/tauri/compare/tauri-v1.6.0...tauri-v1.6.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tauri&package-manager=cargo&previous-version=1.6.0&new-version=1.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-06 18:28:05 -05:00
dependabot[bot] 82c65812a8
build(deps-dev): bump the frontend-deps group with 5 updates (#449)
Bumps the frontend-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@octokit/plugin-retry](https://github.com/octokit/plugin-retry.js) |
`7.0.1` | `7.0.3` |
|
[@octokit/plugin-throttling](https://github.com/octokit/plugin-throttling.js)
| `9.0.1` | `9.0.3` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.17` |
`10.4.18` |
|
[prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte)
| `3.2.1` | `3.2.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.1.4` | `5.1.5` |

Updates `@octokit/plugin-retry` from 7.0.1 to 7.0.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/octokit/plugin-retry.js/releases"><code>@​octokit/plugin-retry</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.0.3</h2>
<h2><a
href="https://github.com/octokit/plugin-retry.js/compare/v7.0.2...v7.0.3">7.0.3</a>
(2024-03-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>deps:</strong> update dependency
<code>@​octokit/request-error</code> to v6 (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/514">#514</a>)
(<a
href="598caa471a">598caa4</a>)</li>
</ul>
<h2>v7.0.2</h2>
<h2><a
href="https://github.com/octokit/plugin-retry.js/compare/v7.0.1...v7.0.2">7.0.2</a>
(2024-02-27)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pkg:</strong> add <code>main</code> entry point (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/523">#523</a>)
(<a
href="cec2053b71">cec2053</a>),
closes <a
href="https://redirect.github.com/octokit/core.js/issues/662">octokit/core.js#662</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="598caa471a"><code>598caa4</code></a>
fix(deps): update dependency <code>@​octokit/request-error</code> to v6
(<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/514">#514</a>)</li>
<li><a
href="70e3e82948"><code>70e3e82</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/524">#524</a>)</li>
<li><a
href="cec2053b71"><code>cec2053</code></a>
fix(pkg): add <code>main</code> entry point (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/523">#523</a>)</li>
<li><a
href="778cecef42"><code>778cece</code></a>
ci(action): update actions/add-to-project action to v0.6.0</li>
<li>See full diff in <a
href="https://github.com/octokit/plugin-retry.js/compare/v7.0.1...v7.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `@octokit/plugin-throttling` from 9.0.1 to 9.0.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/octokit/plugin-throttling.js/releases"><code>@​octokit/plugin-throttling</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v9.0.3</h2>
<h2><a
href="https://github.com/octokit/plugin-throttling.js/compare/v9.0.2...v9.0.3">9.0.3</a>
(2024-03-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pkg:</strong> add <code>main</code> field (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/678">#678</a>)
(<a
href="f151af4922">f151af4</a>)</li>
</ul>
<h2>v9.0.2</h2>
<h2><a
href="https://github.com/octokit/plugin-throttling.js/compare/v9.0.1...v9.0.2">9.0.2</a>
(2024-02-27)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>README:</strong> update examples for ESM (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/679">#679</a>)
(<a
href="055169049d">0551690</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f151af4922"><code>f151af4</code></a>
fix(pkg): add <code>main</code> field (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/678">#678</a>)</li>
<li><a
href="055169049d"><code>0551690</code></a>
fix(README): update examples for ESM (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/679">#679</a>)</li>
<li><a
href="dbc2d38611"><code>dbc2d38</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/680">#680</a>)</li>
<li>See full diff in <a
href="https://github.com/octokit/plugin-throttling.js/compare/v9.0.1...v9.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `autoprefixer` from 10.4.17 to 10.4.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/autoprefixer/releases">autoprefixer's
releases</a>.</em></p>
<blockquote>
<h2>10.4.18</h2>
<ul>
<li>Fixed removing <code>-webkit-box-orient</code> on
<code>-webkit-line-clamp</code> (<a
href="https://github.com/Goodwine"><code>@​Goodwine</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md">autoprefixer's
changelog</a>.</em></p>
<blockquote>
<h2>10.4.18</h2>
<ul>
<li>Fixed removing <code>-webkit-box-orient</code> on
<code>-webkit-line-clamp</code> (<a
href="https://github.com/Goodwine"><code>@​Goodwine</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="90dc18d720"><code>90dc18d</code></a>
Release 10.4.18 version</li>
<li><a
href="0af1be8a74"><code>0af1be8</code></a>
Update dependencies</li>
<li><a
href="1efe165b95"><code>1efe165</code></a>
Update c8 config</li>
<li><a
href="80ff109c02"><code>80ff109</code></a>
Add Node.js 21 to CI</li>
<li><a
href="5e5d1935b8"><code>5e5d193</code></a>
Automate release creation</li>
<li><a
href="e72c36a761"><code>e72c36a</code></a>
Update actions</li>
<li><a
href="ec68b5212f"><code>ec68b52</code></a>
Preserve -webkit-box-orient when -webkit-line-clamp is present (<a
href="https://redirect.github.com/postcss/autoprefixer/issues/1511">#1511</a>)</li>
<li>See full diff in <a
href="https://github.com/postcss/autoprefixer/compare/10.4.17...10.4.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier-plugin-svelte` from 3.2.1 to 3.2.2
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/prettier-plugin-svelte/blob/master/CHANGELOG.md">prettier-plugin-svelte's
changelog</a>.</em></p>
<blockquote>
<h2>3.2.2</h2>
<ul>
<li>(fix) handle updated <code>@render</code> tag AST shape</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="601ee41a20"><code>601ee41</code></a>
chore: release 3.2.2</li>
<li><a
href="c968fef2c2"><code>c968fef</code></a>
fix: adjust render tag printing for Svelte 5 AST changes</li>
<li><a
href="08d7a8ba99"><code>08d7a8b</code></a>
chore: cross-test dirs test.only support</li>
<li>See full diff in <a
href="https://github.com/sveltejs/prettier-plugin-svelte/compare/v3.2.1...v3.2.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.1.4 to 5.1.5
<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 -->5.1.5 (2024-03-04)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: <code>__vite__mapDeps</code> code injection (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15732">#15732</a>)
(<a href="https://github.com/vitejs/vite/commit/aff54e1">aff54e1</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15732">#15732</a></li>
<li>fix: analysing build chunk without dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15469">#15469</a>)
(<a href="https://github.com/vitejs/vite/commit/bd52283">bd52283</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15469">#15469</a></li>
<li>fix: import with query with imports field (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16085">#16085</a>)
(<a href="https://github.com/vitejs/vite/commit/ab823ab">ab823ab</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/16085">#16085</a></li>
<li>fix: normalize literal-only entry pattern (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16010">#16010</a>)
(<a href="https://github.com/vitejs/vite/commit/1dccc37">1dccc37</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/16010">#16010</a></li>
<li>fix: optimizeDeps.entries with literal-only pattern(s) (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15853">#15853</a>)
(<a href="https://github.com/vitejs/vite/commit/49300b3">49300b3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15853">#15853</a></li>
<li>fix: output correct error for empty import specifier (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16055">#16055</a>)
(<a href="https://github.com/vitejs/vite/commit/a9112eb">a9112eb</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/16055">#16055</a></li>
<li>fix: upgrade esbuild to 0.20.x (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16062">#16062</a>)
(<a href="https://github.com/vitejs/vite/commit/899d9b1">899d9b1</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/16062">#16062</a></li>
<li>fix(runtime): runtime HMR affects only imported files (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15898">#15898</a>)
(<a href="https://github.com/vitejs/vite/commit/57463fc">57463fc</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15898">#15898</a></li>
<li>fix(scanner): respect <code>experimentalDecorators: true</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15206">#15206</a>)
(<a href="https://github.com/vitejs/vite/commit/4144781">4144781</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15206">#15206</a></li>
<li>revert: &quot;fix: upgrade esbuild to 0.20.x&quot; (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16072">#16072</a>)
(<a href="https://github.com/vitejs/vite/commit/11cceea">11cceea</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/16072">#16072</a></li>
<li>refactor: share code with vite runtime (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15907">#15907</a>)
(<a href="https://github.com/vitejs/vite/commit/b20d542">b20d542</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15907">#15907</a></li>
<li>refactor(runtime): use functions from <code>pathe</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16061">#16061</a>)
(<a href="https://github.com/vitejs/vite/commit/aac2ef7">aac2ef7</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/16061">#16061</a></li>
<li>chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16028">#16028</a>)
(<a href="https://github.com/vitejs/vite/commit/7cfe80d">7cfe80d</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/16028">#16028</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2af1ae807d"><code>2af1ae8</code></a>
release: v5.1.5</li>
<li><a
href="bd52283a70"><code>bd52283</code></a>
fix: analysing build chunk without dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15469">#15469</a>)</li>
<li><a
href="ab823ab618"><code>ab823ab</code></a>
fix: import with query with imports field (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16085">#16085</a>)</li>
<li><a
href="11cceeab39"><code>11cceea</code></a>
revert: &quot;fix: upgrade esbuild to 0.20.x&quot; (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16072">#16072</a>)</li>
<li><a
href="899d9b1d27"><code>899d9b1</code></a>
fix: upgrade esbuild to 0.20.x (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16062">#16062</a>)</li>
<li><a
href="aac2ef7752"><code>aac2ef7</code></a>
refactor(runtime): use functions from <code>pathe</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16061">#16061</a>)</li>
<li><a
href="a9112ebb21"><code>a9112eb</code></a>
fix: output correct error for empty import specifier (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16055">#16055</a>)</li>
<li><a
href="1dccc3713a"><code>1dccc37</code></a>
fix: normalize literal-only entry pattern (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16010">#16010</a>)</li>
<li><a
href="7cfe80d0df"><code>7cfe80d</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16028">#16028</a>)</li>
<li><a
href="b20d54257e"><code>b20d542</code></a>
refactor: share code with vite runtime (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15907">#15907</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite/commits/v5.1.5/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 <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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-06 18:27:55 -05:00
OpenGOALBot 82dbc2ba8f release: update release metadata to latest 2024-02-28 02:06:17 +00:00
OpenGOALBot 12f19ad0b7 release: bump to version - v2.4.2 2024-02-28 01:45:26 +00:00
dependabot[bot] 89e8dc5f9b
build(deps): bump the frontend-deps group with 8 updates (#446)
Bumps the frontend-deps group with 8 updates:

| Package | From | To |
| --- | --- | --- |
|
[@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver)
| `7.5.7` | `7.5.8` |
| [@octokit/plugin-retry](https://github.com/octokit/plugin-retry.js) |
`6.0.1` | `7.0.1` |
|
[@octokit/plugin-throttling](https://github.com/octokit/plugin-throttling.js)
| `8.1.3` | `9.0.1` |
|
[@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8)
| `1.3.0` | `1.3.1` |
| [flowbite-svelte](https://github.com/themesberg/flowbite-svelte) |
`0.44.23` | `0.44.24` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte)
| `4.2.11` | `4.2.12` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.1.3` | `5.1.4` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `1.3.0` | `1.3.1` |

Updates `@types/semver` from 7.5.7 to 7.5.8
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare
view</a></li>
</ul>
</details>
<br />

Updates `@octokit/plugin-retry` from 6.0.1 to 7.0.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/octokit/plugin-retry.js/releases"><code>@​octokit/plugin-retry</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.0.1</h2>
<h2><a
href="https://github.com/octokit/plugin-retry.js/compare/v7.0.0...v7.0.1">7.0.1</a>
(2024-02-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>add missing file extension on bottleneck import (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/520">#520</a>)
(<a
href="0383322feb">0383322</a>)</li>
</ul>
<h2>v7.0.0</h2>
<h1><a
href="https://github.com/octokit/plugin-retry.js/compare/v6.0.1...v7.0.0">7.0.0</a>
(2024-02-25)</h1>
<h3>Features</h3>
<ul>
<li>package is now ESM (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/517">#517</a>)
(<a
href="99b03eda5e">99b03ed</a>)</li>
</ul>
<h3>BREAKING CHANGES</h3>
<ul>
<li>package is now ESM</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0383322feb"><code>0383322</code></a>
fix: add missing file extension on bottleneck import (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/520">#520</a>)</li>
<li><a
href="60e9ac265c"><code>60e9ac2</code></a>
ci(release): remove old script (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/518">#518</a>)</li>
<li><a
href="99b03eda5e"><code>99b03ed</code></a>
feat: package is now ESM (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/517">#517</a>)</li>
<li><a
href="b61a5d552f"><code>b61a5d5</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/516">#516</a>)</li>
<li><a
href="cdbf73bc9f"><code>cdbf73b</code></a>
maint: fix spelling errors (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/515">#515</a>)</li>
<li><a
href="5c124adf34"><code>5c124ad</code></a>
build(deps): lock file maintenance</li>
<li><a
href="f8c23ad39c"><code>f8c23ad</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/512">#512</a>)</li>
<li><a
href="5683cd630d"><code>5683cd6</code></a>
chore(deps): update dependency prettier to v3.2.5</li>
<li><a
href="9f68cfa1ff"><code>9f68cfa</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-retry.js/issues/510">#510</a>)</li>
<li><a
href="51d25b76d7"><code>51d25b7</code></a>
chore(deps): update dependency esbuild to ^0.20.0</li>
<li>Additional commits viewable in <a
href="https://github.com/octokit/plugin-retry.js/compare/v6.0.1...v7.0.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `@octokit/plugin-throttling` from 8.1.3 to 9.0.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/octokit/plugin-throttling.js/releases"><code>@​octokit/plugin-throttling</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v9.0.1</h2>
<h2><a
href="https://github.com/octokit/plugin-throttling.js/compare/v9.0.0...v9.0.1">9.0.1</a>
(2024-02-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>add missing file extension on bottleneck import (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/676">#676</a>)
(<a
href="1c6455912a">1c64559</a>)</li>
</ul>
<h2>v9.0.0</h2>
<h1><a
href="https://github.com/octokit/plugin-throttling.js/compare/v8.2.0...v9.0.0">9.0.0</a>
(2024-02-25)</h1>
<h3>Features</h3>
<ul>
<li>package is now ESM (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/675">#675</a>)
(<a
href="4986fb0d09">4986fb0</a>)</li>
</ul>
<h3>BREAKING CHANGES</h3>
<ul>
<li>package is now ESM</li>
</ul>
<h2>v8.2.0</h2>
<h1><a
href="https://github.com/octokit/plugin-throttling.js/compare/v8.1.3...v8.2.0">8.2.0</a>
(2024-02-22)</h1>
<h3>Features</h3>
<ul>
<li>new endpoints (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/674">#674</a>)
(<a
href="0404bc6994">0404bc6</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1c6455912a"><code>1c64559</code></a>
fix: add missing file extension on bottleneck import (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/676">#676</a>)</li>
<li><a
href="4986fb0d09"><code>4986fb0</code></a>
feat: package is now ESM (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/675">#675</a>)</li>
<li><a
href="0404bc6994"><code>0404bc6</code></a>
feat: new endpoints (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/674">#674</a>)</li>
<li><a
href="5f90bc4aea"><code>5f90bc4</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/673">#673</a>)</li>
<li><a
href="a770925d31"><code>a770925</code></a>
chore: fix spelling errors (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/672">#672</a>)</li>
<li><a
href="8a8eac6326"><code>8a8eac6</code></a>
build(deps): lock file maintenance</li>
<li><a
href="06a393528b"><code>06a3935</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/669">#669</a>)</li>
<li><a
href="30125804d0"><code>3012580</code></a>
chore(deps): update dependency prettier to v3.2.5</li>
<li><a
href="3c73203cca"><code>3c73203</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/666">#666</a>)</li>
<li><a
href="2a02500908"><code>2a02500</code></a>
chore(deps): update dependency npm-run-all2 to v6</li>
<li>Additional commits viewable in <a
href="https://github.com/octokit/plugin-throttling.js/compare/v8.1.3...v9.0.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `@vitest/coverage-v8` from 1.3.0 to 1.3.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.3.1</h2>
<h3>   🚀 Features</h3>
<ul>
<li><strong>vitest</strong>: Expose parseCLI method  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5248">vitest-dev/vitest#5248</a>
<a href="https://github.com/vitest-dev/vitest/commit/c793a136"><!-- raw
HTML omitted -->(c793a)<!-- raw HTML omitted --></a>
<ul>
<li>This feature is not affected by SemVer because it is part of an <a
href="https://vitest.dev/advanced/api.html">experimental API</a>.</li>
</ul>
</li>
</ul>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Add task tests iteratively  -  by <a
href="https://github.com/DerYeger"><code>@​DerYeger</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5235">vitest-dev/vitest#5235</a>
<a href="https://github.com/vitest-dev/vitest/commit/38155548"><!-- raw
HTML omitted -->(38155)<!-- raw HTML omitted --></a></li>
<li><strong>coverage</strong>: Ignore generated TS decorators  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> and
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5206">vitest-dev/vitest#5206</a>
<a href="https://github.com/vitest-dev/vitest/commit/a280451b"><!-- raw
HTML omitted -->(a2804)<!-- raw HTML omitted --></a></li>
<li><strong>ui</strong>: Auto reload coverage iframe after test run  - 
by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5242">vitest-dev/vitest#5242</a>
<a href="https://github.com/vitest-dev/vitest/commit/5376d5be"><!-- raw
HTML omitted -->(5376d)<!-- raw HTML omitted --></a></li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.3.0...v1.3.1">View
changes on GitHub</a></h5>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e5114abd03"><code>e5114ab</code></a>
chore: release v1.3.1</li>
<li><a
href="a280451be5"><code>a280451</code></a>
fix(coverage): ignore generated TS decorators (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/5206">#5206</a>)</li>
<li><a
href="c692f76e58"><code>c692f76</code></a>
refactor(coverage): move common parts to <code>vitest</code> package (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/5236">#5236</a>)</li>
<li>See full diff in <a
href="https://github.com/vitest-dev/vitest/commits/v1.3.1/packages/coverage-v8">compare
view</a></li>
</ul>
</details>
<br />

Updates `flowbite-svelte` from 0.44.23 to 0.44.24
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite-svelte/releases">flowbite-svelte's
releases</a>.</em></p>
<blockquote>
<h2>v0.44.24</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: properly handle class props in dropdown by <a
href="https://github.com/vonagam"><code>@​vonagam</code></a> in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1239">themesberg/flowbite-svelte#1239</a></li>
<li>feat: add focus only trigger mode for Popper by <a
href="https://github.com/vonagam"><code>@​vonagam</code></a> in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1241">themesberg/flowbite-svelte#1241</a></li>
<li>Add click handler to Dropzone button, so whole button is clickable.
by <a
href="https://github.com/samal-rasmussen"><code>@​samal-rasmussen</code></a>
in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1245">themesberg/flowbite-svelte#1245</a></li>
<li>fix: properly handle spacing prop in Radio by <a
href="https://github.com/vonagam"><code>@​vonagam</code></a> in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1108">themesberg/flowbite-svelte#1108</a></li>
<li>fix: correct padding in Modal by <a
href="https://github.com/vonagam"><code>@​vonagam</code></a> in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1249">themesberg/flowbite-svelte#1249</a></li>
<li>fix: add if statement to <code>TransitionFrame</code> component by
<a
href="https://github.com/josepchetrit12"><code>@​josepchetrit12</code></a>
in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1250">themesberg/flowbite-svelte#1250</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/samal-rasmussen"><code>@​samal-rasmussen</code></a>
made their first contribution in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1245">themesberg/flowbite-svelte#1245</a></li>
<li><a
href="https://github.com/josepchetrit12"><code>@​josepchetrit12</code></a>
made their first contribution in <a
href="https://redirect.github.com/themesberg/flowbite-svelte/pull/1250">themesberg/flowbite-svelte#1250</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.23...v0.44.24">https://github.com/themesberg/flowbite-svelte/compare/v0.44.23...v0.44.24</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite-svelte/blob/main/CHANGELOG.md">flowbite-svelte's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.23...v0.44.24">0.44.24</a>
(2024-02-23)</h3>
<h3>Features</h3>
<ul>
<li>add focus only trigger mode for Popper (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1241">#1241</a>)
(<a
href="f7ca86872d">f7ca868</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>add if statement to TransitionFrame component (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1250">#1250</a>)
(<a
href="394413ef92">394413e</a>)</li>
<li>correct padding in Modal (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1249">#1249</a>)
(<a
href="913ad38dbb">913ad38</a>)</li>
<li>properly handle class props in dropdown (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1239">#1239</a>)
(<a
href="0e5ff6cda1">0e5ff6c</a>)</li>
<li>properly handle spacing prop in Radio (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1108">#1108</a>)
(<a
href="7f34738df9">7f34738</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9b1b21bb27"><code>9b1b21b</code></a>
chore(release): 0.44.24</li>
<li><a
href="3f95f74b40"><code>3f95f74</code></a>
chore: update dependencies, format, lib-helpers</li>
<li><a
href="394413ef92"><code>394413e</code></a>
fix: add if statement to TransitionFrame component (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1250">#1250</a>)</li>
<li><a
href="913ad38dbb"><code>913ad38</code></a>
fix: correct padding in Modal (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1249">#1249</a>)</li>
<li><a
href="7f34738df9"><code>7f34738</code></a>
fix: properly handle spacing prop in Radio (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1108">#1108</a>)</li>
<li><a
href="60d994f840"><code>60d994f</code></a>
Move label and input outside dropzone button (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1245">#1245</a>)</li>
<li><a
href="f7ca86872d"><code>f7ca868</code></a>
feat: add focus only trigger mode for Popper (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1241">#1241</a>)</li>
<li><a
href="0e5ff6cda1"><code>0e5ff6c</code></a>
fix: properly handle class props in dropdown (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1239">#1239</a>)</li>
<li><a
href="08b6ba461e"><code>08b6ba4</code></a>
docs: update icons and starter page</li>
<li><a
href="4cdc7fdeb6"><code>4cdc7fd</code></a>
docs: add icon in top menu</li>
<li>Additional commits viewable in <a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.23...v0.44.24">compare
view</a></li>
</ul>
</details>
<br />

Updates `svelte` from 4.2.11 to 4.2.12
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/releases">svelte's
releases</a>.</em></p>
<blockquote>
<h2>svelte@4.2.12</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: properly update <code>svelte:component</code> props when there
are spread props (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10604">#10604</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/blob/svelte@4.2.12/packages/svelte/CHANGELOG.md">svelte's
changelog</a>.</em></p>
<blockquote>
<h2>4.2.12</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: properly update <code>svelte:component</code> props when there
are spread props (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10604">#10604</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b14eabaca3"><code>b14eaba</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10607">#10607</a>)</li>
<li><a
href="055e7a8739"><code>055e7a8</code></a>
fix: properly update <code>svelte:component</code> props when there are
spread props (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/1">#1</a>...</li>
<li>See full diff in <a
href="https://github.com/sveltejs/svelte/commits/svelte@4.2.12/packages/svelte">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.1.3 to 5.1.4
<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 -->5.1.4 (2024-02-21)<!-- raw HTML omitted
--></h2>
<ul>
<li>perf: remove unnecessary regex s modifier (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15766">#15766</a>)
(<a href="https://github.com/vitejs/vite/commit/8dc1b73">8dc1b73</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15766">#15766</a></li>
<li>fix: fs cached checks disabled by default for yarn pnp (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15920">#15920</a>)
(<a href="https://github.com/vitejs/vite/commit/8b11fea">8b11fea</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15920">#15920</a></li>
<li>fix: resolve directory correctly when <code>fs.cachedChecks:
true</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15983">#15983</a>)
(<a href="https://github.com/vitejs/vite/commit/4fe971f">4fe971f</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15983">#15983</a></li>
<li>fix: srcSet with optional descriptor (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15905">#15905</a>)
(<a href="https://github.com/vitejs/vite/commit/81b3bd0">81b3bd0</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15905">#15905</a></li>
<li>fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15959">#15959</a>)
(<a href="https://github.com/vitejs/vite/commit/571a3fd">571a3fd</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15959">#15959</a></li>
<li>fix(watch): build watch fails when outDir is empty string (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15979">#15979</a>)
(<a href="https://github.com/vitejs/vite/commit/1d263d3">1d263d3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15979">#15979</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0137ea0100"><code>0137ea0</code></a>
release: v5.1.4</li>
<li><a
href="8dc1b73146"><code>8dc1b73</code></a>
perf: remove unnecessary regex s modifier (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15766">#15766</a>)</li>
<li><a
href="4fe971fda3"><code>4fe971f</code></a>
fix: resolve directory correctly when <code>fs.cachedChecks: true</code>
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15983">#15983</a>)</li>
<li><a
href="1d263d39d3"><code>1d263d3</code></a>
fix(watch): build watch fails when outDir is empty string (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15979">#15979</a>)</li>
<li><a
href="81b3bd09cf"><code>81b3bd0</code></a>
fix: srcSet with optional descriptor (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15905">#15905</a>)</li>
<li><a
href="571a3fde43"><code>571a3fd</code></a>
fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15959">#15959</a>)</li>
<li><a
href="8b11fea915"><code>8b11fea</code></a>
fix: fs cached checks disabled by default for yarn pnp (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15920">#15920</a>)</li>
<li>See full diff in <a
href="https://github.com/vitejs/vite/commits/v5.1.4/packages/vite">compare
view</a></li>
</ul>
</details>
<br />

Updates `vitest` from 1.3.0 to 1.3.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases">vitest's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.1</h2>
<h3>   🚀 Features</h3>
<ul>
<li><strong>vitest</strong>: Expose parseCLI method  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5248">vitest-dev/vitest#5248</a>
<a href="https://github.com/vitest-dev/vitest/commit/c793a136"><!-- raw
HTML omitted -->(c793a)<!-- raw HTML omitted --></a>
<ul>
<li>This feature is not affected by SemVer because it is part of an <a
href="https://vitest.dev/advanced/api.html">experimental API</a>.</li>
</ul>
</li>
</ul>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Add task tests iteratively  -  by <a
href="https://github.com/DerYeger"><code>@​DerYeger</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5235">vitest-dev/vitest#5235</a>
<a href="https://github.com/vitest-dev/vitest/commit/38155548"><!-- raw
HTML omitted -->(38155)<!-- raw HTML omitted --></a></li>
<li><strong>coverage</strong>: Ignore generated TS decorators  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> and
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5206">vitest-dev/vitest#5206</a>
<a href="https://github.com/vitest-dev/vitest/commit/a280451b"><!-- raw
HTML omitted -->(a2804)<!-- raw HTML omitted --></a></li>
<li><strong>ui</strong>: Auto reload coverage iframe after test run  - 
by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5242">vitest-dev/vitest#5242</a>
<a href="https://github.com/vitest-dev/vitest/commit/5376d5be"><!-- raw
HTML omitted -->(5376d)<!-- raw HTML omitted --></a></li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.3.0...v1.3.1">View
changes on GitHub</a></h5>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e5114abd03"><code>e5114ab</code></a>
chore: release v1.3.1</li>
<li><a
href="c793a13684"><code>c793a13</code></a>
feat(vitest): expose parseCLI method (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5248">#5248</a>)</li>
<li><a
href="2f755f0b12"><code>2f755f0</code></a>
docs: fix defaults in JSDocs to be more accurate (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5196">#5196</a>)</li>
<li><a
href="5376d5be3e"><code>5376d5b</code></a>
fix(ui): auto reload coverage iframe after test run (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5242">#5242</a>)</li>
<li><a
href="671cbcde2a"><code>671cbcd</code></a>
chore: update license</li>
<li><a
href="c692f76e58"><code>c692f76</code></a>
refactor(coverage): move common parts to <code>vitest</code> package (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5236">#5236</a>)</li>
<li>See full diff in <a
href="https://github.com/vitest-dev/vitest/commits/v1.3.1/packages/vitest">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-26 15:39:57 -05:00
dependabot[bot] c26cfd484a
build(deps): bump the backend-deps group in /src-tauri with 2 updates (#445)
Bumps the backend-deps group in /src-tauri with 2 updates:
[serde](https://github.com/serde-rs/serde) and
[serde_json](https://github.com/serde-rs/json).

Updates `serde` from 1.0.196 to 1.0.197
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.197</h2>
<ul>
<li>Fix unused_imports warnings when compiled by rustc 1.78</li>
<li>Optimize code size of some Display impls (<a
href="https://redirect.github.com/serde-rs/serde/issues/2697">#2697</a>,
thanks <a
href="https://github.com/nyurik"><code>@​nyurik</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5fa711d75d"><code>5fa711d</code></a>
Release 1.0.197</li>
<li><a
href="f5d8ae423a"><code>f5d8ae4</code></a>
Resolve prelude redundant import warnings</li>
<li><a
href="1d54973b92"><code>1d54973</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2697">#2697</a>
from nyurik/format-str</li>
<li><a
href="b8fafefd85"><code>b8fafef</code></a>
A few minor <code>write_str</code> optimizations and inlining</li>
<li><a
href="c42ebb8839"><code>c42ebb8</code></a>
Update ui test suite to nightly-2024-02-12</li>
<li><a
href="9e680620b5"><code>9e68062</code></a>
Ignore incompatible_msrv clippy lint for conditionally compiled
code</li>
<li><a
href="846f865de2"><code>846f865</code></a>
Ignore dead_code warnings in test</li>
<li>See full diff in <a
href="https://github.com/serde-rs/serde/compare/v1.0.196...v1.0.197">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.113 to 1.0.114
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.114</h2>
<ul>
<li>Fix unused_imports warnings when compiled by rustc 1.78</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e1b3a6d8a1"><code>e1b3a6d</code></a>
Release 1.0.114</li>
<li><a
href="6fb70262e8"><code>6fb7026</code></a>
Work around prelude redundant import warnings</li>
<li><a
href="34a04c5f7f"><code>34a04c5</code></a>
Ignore incompatible_msrv clippy false positives in test</li>
<li><a
href="ca05f69943"><code>ca05f69</code></a>
Remove unused Float::is_sign_negative trait method</li>
<li>See full diff in <a
href="https://github.com/serde-rs/json/compare/v1.0.113...v1.0.114">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-26 15:36:21 -05:00
Tyler Wilding f44c6d94f9
New Crowdin updates (#444) 2024-02-19 23:17:32 -05:00
dependabot[bot] 4d5340a963
build(deps): bump the backend-deps group in /src-tauri with 1 update (#440)
Bumps the backend-deps group in /src-tauri with 1 update:
[semver](https://github.com/dtolnay/semver).

Updates `semver` from 1.0.21 to 1.0.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/semver/releases">semver's
releases</a>.</em></p>
<blockquote>
<h2>1.0.22</h2>
<ul>
<li>Fix unused_imports warnings when compiled by rustc 1.78</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c8ad1bf6db"><code>c8ad1bf</code></a>
Release 1.0.22</li>
<li><a
href="f76db8d7f2"><code>f76db8d</code></a>
Resolve redundant import warning</li>
<li><a
href="f32b420f75"><code>f32b420</code></a>
Ignore incompatible_msrv clippy lint for conditionally compiled
code</li>
<li>See full diff in <a
href="https://github.com/dtolnay/semver/compare/1.0.21...1.0.22">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=semver&package-manager=cargo&previous-version=1.0.21&new-version=1.0.22)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 21:20:33 -05:00
dependabot[bot] 647665600e
build(deps-dev): bump the frontend-deps group with 6 updates (#442)
Bumps the frontend-deps group with 6 updates:

| Package | From | To |
| --- | --- | --- |
|
[@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8)
| `1.2.2` | `1.3.0` |
| [flowbite](https://github.com/themesberg/flowbite) | `2.2.1` | `2.3.0`
|
|
[prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte)
| `3.1.2` | `3.2.1` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte)
| `4.2.10` | `4.2.11` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.1.1` | `5.1.3` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `1.2.2` | `1.3.0` |

Updates `@vitest/coverage-v8` from 1.2.2 to 1.3.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.3.0</h2>
<h3>🚀 Features</h3>
<ul>
<li>Deprecate watchExclude - by <a
href="https://github.com/patak-dev"><code>@​patak-dev</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5171">vitest-dev/vitest#5171</a>
<a href="https://github.com/vitest-dev/vitest/commit/828858f8"><!-- raw
HTML omitted -->(82885)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Run test files in isolated iframes - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5036">vitest-dev/vitest#5036</a>
<a href="https://github.com/vitest-dev/vitest/commit/4f40177e"><!-- raw
HTML omitted -->(4f401)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>config</strong>:
<ul>
<li>Add <code>snapshotSerializers</code> option - by <a
href="https://github.com/fenghan34"><code>@​fenghan34</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5092">vitest-dev/vitest#5092</a>
<a href="https://github.com/vitest-dev/vitest/commit/5b1021da"><!-- raw
HTML omitted -->(5b102)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>reporters</strong>:
<ul>
<li>Support custom options - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5111">vitest-dev/vitest#5111</a>
<a href="https://github.com/vitest-dev/vitest/commit/fec9ca0b"><!-- raw
HTML omitted -->(fec9c)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Support automatic fixtures - by <a
href="https://github.com/fenghan34"><code>@​fenghan34</code></a> and <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5102">vitest-dev/vitest#5102</a>
<a href="https://github.com/vitest-dev/vitest/commit/0441f761"><!-- raw
HTML omitted -->(0441f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>ui</strong>:
<ul>
<li>Save splitpanes size to local storage - by <a
href="https://github.com/posva"><code>@​posva</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5166">vitest-dev/vitest#5166</a>
<a href="https://github.com/vitest-dev/vitest/commit/c28b4c26"><!-- raw
HTML omitted -->(c28b4)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Add onTestFinished hook - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5128">vitest-dev/vitest#5128</a>
<a href="https://github.com/vitest-dev/vitest/commit/6f5b42b7"><!-- raw
HTML omitted -->(6f5b4)<!-- raw HTML omitted --></a></li>
<li>Add github actions reporter - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5093">vitest-dev/vitest#5093</a>
<a href="https://github.com/vitest-dev/vitest/commit/40afbe3a"><!-- raw
HTML omitted -->(40afb)<!-- raw HTML omitted --></a></li>
<li>Expose jsdom global if jsdom environment is enabled - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5155">vitest-dev/vitest#5155</a>
<a href="https://github.com/vitest-dev/vitest/commit/567d20b9"><!-- raw
HTML omitted -->(567d2)<!-- raw HTML omitted --></a></li>
<li>Add new CLI options - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5163">vitest-dev/vitest#5163</a>
<a href="https://github.com/vitest-dev/vitest/commit/4e179426"><!-- raw
HTML omitted -->(4e179)<!-- raw HTML omitted --></a></li>
<li>&quot;test&quot; accepts options object as the second parameter - by
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5142">vitest-dev/vitest#5142</a>
<a href="https://github.com/vitest-dev/vitest/commit/7d9b1fb0"><!-- raw
HTML omitted -->(7d9b1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vm</strong>:
<ul>
<li>Support wasm module - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5131">vitest-dev/vitest#5131</a>
<a href="https://github.com/vitest-dev/vitest/commit/5ed537f0"><!-- raw
HTML omitted -->(5ed53)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h3>🐞 Bug Fixes</h3>
<ul>
<li>Fix sourcemap in vm pools - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5063">vitest-dev/vitest#5063</a>
<a href="https://github.com/vitest-dev/vitest/commit/8110540a"><!-- raw
HTML omitted -->(81105)<!-- raw HTML omitted --></a></li>
<li>Don't optimize react/jsx-runtime by default when running in Node -
by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5079">vitest-dev/vitest#5079</a>
<a href="https://github.com/vitest-dev/vitest/commit/0d2bfeac"><!-- raw
HTML omitted -->(0d2bf)<!-- raw HTML omitted --></a></li>
<li>Rpc timeout error messages to include caller - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5103">vitest-dev/vitest#5103</a>
<a href="https://github.com/vitest-dev/vitest/commit/a6e04bd8"><!-- raw
HTML omitted -->(a6e04)<!-- raw HTML omitted --></a></li>
<li>Requires fixed version across the monorepo - by <a
href="https://github.com/antfu"><code>@​antfu</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5208">vitest-dev/vitest#5208</a>
<a href="https://github.com/vitest-dev/vitest/commit/68f51961"><!-- raw
HTML omitted -->(68f51)<!-- raw HTML omitted --></a></li>
<li>Prevent merging of <code>poolOptions</code> - by <a
href="https://github.com/penalosa"><code>@​penalosa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5221">vitest-dev/vitest#5221</a>
<a href="https://github.com/vitest-dev/vitest/commit/bc5b2d04"><!-- raw
HTML omitted -->(bc5b2)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Don't exclude node builtins from optimization - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5082">vitest-dev/vitest#5082</a>
<a href="https://github.com/vitest-dev/vitest/commit/714c911f"><!-- raw
HTML omitted -->(714c9)<!-- raw HTML omitted --></a></li>
<li>Support <code>coverage.reportsDirectory</code> with multiple
directories - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5056">vitest-dev/vitest#5056</a>
<a href="https://github.com/vitest-dev/vitest/commit/ae73f273"><!-- raw
HTML omitted -->(ae73f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>cli</strong>:
<ul>
<li>Parse <code>--browser=&lt;name&gt;</code> correctly - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5179">vitest-dev/vitest#5179</a>
<a href="https://github.com/vitest-dev/vitest/commit/656e210b"><!-- raw
HTML omitted -->(656e2)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>coverage</strong>:
<ul>
<li><code>.tmp</code> directory conflicts with <code>--shard</code>
option - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5184">vitest-dev/vitest#5184</a>
<a href="https://github.com/vitest-dev/vitest/commit/5749d2c2"><!-- raw
HTML omitted -->(5749d)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>deps</strong>:
<ul>
<li>Update dependency strip-literal to v2 - by <a
href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5136">vitest-dev/vitest#5136</a>
<a href="https://github.com/vitest-dev/vitest/commit/ef557243"><!-- raw
HTML omitted -->(ef557)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>reporters</strong>:
<ul>
<li>Testsuite name should include project root in Junit output - by <a
href="https://github.com/fenghan34"><code>@​fenghan34</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5116">vitest-dev/vitest#5116</a>
<a href="https://github.com/vitest-dev/vitest/commit/2494fbf2"><!-- raw
HTML omitted -->(2494f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>typecheck</strong>:
<ul>
<li>Fix suite collection while-loop - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5065">vitest-dev/vitest#5065</a>
<a href="https://github.com/vitest-dev/vitest/commit/35675bd3"><!-- raw
HTML omitted -->(35675)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>ui</strong>:
<ul>
<li>Fix tests duration time - by <a
href="https://github.com/vovsemenv"><code>@​vovsemenv</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5219">vitest-dev/vitest#5219</a>
<a href="https://github.com/vitest-dev/vitest/commit/581030ee"><!-- raw
HTML omitted -->(58103)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>utils</strong>:
<ul>
<li>Fix asymmetric matcher diff inside array - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5189">vitest-dev/vitest#5189</a>
<a href="https://github.com/vitest-dev/vitest/commit/3ffcd2ea"><!-- raw
HTML omitted -->(3ffcd)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Correctly report failed test files as failures in json reporter,
export json reporter types - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5081">vitest-dev/vitest#5081</a>
<a href="https://github.com/vitest-dev/vitest/commit/0417ba20"><!-- raw
HTML omitted -->(0417b)<!-- raw HTML omitted --></a></li>
<li>Don't run typecheck tests in browser if both are enabled - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5080">vitest-dev/vitest#5080</a>
<a href="https://github.com/vitest-dev/vitest/commit/1045b98b"><!-- raw
HTML omitted -->(1045b)<!-- raw HTML omitted --></a></li>
<li>Handle function config inside <code>defineWorkspace</code> - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5089">vitest-dev/vitest#5089</a>
<a href="https://github.com/vitest-dev/vitest/commit/0bf52533"><!-- raw
HTML omitted -->(0bf52)<!-- raw HTML omitted --></a></li>
<li>Remove excessive listeners when running without isolation, don't
reset the state - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5132">vitest-dev/vitest#5132</a>
<a href="https://github.com/vitest-dev/vitest/commit/b607f1ea"><!-- raw
HTML omitted -->(b607f)<!-- raw HTML omitted --></a></li>
<li>Auto-enable &quot;github-actions&quot; only where users didn't
configure reporters - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5158">vitest-dev/vitest#5158</a>
<a href="https://github.com/vitest-dev/vitest/commit/ef0440cb"><!-- raw
HTML omitted -->(ef044)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bb2af3b03b"><code>bb2af3b</code></a>
chore: release v1.3.0</li>
<li><a
href="2ee2317f47"><code>2ee2317</code></a>
ci: add publish workflow (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/5168">#5168</a>)</li>
<li><a
href="68f51961b2"><code>68f5196</code></a>
fix: requires fixed version across the monorepo (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/5208">#5208</a>)</li>
<li><a
href="5749d2c209"><code>5749d2c</code></a>
fix(coverage): <code>.tmp</code> directory conflicts with
<code>--shard</code> option (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/5184">#5184</a>)</li>
<li><a
href="7a31a1ae42"><code>7a31a1a</code></a>
chore(deps): update dependency <code>@​antfu/eslint-config</code> to v2
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/5153">#5153</a>)</li>
<li>See full diff in <a
href="https://github.com/vitest-dev/vitest/commits/v1.3.0/packages/coverage-v8">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~vitestbot">vitestbot</a>, a new releaser
for <code>@​vitest/coverage-v8</code> since your current version.</p>
</details>
<br />

Updates `flowbite` from 2.2.1 to 2.3.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite/releases">flowbite's
releases</a>.</em></p>
<blockquote>
<h2>v2.3.0</h2>
<ul>
<li>added new <a
href="https://flowbite.com/docs/components/clipboard/">copy to
clipboard</a> component and examples</li>
<li>added new JavaScript tab to the documentation examples</li>
<li>update dependency to Tailwind CSS v3.4.1</li>
<li>fixed carousel component behavior when there’s only one image</li>
<li>added new data attribute to set active and inactive classes for
tabs</li>
<li>Ruby on Rails integration fix for turbo load</li>
<li>minor bug fixes and improvements</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="7941f8bb79"><code>7941f8b</code></a>
docs(README): add new clipboard component to readme</li>
<li><a
href="e4f9f16aae"><code>e4f9f16</code></a>
fix(clipboard): target element can be input element too</li>
<li><a
href="5cd600a348"><code>5cd600a</code></a>
feat(changelog): add Ruby on Rails fix mention</li>
<li><a
href="fdf9bfe52a"><code>fdf9bfe</code></a>
chore(versioning): bump all version instances to
<code>v2.3.0</code></li>
<li><a
href="bfbf97db7b"><code>bfbf97d</code></a>
chore(package): update keywords and name</li>
<li><a
href="52ed4101a0"><code>52ed410</code></a>
Merge pull request <a
href="https://redirect.github.com/themesberg/flowbite/issues/804">#804</a>
from themesberg/fix-inconsistencies</li>
<li><a
href="06778c3906"><code>06778c3</code></a>
fix(modals): replace old alternative buttons with the new ones to have
consis...</li>
<li><a
href="bcb1dbf990"><code>bcb1dbf</code></a>
refactor(input fields): add maximum width to search and select
inputs</li>
<li><a
href="03667ef73a"><code>03667ef</code></a>
fix(input-forms): fix bg-color &amp; text-color on:dark for &quot;Form
validation&quot; inp...</li>
<li><a
href="3179d1ffa8"><code>3179d1f</code></a>
fix(forms): toggle switch typo</li>
<li>Additional commits viewable in <a
href="https://github.com/themesberg/flowbite/compare/v2.2.1...v2.3.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier-plugin-svelte` from 3.1.2 to 3.2.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/prettier-plugin-svelte/blob/master/CHANGELOG.md">prettier-plugin-svelte's
changelog</a>.</em></p>
<blockquote>
<h2>3.2.1</h2>
<ul>
<li>(fix) handle updated <code>@render</code> tag AST shape</li>
</ul>
<h2>3.2.0</h2>
<ul>
<li>(feat) format JSON script tags</li>
<li>(feat) introduce separate entry point using
<code>prettier/standalone</code></li>
<li>(fix) don't duplicate comments of nested script/style tags</li>
<li>(fix) handle updated <code>Snippet</code> block AST shape</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="96049c64be"><code>96049c6</code></a>
fix: handle updated <code>@render</code> tag AST shape</li>
<li><a
href="c8317eb0a0"><code>c8317eb</code></a>
chore: release 3.2.0</li>
<li><a
href="d89241e112"><code>d89241e</code></a>
feat: semi-standalone browser build (<a
href="https://redirect.github.com/sveltejs/prettier-plugin-svelte/issues/430">#430</a>)</li>
<li><a
href="288d91567d"><code>288d915</code></a>
fix: handle updated <code>Snippet</code> block AST shape</li>
<li><a
href="99c885e5d6"><code>99c885e</code></a>
chore: remove Buffer usage for browser environments (<a
href="https://redirect.github.com/sveltejs/prettier-plugin-svelte/issues/423">#423</a>)</li>
<li><a
href="cc856a0e5d"><code>cc856a0</code></a>
fix: don't duplicate comments of nested script/style tags (<a
href="https://redirect.github.com/sveltejs/prettier-plugin-svelte/issues/425">#425</a>)</li>
<li><a
href="1884f2250b"><code>1884f22</code></a>
feat: format JSON script tags (<a
href="https://redirect.github.com/sveltejs/prettier-plugin-svelte/issues/424">#424</a>)</li>
<li>See full diff in <a
href="https://github.com/sveltejs/prettier-plugin-svelte/compare/v3.1.2...v3.2.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `svelte` from 4.2.10 to 4.2.11
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/releases">svelte's
releases</a>.</em></p>
<blockquote>
<h2>svelte@4.2.11</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: check that component wasn't instantiated in
<code>connectedCallback</code> (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10466">#10466</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/blob/svelte@4.2.11/packages/svelte/CHANGELOG.md">svelte's
changelog</a>.</em></p>
<blockquote>
<h2>4.2.11</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: check that component wasn't instantiated in
<code>connectedCallback</code> (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10466">#10466</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="fb14a04d23"><code>fb14a04</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10489">#10489</a>)</li>
<li><a
href="a41bdb6184"><code>a41bdb6</code></a>
fix: check that component wasn't instantiated (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10466">#10466</a>)</li>
<li>See full diff in <a
href="https://github.com/sveltejs/svelte/commits/svelte@4.2.11/packages/svelte">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.1.1 to 5.1.3
<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 -->5.1.3 (2024-02-15)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: cachedTransformMiddleware for direct css requests (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15919">#15919</a>)
(<a href="https://github.com/vitejs/vite/commit/5099028">5099028</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15919">#15919</a></li>
<li>refactor(runtime): minor tweaks (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15904">#15904</a>)
(<a href="https://github.com/vitejs/vite/commit/63a39c2">63a39c2</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15904">#15904</a></li>
<li>refactor(runtime): seal ES module namespace object instead of
feezing (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15914">#15914</a>)
(<a href="https://github.com/vitejs/vite/commit/4172f02">4172f02</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15914">#15914</a></li>
</ul>
<h2><!-- raw HTML omitted -->5.1.2 (2024-02-14)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: normalize import file path info (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15772">#15772</a>)
(<a href="https://github.com/vitejs/vite/commit/306df44">306df44</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15772">#15772</a></li>
<li>fix(build): do not output build time when build fails (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15711">#15711</a>)
(<a href="https://github.com/vitejs/vite/commit/added3e">added3e</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15711">#15711</a></li>
<li>fix(runtime): pass path instead of fileURL to
<code>isFilePathESM</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15908">#15908</a>)
(<a href="https://github.com/vitejs/vite/commit/7b15607">7b15607</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15908">#15908</a></li>
<li>fix(worker): support UTF-8 encoding in inline workers (fixes <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12117">#12117</a>)
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15866">#15866</a>)
(<a href="https://github.com/vitejs/vite/commit/570e0f1">570e0f1</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/12117">#12117</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/15866">#15866</a></li>
<li>chore: update license file (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15885">#15885</a>)
(<a href="https://github.com/vitejs/vite/commit/d9adf18">d9adf18</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15885">#15885</a></li>
<li>chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15874">#15874</a>)
(<a href="https://github.com/vitejs/vite/commit/d16ce5d">d16ce5d</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15874">#15874</a></li>
<li>chore(deps): update dependency dotenv-expand to v11 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15875">#15875</a>)
(<a href="https://github.com/vitejs/vite/commit/642d528">642d528</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15875">#15875</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bf39527904"><code>bf39527</code></a>
release: v5.1.3</li>
<li><a
href="509902807c"><code>5099028</code></a>
fix: cachedTransformMiddleware for direct css requests (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15919">#15919</a>)</li>
<li><a
href="4172f02b70"><code>4172f02</code></a>
refactor(runtime): seal ES module namespace object instead of feezing
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15914">#15914</a>)</li>
<li><a
href="63a39c244b"><code>63a39c2</code></a>
refactor(runtime): minor tweaks (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15904">#15904</a>)</li>
<li><a
href="75ddc0e4fd"><code>75ddc0e</code></a>
release: v5.1.2</li>
<li><a
href="7b1560765e"><code>7b15607</code></a>
fix(runtime): pass path instead of fileURL to <code>isFilePathESM</code>
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15908">#15908</a>)</li>
<li><a
href="d9adf18e63"><code>d9adf18</code></a>
chore: update license file (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15885">#15885</a>)</li>
<li><a
href="added3ee10"><code>added3e</code></a>
fix(build): do not output build time when build fails (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15711">#15711</a>)</li>
<li><a
href="642d528b7b"><code>642d528</code></a>
chore(deps): update dependency dotenv-expand to v11 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15875">#15875</a>)</li>
<li><a
href="d16ce5db2f"><code>d16ce5d</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15874">#15874</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite/commits/v5.1.3/packages/vite">compare
view</a></li>
</ul>
</details>
<br />

Updates `vitest` from 1.2.2 to 1.3.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases">vitest's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.0</h2>
<h3>🚀 Features</h3>
<ul>
<li>Deprecate watchExclude - by <a
href="https://github.com/patak-dev"><code>@​patak-dev</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5171">vitest-dev/vitest#5171</a>
<a href="https://github.com/vitest-dev/vitest/commit/828858f8"><!-- raw
HTML omitted -->(82885)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Run test files in isolated iframes - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5036">vitest-dev/vitest#5036</a>
<a href="https://github.com/vitest-dev/vitest/commit/4f40177e"><!-- raw
HTML omitted -->(4f401)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>config</strong>:
<ul>
<li>Add <code>snapshotSerializers</code> option - by <a
href="https://github.com/fenghan34"><code>@​fenghan34</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5092">vitest-dev/vitest#5092</a>
<a href="https://github.com/vitest-dev/vitest/commit/5b1021da"><!-- raw
HTML omitted -->(5b102)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>reporters</strong>:
<ul>
<li>Support custom options - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5111">vitest-dev/vitest#5111</a>
<a href="https://github.com/vitest-dev/vitest/commit/fec9ca0b"><!-- raw
HTML omitted -->(fec9c)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Support automatic fixtures - by <a
href="https://github.com/fenghan34"><code>@​fenghan34</code></a> and <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5102">vitest-dev/vitest#5102</a>
<a href="https://github.com/vitest-dev/vitest/commit/0441f761"><!-- raw
HTML omitted -->(0441f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>ui</strong>:
<ul>
<li>Save splitpanes size to local storage - by <a
href="https://github.com/posva"><code>@​posva</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5166">vitest-dev/vitest#5166</a>
<a href="https://github.com/vitest-dev/vitest/commit/c28b4c26"><!-- raw
HTML omitted -->(c28b4)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Add onTestFinished hook - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5128">vitest-dev/vitest#5128</a>
<a href="https://github.com/vitest-dev/vitest/commit/6f5b42b7"><!-- raw
HTML omitted -->(6f5b4)<!-- raw HTML omitted --></a></li>
<li>Add github actions reporter - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5093">vitest-dev/vitest#5093</a>
<a href="https://github.com/vitest-dev/vitest/commit/40afbe3a"><!-- raw
HTML omitted -->(40afb)<!-- raw HTML omitted --></a></li>
<li>Expose jsdom global if jsdom environment is enabled - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5155">vitest-dev/vitest#5155</a>
<a href="https://github.com/vitest-dev/vitest/commit/567d20b9"><!-- raw
HTML omitted -->(567d2)<!-- raw HTML omitted --></a></li>
<li>Add new CLI options - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5163">vitest-dev/vitest#5163</a>
<a href="https://github.com/vitest-dev/vitest/commit/4e179426"><!-- raw
HTML omitted -->(4e179)<!-- raw HTML omitted --></a></li>
<li>&quot;test&quot; accepts options object as the second parameter - by
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5142">vitest-dev/vitest#5142</a>
<a href="https://github.com/vitest-dev/vitest/commit/7d9b1fb0"><!-- raw
HTML omitted -->(7d9b1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vm</strong>:
<ul>
<li>Support wasm module - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5131">vitest-dev/vitest#5131</a>
<a href="https://github.com/vitest-dev/vitest/commit/5ed537f0"><!-- raw
HTML omitted -->(5ed53)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h3>🐞 Bug Fixes</h3>
<ul>
<li>Fix sourcemap in vm pools - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5063">vitest-dev/vitest#5063</a>
<a href="https://github.com/vitest-dev/vitest/commit/8110540a"><!-- raw
HTML omitted -->(81105)<!-- raw HTML omitted --></a></li>
<li>Don't optimize react/jsx-runtime by default when running in Node -
by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5079">vitest-dev/vitest#5079</a>
<a href="https://github.com/vitest-dev/vitest/commit/0d2bfeac"><!-- raw
HTML omitted -->(0d2bf)<!-- raw HTML omitted --></a></li>
<li>Rpc timeout error messages to include caller - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5103">vitest-dev/vitest#5103</a>
<a href="https://github.com/vitest-dev/vitest/commit/a6e04bd8"><!-- raw
HTML omitted -->(a6e04)<!-- raw HTML omitted --></a></li>
<li>Requires fixed version across the monorepo - by <a
href="https://github.com/antfu"><code>@​antfu</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5208">vitest-dev/vitest#5208</a>
<a href="https://github.com/vitest-dev/vitest/commit/68f51961"><!-- raw
HTML omitted -->(68f51)<!-- raw HTML omitted --></a></li>
<li>Prevent merging of <code>poolOptions</code> - by <a
href="https://github.com/penalosa"><code>@​penalosa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5221">vitest-dev/vitest#5221</a>
<a href="https://github.com/vitest-dev/vitest/commit/bc5b2d04"><!-- raw
HTML omitted -->(bc5b2)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Don't exclude node builtins from optimization - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5082">vitest-dev/vitest#5082</a>
<a href="https://github.com/vitest-dev/vitest/commit/714c911f"><!-- raw
HTML omitted -->(714c9)<!-- raw HTML omitted --></a></li>
<li>Support <code>coverage.reportsDirectory</code> with multiple
directories - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5056">vitest-dev/vitest#5056</a>
<a href="https://github.com/vitest-dev/vitest/commit/ae73f273"><!-- raw
HTML omitted -->(ae73f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>cli</strong>:
<ul>
<li>Parse <code>--browser=&lt;name&gt;</code> correctly - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5179">vitest-dev/vitest#5179</a>
<a href="https://github.com/vitest-dev/vitest/commit/656e210b"><!-- raw
HTML omitted -->(656e2)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>coverage</strong>:
<ul>
<li><code>.tmp</code> directory conflicts with <code>--shard</code>
option - by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5184">vitest-dev/vitest#5184</a>
<a href="https://github.com/vitest-dev/vitest/commit/5749d2c2"><!-- raw
HTML omitted -->(5749d)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>deps</strong>:
<ul>
<li>Update dependency strip-literal to v2 - by <a
href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5136">vitest-dev/vitest#5136</a>
<a href="https://github.com/vitest-dev/vitest/commit/ef557243"><!-- raw
HTML omitted -->(ef557)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>reporters</strong>:
<ul>
<li>Testsuite name should include project root in Junit output - by <a
href="https://github.com/fenghan34"><code>@​fenghan34</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5116">vitest-dev/vitest#5116</a>
<a href="https://github.com/vitest-dev/vitest/commit/2494fbf2"><!-- raw
HTML omitted -->(2494f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>typecheck</strong>:
<ul>
<li>Fix suite collection while-loop - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5065">vitest-dev/vitest#5065</a>
<a href="https://github.com/vitest-dev/vitest/commit/35675bd3"><!-- raw
HTML omitted -->(35675)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>ui</strong>:
<ul>
<li>Fix tests duration time - by <a
href="https://github.com/vovsemenv"><code>@​vovsemenv</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5219">vitest-dev/vitest#5219</a>
<a href="https://github.com/vitest-dev/vitest/commit/581030ee"><!-- raw
HTML omitted -->(58103)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>utils</strong>:
<ul>
<li>Fix asymmetric matcher diff inside array - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5189">vitest-dev/vitest#5189</a>
<a href="https://github.com/vitest-dev/vitest/commit/3ffcd2ea"><!-- raw
HTML omitted -->(3ffcd)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Correctly report failed test files as failures in json reporter,
export json reporter types - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5081">vitest-dev/vitest#5081</a>
<a href="https://github.com/vitest-dev/vitest/commit/0417ba20"><!-- raw
HTML omitted -->(0417b)<!-- raw HTML omitted --></a></li>
<li>Don't run typecheck tests in browser if both are enabled - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5080">vitest-dev/vitest#5080</a>
<a href="https://github.com/vitest-dev/vitest/commit/1045b98b"><!-- raw
HTML omitted -->(1045b)<!-- raw HTML omitted --></a></li>
<li>Handle function config inside <code>defineWorkspace</code> - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5089">vitest-dev/vitest#5089</a>
<a href="https://github.com/vitest-dev/vitest/commit/0bf52533"><!-- raw
HTML omitted -->(0bf52)<!-- raw HTML omitted --></a></li>
<li>Remove excessive listeners when running without isolation, don't
reset the state - by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5132">vitest-dev/vitest#5132</a>
<a href="https://github.com/vitest-dev/vitest/commit/b607f1ea"><!-- raw
HTML omitted -->(b607f)<!-- raw HTML omitted --></a></li>
<li>Auto-enable &quot;github-actions&quot; only where users didn't
configure reporters - by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5158">vitest-dev/vitest#5158</a>
<a href="https://github.com/vitest-dev/vitest/commit/ef0440cb"><!-- raw
HTML omitted -->(ef044)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bb2af3b03b"><code>bb2af3b</code></a>
chore: release v1.3.0</li>
<li><a
href="bc5b2d0455"><code>bc5b2d0</code></a>
fix: Prevent merging of <code>poolOptions</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5221">#5221</a>)</li>
<li><a
href="1aecd650e2"><code>1aecd65</code></a>
fix(vitest): fix <code>optimizeDeps.disabled</code> warnings on Vite 5.1
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5215">#5215</a>)</li>
<li><a
href="b3182e01f2"><code>b3182e0</code></a>
chore: pass down <code>--update</code> flag to the project config</li>
<li><a
href="2ee2317f47"><code>2ee2317</code></a>
ci: add publish workflow (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5168">#5168</a>)</li>
<li><a
href="86297d42d0"><code>86297d4</code></a>
fix(vitest): delegate snapshot options to workspace from root config (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5199">#5199</a>)</li>
<li><a
href="68f51961b2"><code>68f5196</code></a>
fix: requires fixed version across the monorepo (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5208">#5208</a>)</li>
<li><a
href="7d9b1fb023"><code>7d9b1fb</code></a>
feat(vitest): &quot;test&quot; accepts options object as the second
parameter (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5142">#5142</a>)</li>
<li><a
href="656e210b7a"><code>656e210</code></a>
fix(cli): parse <code>--browser=\&lt;name&gt;</code> correctly (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5179">#5179</a>)</li>
<li><a
href="828858f861"><code>828858f</code></a>
feat: deprecate watchExclude (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5171">#5171</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v1.3.0/packages/vitest">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~vitestbot">vitestbot</a>, a new releaser
for vitest 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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 21:20:18 -05:00
dependabot[bot] 7f5e2ec9f4
build(deps): bump the backend-deps-tauri group in /src-tauri with 1 update (#441)
Bumps the backend-deps-tauri group in /src-tauri with 1 update:
[tauri](https://github.com/tauri-apps/tauri).

Updates `tauri` from 1.5.4 to 1.6.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases">tauri's
releases</a>.</em></p>
<blockquote>
<h2>tauri v1.6.0</h2>
<p>Updating crates.io index</p>
<!-- raw HTML omitted -->
<pre><code>Fetching advisory database from
`https://github.com/RustSec/advisory-db.git`
Loaded 603 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (581 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.6.0
        ├── tauri 1.6.0
        ├── restart 0.1.0
        └── app-updater 0.1.0
<p>warning: 1 allowed warning found
</code></pre></p>
<!-- raw HTML omitted -->
<h2>[1.6.0]</h2>
<h3>New Features</h3>
<ul>
<li><a
href="6e48837860"><code>6e488378</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8474">#8474</a>)
Re-export <code>Url</code> type.</li>
</ul>
<h3>Enhancements</h3>
<ul>
<li><a
href="8ce51cec3b"><code>8ce51cec</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/7718">#7718</a>)
On Windows, retain command line args when relaunching the app after an
update. Supports NSIS and WiX (without elevated update task).</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="cc3d8e7731"><code>cc3d8e77</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8539">#8539</a>)
Fixes a deadlock when reading a stdout or stderr line returns an
error.</li>
<li><a
href="b546b42db7"><code>b546b42d</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8577">#8577</a>)
Preserve the order of JS object/map keys in IPC calls. This also fixes
issues with the JS <code>http</code> module when calling to servers that
required a specific order of <code>FormBody</code> contents.</li>
<li><a
href="8f8729d918"><code>8f8729d9</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8312">#8312</a>)
On macOS, allow cancelling maximization when doubleclick happens on
<code>data-tauri-drag-region</code> by simply keeping the left moust
button pressed and then moving the mouse away of the starting position
of the click, which is consistent with the native behavior of
macOS.</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li>Upgraded to <code>tauri-runtime-wry@0.14.4</code></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b735b6799f"><code>b735b67</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8475">#8475</a>)</li>
<li><a
href="7b5e8712e7"><code>7b5e871</code></a>
ci: update msrv test and cargo.lock</li>
<li><a
href="2421073576"><code>2421073</code></a>
fix(macos): use BTreeMap for windows map to prevent crash on idle (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8117">#8117</a>)</li>
<li><a
href="510b62261c"><code>510b622</code></a>
chore(core): Add missing changefile for <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8546">#8546</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8822">#8822</a>)</li>
<li><a
href="b0f27814b9"><code>b0f2781</code></a>
fix(cli): map <code>--profile dev</code> to <code>debug</code> folder
when finding executable (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8776">#8776</a>)</li>
<li><a
href="cc3d8e7731"><code>cc3d8e7</code></a>
fix(core): Command::output suspend while wait for response (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8539">#8539</a>)</li>
<li><a
href="8ce51cec3b"><code>8ce51ce</code></a>
feat: retain cli args when relaunching after update, closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/7402">#7402</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/7718">#7718</a>)</li>
<li><a
href="0bff8c325d"><code>0bff8c3</code></a>
fix(cli): Ignore query parameter in dev server (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8697">#8697</a>)</li>
<li><a
href="a9b2c0625c"><code>a9b2c06</code></a>
chore: Commit Cargo.lock (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8586">#8586</a>)</li>
<li><a
href="7aa30dec85"><code>7aa30de</code></a>
feat: Add Section, Priority and Changelog options (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8620">#8620</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tauri-apps/tauri/compare/tauri-v1.5.4...tauri-v1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tauri&package-manager=cargo&previous-version=1.5.4&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 21:20:08 -05:00
dependabot[bot] 106a4944c9
build(deps-dev): bump the frontend-deps-tauri group with 1 update (#443)
Bumps the frontend-deps-tauri group with 1 update:
[@tauri-apps/cli](https://github.com/tauri-apps/tauri).

Updates `@tauri-apps/cli` from 1.5.9 to 1.5.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases"><code>@​tauri-apps/cli</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​tauri-apps/cli</code> v1.5.10</h2>
<h2>[1.5.10]</h2>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="b0f27814b9"><code>b0f27814</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8776">#8776</a>)
Fix <code>fail to rename app</code> when using <code>--profile
dev</code>.</li>
<li><a
href="0bff8c325d"><code>0bff8c32</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8697">#8697</a>)
Fix the built-in dev server failing to serve files when URL had queries
<code>?</code> and other url components.</li>
<li><a
href="67d7877f27"><code>67d7877f</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8520">#8520</a>)
The cli now also watches cargo workspace members if the tauri folder is
the workspace root.</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li>Upgraded to <code>tauri-cli@1.5.10</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b735b6799f"><code>b735b67</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8475">#8475</a>)</li>
<li><a
href="7b5e8712e7"><code>7b5e871</code></a>
ci: update msrv test and cargo.lock</li>
<li><a
href="2421073576"><code>2421073</code></a>
fix(macos): use BTreeMap for windows map to prevent crash on idle (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8117">#8117</a>)</li>
<li><a
href="510b62261c"><code>510b622</code></a>
chore(core): Add missing changefile for <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8546">#8546</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8822">#8822</a>)</li>
<li><a
href="b0f27814b9"><code>b0f2781</code></a>
fix(cli): map <code>--profile dev</code> to <code>debug</code> folder
when finding executable (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8776">#8776</a>)</li>
<li><a
href="cc3d8e7731"><code>cc3d8e7</code></a>
fix(core): Command::output suspend while wait for response (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8539">#8539</a>)</li>
<li><a
href="8ce51cec3b"><code>8ce51ce</code></a>
feat: retain cli args when relaunching after update, closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/7402">#7402</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/7718">#7718</a>)</li>
<li><a
href="0bff8c325d"><code>0bff8c3</code></a>
fix(cli): Ignore query parameter in dev server (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8697">#8697</a>)</li>
<li><a
href="a9b2c0625c"><code>a9b2c06</code></a>
chore: Commit Cargo.lock (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8586">#8586</a>)</li>
<li><a
href="7aa30dec85"><code>7aa30de</code></a>
feat: Add Section, Priority and Changelog options (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8620">#8620</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tauri-apps/tauri/compare/@tauri-apps/cli-v1.5.9...@tauri-apps/cli-v1.5.10">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@tauri-apps/cli&package-manager=npm_and_yarn&previous-version=1.5.9&new-version=1.5.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 21:19:58 -05:00
dependabot[bot] fb33974232
build(deps): bump the backend-deps group in /src-tauri with 3 updates (#438)
Bumps the backend-deps group in /src-tauri with 3 updates:
[chrono](https://github.com/chronotope/chrono),
[thiserror](https://github.com/dtolnay/thiserror) and
[wgpu](https://github.com/gfx-rs/wgpu).

Updates `chrono` from 0.4.33 to 0.4.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chronotope/chrono/releases">chrono's
releases</a>.</em></p>
<blockquote>
<h2>0.4.34</h2>
<h1>Notable changes</h1>
<ul>
<li>In chrono 0.4.34 we finished the work to make all methods const
where doing so is supported by rust 1.61.</li>
<li>We renamed the <code>Duration</code> type to <code>TimeDelta</code>.
This removes the confusion between chrono's type and the later
<code>Duration</code> type in the standard library. It will remain
available under the old name as a type alias for compatibility.</li>
<li>The Windows implementation of <code>Local</code> is rewritten. The
new version avoids panics when the date is outside of the range
supported by windows (the years 1601 to 30828), and gives more accurate
results during DST transitions.</li>
<li>The <code>Display</code> format of <code>TimeDelta</code> is
modified to conform better to ISO 8601. Previously it converted all
values greater than 24 hours to a value with days. This is not correct,
as doing so changes the duration from an 'accurate' to a 'nominal'
representation to use ISO 8601 terms.</li>
</ul>
<h1>Fixes</h1>
<ul>
<li>Add missing range check in <code>TimeDelta::milliseconds</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1385">#1385</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
<li>Remove check for <code>DurationExceedsTimestamp</code> in
<code>DurationRound</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1403">#1403</a>,
thanks <a
href="https://github.com/joroKr21"><code>@​joroKr21</code></a>)</li>
<li>Fix localized formatting with <code>%X</code> ((<a
href="https://redirect.github.com/chronotope/pure-rust-locales/pull/12">chronotope/pure-rust-locales#12</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1420">#1420</a>)</li>
<li>Windows: base implementation on
<code>GetTimeZoneInformationForYear</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1017">#1017</a>)</li>
</ul>
<h1>Additions</h1>
<ul>
<li>Add <code>TimeDelta::try_milliseconds</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1385">#1385</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
<li>Add <code>TimeDelta::new</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1337">#1337</a>)</li>
<li>Add <code>StrftimeItems::{parse, parse_to_owned}</code> and more
documentation (<a
href="https://redirect.github.com/chronotope/chrono/issues/1184">#1184</a>)</li>
<li>More standard traits and documentation for
<code>format::Locale</code> (via <a
href="https://redirect.github.com/chronotope/pure-rust-locales/pull/8">chronotope/pure-rust-locales#8</a>)</li>
</ul>
<h1>Changes</h1>
<ul>
<li>Rename <code>Duration</code> to <code>TimeDelta</code>, add type
alias (<a
href="https://redirect.github.com/chronotope/chrono/issues/1406">#1406</a>)</li>
<li>Make <code>TimeDelta</code> methods const (<a
href="https://redirect.github.com/chronotope/chrono/issues/1337">#1337</a>)</li>
<li>Make remaining methods of <code>NaiveDate</code>,
<code>NaiveWeek</code>, <code>NaiveTime</code> and
<code>NaiveDateTime</code> const where possible (<a
href="https://redirect.github.com/chronotope/chrono/issues/1337">#1337</a>)</li>
<li>Make methods on <code>DateTime</code> const where possible (<a
href="https://redirect.github.com/chronotope/chrono/issues/1400">#1400</a>)</li>
<li>Make <code>Display</code> format of <code>TimeDelta</code> conform
better to ISO 8601 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1328">#1328</a>)</li>
</ul>
<h1>Documentation</h1>
<ul>
<li>Fix the formatting of <code>timestamp_micros</code>'s Example doc
(<a
href="https://redirect.github.com/chronotope/chrono/issues/1338">#1338</a>
via <a
href="https://redirect.github.com/chronotope/chrono/issues/1386">#1386</a>,
thanks <a
href="https://github.com/emikitas"><code>@​emikitas</code></a>)</li>
<li>Specify branch for GitHub Actions badge and fix link (<a
href="https://redirect.github.com/chronotope/chrono/issues/1388">#1388</a>)</li>
<li>Don't mention some deprecated methods in docs (<a
href="https://redirect.github.com/chronotope/chrono/issues/1395">#1395</a>)</li>
<li>Remove stray documentation from main (<a
href="https://redirect.github.com/chronotope/chrono/issues/1397">#1397</a>)</li>
<li>Improved documentation of <code>TimeDelta</code> constructors (<a
href="https://redirect.github.com/chronotope/chrono/issues/1385">#1385</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
</ul>
<h1>Internal</h1>
<ul>
<li>Switch branch names: 0.4.x releases are the <code>main</code>
branch, work on 0.5 happens in the <code>0.5.x</code> branch (<a
href="https://redirect.github.com/chronotope/chrono/issues/1390">#1390</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1402">#1402</a>).</li>
<li>Don't use deprecated method in <code>impl Arbitrary for
DateTime</code> and set up CI test (<a
href="https://redirect.github.com/chronotope/chrono/issues/1336">#1336</a>)</li>
<li>Remove workaround for Rust &lt; 1.61 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1393">#1393</a>)</li>
<li>Bump <code>codecov/codecov-action</code> from 3 to 4 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1404">#1404</a>)</li>
<li>Remove partial support for handling <code>-0000</code> offset (<a
href="https://redirect.github.com/chronotope/chrono/issues/1411">#1411</a>)</li>
<li>Move <code>TOO_LONG</code> error out of <code>parse_internal</code>
(<a
href="https://redirect.github.com/chronotope/chrono/issues/1419">#1419</a>)</li>
</ul>
<p>Thanks to all contributors on behalf of the chrono team, <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/pitdicker"><code>@​pitdicker</code></a>!</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="dc19606265"><code>dc19606</code></a>
Prepare 0.4.34</li>
<li><a
href="58a2149a8e"><code>58a2149</code></a>
Add <code>StrftimeItems::parse_to_owned</code></li>
<li><a
href="59eeb8c537"><code>59eeb8c</code></a>
Add <code>StrftimeItems::parse</code></li>
<li><a
href="79de122615"><code>79de122</code></a>
Add more documentation to
<code>StrftimeItems::new_with_locale</code></li>
<li><a
href="5b7cf85c53"><code>5b7cf85</code></a>
Add more documentation to <code>StrftimeItems::new</code></li>
<li><a
href="be6af79ae5"><code>be6af79</code></a>
Make <code>Display</code> format of <code>TimeDelta</code> conform
better to ISO 8601</li>
<li><a
href="d1cf0e9393"><code>d1cf0e9</code></a>
Add test for issue 651</li>
<li><a
href="0ef34e4da3"><code>0ef34e4</code></a>
Extend test to more distant dates</li>
<li><a
href="fc67f3e6e0"><code>fc67f3e</code></a>
Remove obsolete test</li>
<li><a
href="acb693ac64"><code>acb693a</code></a>
Windows: rewrite using <code>GetTimeZoneInformationForYear</code></li>
<li>Additional commits viewable in <a
href="https://github.com/chronotope/chrono/compare/v0.4.33...v0.4.34">compare
view</a></li>
</ul>
</details>
<br />

Updates `thiserror` from 1.0.56 to 1.0.57
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/thiserror/releases">thiserror's
releases</a>.</em></p>
<blockquote>
<h2>1.0.57</h2>
<ul>
<li>Generate more efficient <code>Display</code> impl for error message
which do not contain any interpolated value (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/286">#286</a>,
thanks <a
href="https://github.com/nyurik"><code>@​nyurik</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1d106b169c"><code>1d106b1</code></a>
Release 1.0.57</li>
<li><a
href="8a5c4d1b76"><code>8a5c4d1</code></a>
Use write_str when args only consists of trailing comma</li>
<li><a
href="f790bee2a4"><code>f790bee</code></a>
Phrase flag in terms of whether core::fmt machinery is required</li>
<li><a
href="d43b759e3a"><code>d43b759</code></a>
Ignore needless_raw_string_hashes pedantic clippy lint in test</li>
<li><a
href="d09c418295"><code>d09c418</code></a>
Touch up PR 286</li>
<li><a
href="097251d2f5"><code>097251d</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/286">#286</a>
from nyurik/litstr</li>
<li><a
href="cd79876fe8"><code>cd79876</code></a>
optimize by avoiding second fmt.value() call</li>
<li><a
href="d7e738e1d8"><code>d7e738e</code></a>
Optimize simple literals for Display::fmt</li>
<li><a
href="0717de3f50"><code>0717de3</code></a>
Update ui test suite to nightly-2024-02-08</li>
<li><a
href="c7c75470ec"><code>c7c7547</code></a>
Update ui test suite to nightly-2024-01-31</li>
<li>See full diff in <a
href="https://github.com/dtolnay/thiserror/compare/1.0.56...1.0.57">compare
view</a></li>
</ul>
</details>
<br />

Updates `wgpu` from 0.18.0 to 0.19.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/releases">wgpu's
releases</a>.</em></p>
<blockquote>
<h2>v0.19.1</h2>
<p>This release includes <code>wgpu</code> and <code>wgpu-hal</code>.
The rest of the crates are unchanged since 0.19.0.</p>
<h3>Bug Fixes</h3>
<h4>DX12</h4>
<ul>
<li>Properly register all swapchain buffers to prevent error on surface
present. By <a
href="https://github.com/dtzxporter"><code>@​dtzxporter</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5091">#5091</a></li>
<li>Check for extra null states when creating resources. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5096">#5096</a></li>
<li>Fix depth-only and stencil-only views causing crashes. By <a
href="https://github.com/teoxoy"><code>@​teoxoy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5100">#5100</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>In Surface::configure and Surface::present on Windows, fix the
current GL context not being unset when releasing the lock that guards
access to making the context current. This was causing other threads to
panic when trying to make the context current. By <a
href="https://github.com/Imberflur"><code>@​Imberflur</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5087">#5087</a>.</li>
</ul>
<h4>WebGPU</h4>
<ul>
<li>Improve error message when compiling WebGPU backend on wasm without
the <code>web_sys_unstable_apis</code> set. By <a
href="https://github.com/rukai"><code>@​rukai</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5104">#5104</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document Wayland specific behavior related to
<code>SurfaceTexture::present</code>. By <a
href="https://github.com/i509VCB"><code>@​i509VCB</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5093">#5093</a>.</li>
</ul>
<h2>v0.19.0</h2>
<p>This release includes:</p>
<ul>
<li><code>wgpu</code></li>
<li><code>wgpu-core</code></li>
<li><code>wgpu-hal</code></li>
<li><code>wgpu-types</code></li>
<li><code>wgpu-info</code></li>
<li><code>naga</code> (skipped from 0.14 to 0.19)</li>
<li><code>naga-cli</code> (skipped from 0.14 to 0.19)</li>
<li><code>d3d12</code> (skipped from 0.7 to 0.19)</li>
</ul>
<h3>Improved Multithreading through internal use of Reference
Counting</h3>
<p>Large refactoring of wgpu’s internals aiming at reducing lock
contention, and providing better performance when using wgpu on multiple
threads.</p>
<p><a href="https://gfx-rs.github.io/2023/11/24/arcanization.html">Check
the blog post!</a></p>
<p>By <a href="https://github.com/gents83"><code>@​gents83</code></a> in
<a href="https://redirect.github.com/gfx-rs/wgpu/pull/3626">#3626</a>
and thanks also to <a
href="https://github.com/jimblandy"><code>@​jimblandy</code></a>, <a
href="https://github.com/nical"><code>@​nical</code></a>, <a
href="https://github.com/Wumpf"><code>@​Wumpf</code></a>, <a
href="https://github.com/Elabajaba"><code>@​Elabajaba</code></a> &amp;
<a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a></p>
<h3>All Public Dependencies are Re-Exported</h3>
<p>All of wgpu's public dependencies are now re-exported at the top
level so that users don't need to take their own dependencies.
This includes:</p>
<ul>
<li>wgpu-core</li>
<li>wgpu-hal</li>
<li>naga</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/blob/v0.19.1/CHANGELOG.md">wgpu's
changelog</a>.</em></p>
<blockquote>
<h2>v0.19.1 (2024-01-21)</h2>
<h3>Bug Fixes</h3>
<h4>DX12</h4>
<ul>
<li>Properly register all swapchain buffers to prevent error on surface
present. By <a
href="https://github.com/dtzxporter"><code>@​dtzxporter</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5091">#5091</a></li>
<li>Check for extra null states when creating resources. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5096">#5096</a></li>
<li>Fix depth-only and stencil-only views causing crashes. By <a
href="https://github.com/teoxoy"><code>@​teoxoy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5100">#5100</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>In Surface::configure and Surface::present on Windows, fix the
current GL context not being unset when releasing the lock that guards
access to making the context current. This was causing other threads to
panic when trying to make the context current. By <a
href="https://github.com/Imberflur"><code>@​Imberflur</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5087">#5087</a>.</li>
</ul>
<h4>WebGPU</h4>
<ul>
<li>Improve error message when compiling WebGPU backend on wasm without
the <code>web_sys_unstable_apis</code> set. By <a
href="https://github.com/rukai"><code>@​rukai</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5104">#5104</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document Wayland specific behavior related to
<code>SurfaceTexture::present</code>. By <a
href="https://github.com/i509VCB"><code>@​i509VCB</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5092">#5092</a>.</li>
</ul>
<h2>v0.19.0 (2024-01-17)</h2>
<p>This release includes:</p>
<ul>
<li><code>wgpu</code></li>
<li><code>wgpu-core</code></li>
<li><code>wgpu-hal</code></li>
<li><code>wgpu-types</code></li>
<li><code>wgpu-info</code></li>
<li><code>naga</code> (skipped from 0.14 to 0.19)</li>
<li><code>naga-cli</code> (skipped from 0.14 to 0.19)</li>
<li><code>d3d12</code> (skipped from 0.7 to 0.19)</li>
</ul>
<h3>Improved Multithreading through internal use of Reference
Counting</h3>
<p>Large refactoring of wgpu’s internals aiming at reducing lock
contention, and providing better performance when using wgpu on multiple
threads.</p>
<p><a href="https://gfx-rs.github.io/2023/11/24/arcanization.html">Check
the blog post!</a></p>
<p>By <a href="https://github.com/gents83"><code>@​gents83</code></a> in
<a href="https://redirect.github.com/gfx-rs/wgpu/pull/3626">#3626</a>
and thanks also to <a
href="https://github.com/jimblandy"><code>@​jimblandy</code></a>, <a
href="https://github.com/nical"><code>@​nical</code></a>, <a
href="https://github.com/Wumpf"><code>@​Wumpf</code></a>, <a
href="https://github.com/Elabajaba"><code>@​Elabajaba</code></a> &amp;
<a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a></p>
<h3>All Public Dependencies are Re-Exported</h3>
<p>All of wgpu's public dependencies are now re-exported at the top
level so that users don't need to take their own dependencies.
This includes:</p>
<ul>
<li>wgpu-core</li>
<li>wgpu-hal</li>
<li>naga</li>
<li>raw_window_handle</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b8a8ff6e44"><code>b8a8ff6</code></a>
Versions</li>
<li><a
href="6e95491c9d"><code>6e95491</code></a>
Update changelog</li>
<li><a
href="ec48ee3ba6"><code>ec48ee3</code></a>
Document Wayland specifics related to SurfaceTexture::present (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5093">#5093</a>)</li>
<li><a
href="f9454d1565"><code>f9454d1</code></a>
Error on missing web_sys_unstable_apis (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5104">#5104</a>)</li>
<li><a
href="e1481b656a"><code>e1481b6</code></a>
Make sure to unset current context in wgl Surface::configure/present (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5087">#5087</a>)</li>
<li><a
href="c094e625d0"><code>c094e62</code></a>
[d3d12] use plane 1 for stencil only views (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5100">#5100</a>)</li>
<li><a
href="a0db2a2355"><code>a0db2a2</code></a>
Make sure to copy all of the buffers into the resource array for dx12.
(<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5091">#5091</a>)</li>
<li><a
href="ba74217c89"><code>ba74217</code></a>
d3d12: Null check the out ComPtr of a few creation functions (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5096">#5096</a>)</li>
<li><a
href="484457d959"><code>484457d</code></a>
Fix wgpu-hal build</li>
<li><a
href="7eac4cec5b"><code>7eac4ce</code></a>
Fix naga release</li>
<li>Additional commits viewable in <a
href="https://github.com/gfx-rs/wgpu/compare/v0.18.0...v0.19.1">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-17 12:29:42 -05:00
dependabot[bot] a505b43d00
build(deps): bump the frontend-deps group with 5 updates (#439)
Bumps the frontend-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
|
[@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver)
| `7.5.6` | `7.5.7` |
| [flowbite-svelte](https://github.com/themesberg/flowbite-svelte) |
`0.44.22` | `0.44.23` |
| [postcss](https://github.com/postcss/postcss) | `8.4.34` | `8.4.35` |
| [postcss-load-config](https://github.com/postcss/postcss-load-config)
| `5.0.2` | `5.0.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.0.12` | `5.1.1` |

Updates `@types/semver` from 7.5.6 to 7.5.7
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare
view</a></li>
</ul>
</details>
<br />

Updates `flowbite-svelte` from 0.44.22 to 0.44.23
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite-svelte/blob/main/CHANGELOG.md">flowbite-svelte's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.22...v0.44.23">0.44.23</a>
(2024-02-08)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>add focus:ring-0 to menu btns (<a
href="b81c875a54">b81c875</a>)</li>
<li>engines npm to pnpm 8.0.0 in package.json (<a
href="6770c92b03">6770c92</a>)</li>
<li>playwright version in workflows (<a
href="046b908346">046b908</a>)</li>
<li>remove focus from DarkMode (<a
href="22c48db002">22c48db</a>)</li>
<li>spinner typings, docs (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1151">#1151</a>)
(<a
href="ed17997e61">ed17997</a>)</li>
<li>workflow pnpm to latest (<a
href="a1358fe577">a1358fe</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9a1695b2e2"><code>9a1695b</code></a>
chore(release): 0.44.23</li>
<li><a
href="794c2950a0"><code>794c295</code></a>
chore: format</li>
<li><a
href="b81c875a54"><code>b81c875</code></a>
fix: add focus:ring-0 to menu btns</li>
<li><a
href="046b908346"><code>046b908</code></a>
fix: playwright version in workflows</li>
<li><a
href="22c48db002"><code>22c48db</code></a>
fix: remove focus from DarkMode</li>
<li><a
href="dedf65d966"><code>dedf65d</code></a>
chore: dependencies update</li>
<li><a
href="7ca13e3e00"><code>7ca13e3</code></a>
docs: remove unnecessary Input component import from left placement
drawer ex...</li>
<li><a
href="844d690b80"><code>844d690</code></a>
docs: typo fix svete to svelte (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1223">#1223</a>)</li>
<li><a
href="217415b10b"><code>217415b</code></a>
Make P react to prop changes (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1234">#1234</a>)</li>
<li><a
href="661556c9d1"><code>661556c</code></a>
card size none (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1221">#1221</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.22...v0.44.23">compare
view</a></li>
</ul>
</details>
<br />

Updates `postcss` from 8.4.34 to 8.4.35
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/releases">postcss's
releases</a>.</em></p>
<blockquote>
<h2>8.4.35</h2>
<ul>
<li>Avoid <code>!</code> in <code>node.parent.nodes</code> type.</li>
<li>Allow to pass <code>undefined</code> to node adding method to
simplify types.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's
changelog</a>.</em></p>
<blockquote>
<h2>8.4.35</h2>
<ul>
<li>Avoid <code>!</code> in <code>node.parent.nodes</code> type.</li>
<li>Allow to pass <code>undefined</code> to node adding method to
simplify types.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="edda95ec4a"><code>edda95e</code></a>
Release 8.4.35 version</li>
<li><a
href="612f3602e7"><code>612f360</code></a>
Merge pull request <a
href="https://redirect.github.com/postcss/postcss/issues/1924">#1924</a>
from postcss/refactor/types</li>
<li><a
href="5e7449fe7e"><code>5e7449f</code></a>
Fix node.parent.nodes type</li>
<li><a
href="65075dfeeb"><code>65075df</code></a>
Allow to pass undefined to adding methods to simplify type check</li>
<li>See full diff in <a
href="https://github.com/postcss/postcss/compare/8.4.34...8.4.35">compare
view</a></li>
</ul>
</details>
<br />

Updates `postcss-load-config` from 5.0.2 to 5.0.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss-load-config/blob/main/CHANGELOG.md">postcss-load-config's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/postcss/postcss-load-config/compare/v5.0.2...v5.0.3">5.0.3</a>
(2024-02-08)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Fixed update of ESM configs (<a
href="https://redirect.github.com/postcss/postcss-load-config/pull/259">#259</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="865523080f"><code>8655230</code></a>
chore(release): 5.0.3</li>
<li><a
href="65905283c5"><code>6590528</code></a>
Update dependencies</li>
<li><a
href="dfc204116e"><code>dfc2041</code></a>
Update CI actions</li>
<li><a
href="3ade20ec4b"><code>3ade20e</code></a>
fix: import cache (<a
href="https://redirect.github.com/postcss/postcss-load-config/issues/259">#259</a>)</li>
<li><a
href="2c42a73471"><code>2c42a73</code></a>
fix: correction of README .sss extension for example (<a
href="https://redirect.github.com/postcss/postcss-load-config/issues/258">#258</a>)</li>
<li>See full diff in <a
href="https://github.com/postcss/postcss-load-config/compare/5.0.2...v5.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.0.12 to 5.1.1
<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@5.1.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@5.1.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
</blockquote>
</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 -->5.1.1 (2024-02-09)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: empty CSS file was output when only .css?url is used (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15846">#15846</a>)
(<a href="https://github.com/vitejs/vite/commit/b2873ac">b2873ac</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15846">#15846</a></li>
<li>fix: skip not only .js but also .mjs manifest entries (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15841">#15841</a>)
(<a href="https://github.com/vitejs/vite/commit/3d860e7">3d860e7</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15841">#15841</a></li>
<li>chore: post 5.1 release edits (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15840">#15840</a>)
(<a href="https://github.com/vitejs/vite/commit/9da6502">9da6502</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15840">#15840</a></li>
</ul>
<h2>5.1.0 (2024-02-08)</h2>
<p>Vite 5.1 is out! Read the announcement blog post at <a
href="https://vitejs.dev/blog/announcing-vite5-1">https://vitejs.dev/blog/announcing-vite5-1</a>!</p>
<ul>
<li>chore: revert <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15746">#15746</a>
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15839">#15839</a>)
(<a href="https://github.com/vitejs/vite/commit/ed875f8">ed875f8</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15746">#15746</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/15839">#15839</a></li>
<li>fix: pass <code>customLogger</code> to
<code>loadConfigFromFile</code> (fix <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15824">#15824</a>)
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15831">#15831</a>)
(<a href="https://github.com/vitejs/vite/commit/55a3427">55a3427</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15824">#15824</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/15831">#15831</a></li>
<li>fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15803">#15803</a>)
(<a href="https://github.com/vitejs/vite/commit/e0a6ef2">e0a6ef2</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15803">#15803</a></li>
<li>refactor: remove <code>vite build --force</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15837">#15837</a>)
(<a href="https://github.com/vitejs/vite/commit/f1a4242">f1a4242</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15837">#15837</a></li>
</ul>
<h2>5.1.0-beta.7 (2024-02-07)</h2>
<ul>
<li>fix: disable fs.cachedChecks for custom watch ignore patterns (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15828">#15828</a>)
(<a href="https://github.com/vitejs/vite/commit/9070be3">9070be3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15828">#15828</a></li>
<li>fix: judge next dirent cache type (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15787">#15787</a>)
(<a href="https://github.com/vitejs/vite/commit/5fbeba3">5fbeba3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15787">#15787</a></li>
<li>fix: scan entries when the root is in node_modules (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15746">#15746</a>)
(<a href="https://github.com/vitejs/vite/commit/c3e83bb">c3e83bb</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15746">#15746</a></li>
<li>fix(config): improved warning when root path includes bad characters
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15761">#15761</a>)
(<a href="https://github.com/vitejs/vite/commit/1c0dc3d">1c0dc3d</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15761">#15761</a></li>
<li>docs: fix typos in CHANGELOG (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15825">#15825</a>)
(<a href="https://github.com/vitejs/vite/commit/3ee4e7b">3ee4e7b</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15825">#15825</a></li>
<li>perf: use transform cache by resolved id (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15785">#15785</a>)
(<a href="https://github.com/vitejs/vite/commit/78d838a">78d838a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15785">#15785</a></li>
<li>chore: release notes (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15777">#15777</a>)
(<a href="https://github.com/vitejs/vite/commit/775bb50">775bb50</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15777">#15777</a></li>
</ul>
<h2>5.1.0-beta.6 (2024-02-01)</h2>
<ul>
<li>feat: experimental Vite Runtime API (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12165">#12165</a>)
(<a href="https://github.com/vitejs/vite/commit/8b3ab07">8b3ab07</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/12165">#12165</a></li>
<li>fix: add ref() and unref() to chokidar.d.ts for typescript build to
work (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15706">#15706</a>)
(<a href="https://github.com/vitejs/vite/commit/6b45037">6b45037</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15706">#15706</a></li>
<li>perf: simplify explicit import mark in import analysis (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15724">#15724</a>)
(<a href="https://github.com/vitejs/vite/commit/2805b2d">2805b2d</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15724">#15724</a></li>
</ul>
<h2>5.1.0-beta.5 (2024-01-27)</h2>
<ul>
<li>fix: do not init optimizer during build (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15727">#15727</a>)
(<a href="https://github.com/vitejs/vite/commit/a08f646">a08f646</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15727">#15727</a></li>
<li>fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15675">#15675</a>)
(<a href="https://github.com/vitejs/vite/commit/4d9363a">4d9363a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15675">#15675</a></li>
</ul>
<h2>5.1.0-beta.4 (2024-01-26)</h2>
<ul>
<li>perf: lazy load rollup during dev (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15621">#15621</a>)
(<a href="https://github.com/vitejs/vite/commit/6f88a90">6f88a90</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15621">#15621</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8e946a1009"><code>8e946a1</code></a>
release: v5.1.1</li>
<li><a
href="b2873ac393"><code>b2873ac</code></a>
fix: empty CSS file was output when only .css?url is used (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15846">#15846</a>)</li>
<li><a
href="3d860e7916"><code>3d860e7</code></a>
fix: skip not only .js but also .mjs manifest entries (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15841">#15841</a>)</li>
<li><a
href="9da6502fe7"><code>9da6502</code></a>
chore: post 5.1 release edits (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15840">#15840</a>)</li>
<li><a
href="3036bef667"><code>3036bef</code></a>
release: v5.1.0</li>
<li><a
href="ed875f88f6"><code>ed875f8</code></a>
chore: revert <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15746">#15746</a>
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15839">#15839</a>)</li>
<li><a
href="e0a6ef2b9e"><code>e0a6ef2</code></a>
fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15803">#15803</a>)</li>
<li><a
href="f1a42429e1"><code>f1a4242</code></a>
refactor: remove <code>vite build --force</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15837">#15837</a>)</li>
<li><a
href="55a3427ef8"><code>55a3427</code></a>
fix: pass <code>customLogger</code> to <code>loadConfigFromFile</code>
(fix <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15824">#15824</a>)
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15831">#15831</a>)</li>
<li><a
href="0f9c72a886"><code>0f9c72a</code></a>
release: v5.1.0-beta.7</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite/commits/v5.1.1/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 <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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-17 12:29:31 -05:00
Tyler Wilding bef44470c6
backend/frontend: add a check for the VCC Runtime on windows (#437)
Fixes #303 by checking for the installation and directing the user to go
install it themselves, avoids complicated installer editing which is
good, i can now pursue getting that translated and switching to NSIS (i
think doing the VCC installation would have been easier with the wix
installer).

However this is also better because it will check when the game is
installed rather than the launcher itself (you could imagine a user
removing the runtime after installing the launcher).

![Screenshot 2024-02-10
170813](https://github.com/open-goal/launcher/assets/13153231/2155819d-400b-41ba-97aa-c5f6c95ce427)
2024-02-10 19:57:23 -05:00
tripp 778527380d
Disk space install requirement check (#406)
Fixes #342

---------

Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
2024-02-10 17:08:46 -05:00
dependabot[bot] 21d3d05575
build(deps): bump the frontend-deps group with 5 updates (#435)
Bumps the frontend-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [semver](https://github.com/npm/node-semver) | `7.5.4` | `7.6.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.33` | `8.4.34` |
| [prettier](https://github.com/prettier/prettier) | `3.2.4` | `3.2.5` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte)
| `4.2.9` | `4.2.10` |
| [unplugin-icons](https://github.com/unplugin/unplugin-icons) |
`0.18.3` | `0.18.5` |

Updates `semver` from 7.5.4 to 7.6.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/npm/node-semver/releases">semver's
releases</a>.</em></p>
<blockquote>
<h2>v7.6.0</h2>
<h2><a
href="https://github.com/npm/node-semver/compare/v7.5.4...v7.6.0">7.6.0</a>
(2024-01-31)</h2>
<h3>Features</h3>
<ul>
<li><a
href="a7ab13a462"><code>a7ab13a</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/671">#671</a>
preserve pre-release and build parts of a version on coerce (<a
href="https://redirect.github.com/npm/node-semver/issues/671">#671</a>)
(<a href="https://github.com/madtisa"><code>@​madtisa</code></a>,
madtisa, <a
href="https://github.com/wraithgar"><code>@​wraithgar</code></a>)</li>
</ul>
<h3>Chores</h3>
<ul>
<li><a
href="816c7b2cbf"><code>816c7b2</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/667">#667</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="0bd24d943c"><code>0bd24d9</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/667">#667</a>
bump <code>@​npmcli/template-oss</code> from 4.21.1 to 4.21.3 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="e521932f11"><code>e521932</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/652">#652</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="8873991808"><code>8873991</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/652">#652</a>
chore: chore: postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="f317dc8689"><code>f317dc8</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/652">#652</a>
bump <code>@​npmcli/template-oss</code> from 4.19.0 to 4.21.0 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="7303db1fe5"><code>7303db1</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/658">#658</a>
add clean() test for build metadata (<a
href="https://redirect.github.com/npm/node-semver/issues/658">#658</a>)
(<a
href="https://github.com/jethrodaniel"><code>@​jethrodaniel</code></a>)</li>
<li><a
href="6240d75a7c"><code>6240d75</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/656">#656</a>
add missing quotes in README.md (<a
href="https://redirect.github.com/npm/node-semver/issues/656">#656</a>)
(<a href="https://github.com/zyxkad"><code>@​zyxkad</code></a>)</li>
<li><a
href="14d263faa1"><code>14d263f</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/625">#625</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="7c34e1ac1b"><code>7c34e1a</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/625">#625</a>
bump <code>@​npmcli/template-oss</code> from 4.18.1 to 4.19.0 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="123e0b0328"><code>123e0b0</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/622">#622</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="737d5e1cf1"><code>737d5e1</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/622">#622</a>
bump <code>@​npmcli/template-oss</code> from 4.18.0 to 4.18.1 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="cce61804ba"><code>cce6180</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/598">#598</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="b914a3d0d2"><code>b914a3d</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/598">#598</a>
bump <code>@​npmcli/template-oss</code> from 4.17.0 to 4.18.0 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/npm/node-semver/blob/main/CHANGELOG.md">semver's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/npm/node-semver/compare/v7.5.4...v7.6.0">7.6.0</a>
(2024-01-31)</h2>
<h3>Features</h3>
<ul>
<li><a
href="a7ab13a462"><code>a7ab13a</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/671">#671</a>
preserve pre-release and build parts of a version on coerce (<a
href="https://redirect.github.com/npm/node-semver/issues/671">#671</a>)
(<a href="https://github.com/madtisa"><code>@​madtisa</code></a>,
madtisa, <a
href="https://github.com/wraithgar"><code>@​wraithgar</code></a>)</li>
</ul>
<h3>Chores</h3>
<ul>
<li><a
href="816c7b2cbf"><code>816c7b2</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/667">#667</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="0bd24d943c"><code>0bd24d9</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/667">#667</a>
bump <code>@​npmcli/template-oss</code> from 4.21.1 to 4.21.3 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="e521932f11"><code>e521932</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/652">#652</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="8873991808"><code>8873991</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/652">#652</a>
chore: chore: postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="f317dc8689"><code>f317dc8</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/652">#652</a>
bump <code>@​npmcli/template-oss</code> from 4.19.0 to 4.21.0 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="7303db1fe5"><code>7303db1</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/658">#658</a>
add clean() test for build metadata (<a
href="https://redirect.github.com/npm/node-semver/issues/658">#658</a>)
(<a
href="https://github.com/jethrodaniel"><code>@​jethrodaniel</code></a>)</li>
<li><a
href="6240d75a7c"><code>6240d75</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/656">#656</a>
add missing quotes in README.md (<a
href="https://redirect.github.com/npm/node-semver/issues/656">#656</a>)
(<a href="https://github.com/zyxkad"><code>@​zyxkad</code></a>)</li>
<li><a
href="14d263faa1"><code>14d263f</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/625">#625</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="7c34e1ac1b"><code>7c34e1a</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/625">#625</a>
bump <code>@​npmcli/template-oss</code> from 4.18.1 to 4.19.0 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="123e0b0328"><code>123e0b0</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/622">#622</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="737d5e1cf1"><code>737d5e1</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/622">#622</a>
bump <code>@​npmcli/template-oss</code> from 4.18.0 to 4.18.1 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li><a
href="cce61804ba"><code>cce6180</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/598">#598</a>
postinstall for dependabot template-oss PR (<a
href="https://github.com/lukekarrys"><code>@​lukekarrys</code></a>)</li>
<li><a
href="b914a3d0d2"><code>b914a3d</code></a>
<a href="https://redirect.github.com/npm/node-semver/pull/598">#598</a>
bump <code>@​npmcli/template-oss</code> from 4.17.0 to 4.18.0 (<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="377f709718"><code>377f709</code></a>
chore: release 7.6.0 (<a
href="https://redirect.github.com/npm/node-semver/issues/661">#661</a>)</li>
<li><a
href="a7ab13a462"><code>a7ab13a</code></a>
feat: preserve pre-release and build parts of a version on coerce (<a
href="https://redirect.github.com/npm/node-semver/issues/671">#671</a>)</li>
<li><a
href="816c7b2cbf"><code>816c7b2</code></a>
chore: postinstall for dependabot template-oss PR</li>
<li><a
href="0bd24d943c"><code>0bd24d9</code></a>
chore: bump <code>@​npmcli/template-oss</code> from 4.21.1 to
4.21.3</li>
<li><a
href="e521932f11"><code>e521932</code></a>
chore: postinstall for dependabot template-oss PR</li>
<li><a
href="8873991808"><code>8873991</code></a>
chore: chore: chore: postinstall for dependabot template-oss PR</li>
<li><a
href="f317dc8689"><code>f317dc8</code></a>
chore: bump <code>@​npmcli/template-oss</code> from 4.19.0 to
4.21.0</li>
<li><a
href="7303db1fe5"><code>7303db1</code></a>
chore: add clean() test for build metadata (<a
href="https://redirect.github.com/npm/node-semver/issues/658">#658</a>)</li>
<li><a
href="6240d75a7c"><code>6240d75</code></a>
chore: add missing quotes in README.md (<a
href="https://redirect.github.com/npm/node-semver/issues/656">#656</a>)</li>
<li><a
href="14d263faa1"><code>14d263f</code></a>
chore: postinstall for dependabot template-oss PR</li>
<li>Additional commits viewable in <a
href="https://github.com/npm/node-semver/compare/v7.5.4...v7.6.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `postcss` from 8.4.33 to 8.4.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/releases">postcss's
releases</a>.</em></p>
<blockquote>
<h2>8.4.34</h2>
<ul>
<li>Fixed <code>AtRule#nodes</code> type (by <a
href="https://github.com/tim-we"><code>@​tim-we</code></a>).</li>
<li>Cleaned up code (by <a
href="https://github.com/DrKiraDmitry"><code>@​DrKiraDmitry</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's
changelog</a>.</em></p>
<blockquote>
<h2>8.4.34</h2>
<ul>
<li>Fixed <code>AtRule#nodes</code> type (by Tim Weißenfels).</li>
<li>Cleaned up code (by Dmitry Kirillov).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="477b3bbb9d"><code>477b3bb</code></a>
Release 8.4.34 version</li>
<li><a
href="25af11752f"><code>25af117</code></a>
Update dependencies</li>
<li><a
href="bb0314a41f"><code>bb0314a</code></a>
Merge pull request <a
href="https://redirect.github.com/postcss/postcss/issues/1922">#1922</a>
from tim-we/improve-at-rule-types</li>
<li><a
href="9dd5a9337e"><code>9dd5a93</code></a>
Fix at-rule test</li>
<li><a
href="8322d112e8"><code>8322d11</code></a>
Fix visitor test</li>
<li><a
href="ee7fcd4275"><code>ee7fcd4</code></a>
Fix Document#nodes</li>
<li><a
href="5e7dde77f8"><code>5e7dde7</code></a>
Remove whitespaces</li>
<li><a
href="8fda920523"><code>8fda920</code></a>
Add unit test</li>
<li><a
href="b787a649d8"><code>b787a64</code></a>
Remove whitespaces</li>
<li><a
href="e288c8de21"><code>e288c8d</code></a>
Update AtRule#nodes documentation</li>
<li>Additional commits viewable in <a
href="https://github.com/postcss/postcss/compare/8.4.33...8.4.34">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier` from 3.2.4 to 3.2.5
<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.2.5</h2>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#325">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.2.5</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.2.4...3.2.5">diff</a></p>
<h4>Support Angular inline styles as single template literal (<a
href="https://redirect.github.com/prettier/prettier/pull/15968">#15968</a>
by <a
href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a>)</h4>
<p><a
href="https://blog.angular.io/introducing-angular-v17-4d7033312e4b">Angular
v17</a> supports single string inline styles.</p>
<!-- raw HTML omitted -->
<pre lang="ts"><code>// Input
@Component({
  template: `&lt;div&gt;...&lt;/div&gt;`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}
<p>// Prettier 3.2.4
<a href="https://github.com/Component"><code>@​Component</code></a>({
template: <code>&amp;lt;div&amp;gt;...&amp;lt;/div&amp;gt;</code>,
styles: <code>h1 { color: blue; }</code>,
})
export class AppComponent {}</p>
<p>// Prettier 3.2.5
<a href="https://github.com/Component"><code>@​Component</code></a>({
template: <code>&amp;lt;div&amp;gt;...&amp;lt;/div&amp;gt;</code>,
styles: <code>h1 { color: blue; }</code>,
})
export class AppComponent {}</p>
<p></code></pre></p>
<h4>Unexpected embedded formatting for Angular template (<a
href="https://redirect.github.com/prettier/prettier/pull/15969">#15969</a>
by <a href="https://github.com/JounQin"><code>@​JounQin</code></a>)</h4>
<p>Computed template should not be considered as Angular component
template</p>
<!-- raw HTML omitted -->
<pre lang="ts"><code>// Input
const template = &quot;foobar&quot;;
<p><a href="https://github.com/Component"><code>@​Component</code></a>({
[template]: <code>&amp;lt;h1&amp;gt;{{ hello
}}&amp;lt;/h1&amp;gt;</code>,
})
export class AppComponent {}
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="7142cf354c"><code>7142cf3</code></a>
Release 3.2.5</li>
<li><a
href="8cbee2e217"><code>8cbee2e</code></a>
chore(deps): update glimmer to v0.88.1 (<a
href="https://redirect.github.com/prettier/prettier/issues/15991">#15991</a>)</li>
<li><a
href="45baee061c"><code>45baee0</code></a>
chore(deps): update dependency magic-string to v0.30.6 (<a
href="https://redirect.github.com/prettier/prettier/issues/16022">#16022</a>)</li>
<li><a
href="9fb32a1a6b"><code>9fb32a1</code></a>
Minor refactor to property print (<a
href="https://redirect.github.com/prettier/prettier/issues/15924">#15924</a>)</li>
<li><a
href="08f19401e4"><code>08f1940</code></a>
Update install script for husky v9 (<a
href="https://redirect.github.com/prettier/prettier/issues/16000">#16000</a>)</li>
<li><a
href="6d0b1d2a93"><code>6d0b1d2</code></a>
Update yarn to v4.1.0 (<a
href="https://redirect.github.com/prettier/prettier/issues/16021">#16021</a>)</li>
<li><a
href="c8ba8dbca1"><code>c8ba8db</code></a>
chore(deps): update dependency <code>@​angular/compiler</code> to
v17.1.2 (<a
href="https://redirect.github.com/prettier/prettier/issues/16018">#16018</a>)</li>
<li><a
href="e2250ec688"><code>e2250ec</code></a>
chore(deps): update typescript-eslint to v6.20.0 (<a
href="https://redirect.github.com/prettier/prettier/issues/16015">#16015</a>)</li>
<li><a
href="02865f6cc7"><code>02865f6</code></a>
chore(deps): update dependency npm-run-all2 to v6.1.2 (<a
href="https://redirect.github.com/prettier/prettier/issues/16017">#16017</a>)</li>
<li><a
href="014ee5d474"><code>014ee5d</code></a>
chore(deps): update dependency hermes-parser to v0.19.0 (<a
href="https://redirect.github.com/prettier/prettier/issues/16014">#16014</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/prettier/prettier/compare/3.2.4...3.2.5">compare
view</a></li>
</ul>
</details>
<br />

Updates `svelte` from 4.2.9 to 4.2.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/releases">svelte's
releases</a>.</em></p>
<blockquote>
<h2>svelte@4.2.10</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: add <code>scrollend</code> event type (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10336">#10336</a>)</p>
</li>
<li>
<p>fix: add <code>fetchpriority</code> attribute type (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10390">#10390</a>)</p>
</li>
<li>
<p>fix: Add <code>miter-clip</code> and <code>arcs</code> to
<code>stroke-linejoin</code> attribute (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10377">#10377</a>)</p>
</li>
<li>
<p>fix: make inline doc links valid (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10366">#10366</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/blob/svelte@4.2.10/packages/svelte/CHANGELOG.md">svelte's
changelog</a>.</em></p>
<blockquote>
<h2>4.2.10</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: add <code>scrollend</code> event type (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10336">#10336</a>)</p>
</li>
<li>
<p>fix: add <code>fetchpriority</code> attribute type (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10390">#10390</a>)</p>
</li>
<li>
<p>fix: Add <code>miter-clip</code> and <code>arcs</code> to
<code>stroke-linejoin</code> attribute (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10377">#10377</a>)</p>
</li>
<li>
<p>fix: make inline doc links valid (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10366">#10366</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d5e460768c"><code>d5e4607</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10340">#10340</a>)</li>
<li><a
href="2d7884aafb"><code>2d7884a</code></a>
fix: add <code>fetchpriority</code> to <code>script</code> and
<code>link</code> tags (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10403">#10403</a>)</li>
<li><a
href="c15e021e22"><code>c15e021</code></a>
fix: add fetchpriority to image attrs (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10390">#10390</a>)</li>
<li><a
href="f834b6eb55"><code>f834b6e</code></a>
fix: Add <code>miter-clip</code> and <code>arcs</code> to
<code>stroke-linejoin</code> attribute (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10377">#10377</a>)</li>
<li><a
href="2cc251003a"><code>2cc2510</code></a>
fix: make inline doc links valid (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10366">#10366</a>)</li>
<li><a
href="f2c2490a68"><code>f2c2490</code></a>
fix: add <code>scrollend</code> event type (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10336">#10336</a>)</li>
<li><a
href="452dc4ac9b"><code>452dc4a</code></a>
work around acorn types (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10301">#10301</a>)</li>
<li><a
href="4d8ce93d2e"><code>4d8ce93</code></a>
update discloseVersion docs (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10300">#10300</a>)</li>
<li>See full diff in <a
href="https://github.com/sveltejs/svelte/commits/svelte@4.2.10/packages/svelte">compare
view</a></li>
</ul>
</details>
<br />

Updates `unplugin-icons` from 0.18.3 to 0.18.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/unplugin/unplugin-icons/releases">unplugin-icons's
releases</a>.</em></p>
<blockquote>
<h2>v0.18.5</h2>
<p><em>No significant changes</em></p>
<h5>    <a
href="https://github.com/unplugin/unplugin-icons/compare/v0.18.4...v0.18.5">View
changes on GitHub</a></h5>
<h2>v0.18.4</h2>
<h3>   🚀 Features</h3>
<ul>
<li>Support <code>collectionsNodeResolvePath</code>  -  by <a
href="https://github.com/antfu"><code>@​antfu</code></a> <a
href="https://github.com/unplugin/unplugin-icons/commit/0bd2c97"><!--
raw HTML omitted -->(0bd2c)<!-- raw HTML omitted --></a></li>
</ul>
<h5>    <a
href="https://github.com/unplugin/unplugin-icons/compare/v0.18.3...v0.18.4">View
changes on GitHub</a></h5>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="224e1e5ff4"><code>224e1e5</code></a>
chore: release v0.18.5</li>
<li><a
href="3f7aa3b5ff"><code>3f7aa3b</code></a>
chore: update deps</li>
<li><a
href="57aac44fbf"><code>57aac44</code></a>
chore: release v0.18.4</li>
<li><a
href="0bd2c977f2"><code>0bd2c97</code></a>
feat: support <code>collectionsNodeResolvePath</code></li>
<li><a
href="2510cc588d"><code>2510cc5</code></a>
chore: lint</li>
<li><a
href="e0735a4834"><code>e0735a4</code></a>
chore: update deps</li>
<li>See full diff in <a
href="https://github.com/unplugin/unplugin-icons/compare/v0.18.3...v0.18.5">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
2024-02-10 15:48:48 -05:00
dependabot[bot] 2afbbaf411
build(deps): bump the backend-deps group in /src-tauri with 3 updates (#434)
Bumps the backend-deps group in /src-tauri with 3 updates:
[reqwest](https://github.com/seanmonstar/reqwest),
[tokio](https://github.com/tokio-rs/tokio) and
[wgpu](https://github.com/gfx-rs/wgpu).

Updates `reqwest` from 0.11.23 to 0.11.24
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/seanmonstar/reqwest/releases">reqwest's
releases</a>.</em></p>
<blockquote>
<h2>v0.11.24</h2>
<h2>What's Changed</h2>
<ul>
<li>Add <code>Certificate::from_pem_bundle()</code> to add a
bundle.</li>
<li>Add <code>http3_prior_knowledge()</code> to blocking client
builder.</li>
<li>Remove <code>Sync</code> bounds requirement for
<code>Body::wrap_stream()</code>.</li>
<li>Fix HTTP/2 to retry <code>REFUSED_STREAM</code> requests.</li>
<li>Fix instances of converting <code>Url</code> to <code>Uri</code>
that could panic.</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/magurotuna"><code>@​magurotuna</code></a> made
their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2081">seanmonstar/reqwest#2081</a></li>
<li><a
href="https://github.com/michaelciraci"><code>@​michaelciraci</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2102">seanmonstar/reqwest#2102</a></li>
<li><a
href="https://github.com/basic-bgnr"><code>@​basic-bgnr</code></a> made
their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2110">seanmonstar/reqwest#2110</a></li>
<li><a href="https://github.com/jgraef"><code>@​jgraef</code></a> made
their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2114">seanmonstar/reqwest#2114</a></li>
<li><a
href="https://github.com/LucasPickering"><code>@​LucasPickering</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2040">seanmonstar/reqwest#2040</a></li>
<li><a href="https://github.com/gibbz00"><code>@​gibbz00</code></a> made
their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2032">seanmonstar/reqwest#2032</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/seanmonstar/reqwest/compare/v0.11.23...v0.11.24">https://github.com/seanmonstar/reqwest/compare/v0.11.23...v0.11.24</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md">reqwest's
changelog</a>.</em></p>
<blockquote>
<h2>v0.11.24</h2>
<ul>
<li>Add <code>Certificate::from_pem_bundle()</code> to add a
bundle.</li>
<li>Add <code>http3_prior_knowledge()</code> to blocking client
builder.</li>
<li>Remove <code>Sync</code> bounds requirement for
<code>Body::wrap_stream()</code>.</li>
<li>Fix HTTP/2 to retry <code>REFUSED_STREAM</code> requests.</li>
<li>Fix instances of converting <code>Url</code> to <code>Uri</code>
that could panic.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c9b4b654cb"><code>c9b4b65</code></a>
v0.11.24</li>
<li><a
href="ddf7f24dca"><code>ddf7f24</code></a>
Add Certificate::from_pem_bundle() (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2032">#2032</a>)</li>
<li><a
href="5d8443ddde"><code>5d8443d</code></a>
fix panic when parsing invalid Url to Uri (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2040">#2040</a>)</li>
<li><a
href="e3bf090066"><code>e3bf090</code></a>
docs: explain TLS backend features better (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2117">#2117</a>)</li>
<li><a
href="1bd939ba15"><code>1bd939b</code></a>
update wasm-streams dependency (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2114">#2114</a>)</li>
<li><a
href="87cdf12d3f"><code>87cdf12</code></a>
doc: clarify Cookie API usage (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2111">#2111</a>)</li>
<li><a
href="b3feff6bd8"><code>b3feff6</code></a>
Add http3 feature to blocking client (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2110">#2110</a>)</li>
<li><a
href="23329363c6"><code>2332936</code></a>
Update cookie crates (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2089">#2089</a>)</li>
<li><a
href="ef2c8ee50f"><code>ef2c8ee</code></a>
Upgrading env_logger dep (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2102">#2102</a>)</li>
<li><a
href="4ab5fb031c"><code>4ab5fb0</code></a>
Fix HTTP/2: retry requests rejected with <code>REFUSED_STREAM</code> (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2081">#2081</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/seanmonstar/reqwest/compare/v0.11.23...v0.11.24">compare
view</a></li>
</ul>
</details>
<br />

Updates `tokio` from 1.35.1 to 1.36.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/tokio/releases">tokio's
releases</a>.</em></p>
<blockquote>
<h2>Tokio v1.36.0</h2>
<h1>1.36.0 (February 2nd, 2024)</h1>
<h3>Added</h3>
<ul>
<li>io: add <code>tokio::io::Join</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6220">#6220</a>)</li>
<li>io: implement <code>AsyncWrite</code> for <code>Empty</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6235">#6235</a>)</li>
<li>net: add support for anonymous unix pipes (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6127">#6127</a>)</li>
<li>net: add <code>UnixSocket</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6290">#6290</a>)</li>
<li>net: expose keepalive option on <code>TcpSocket</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6311">#6311</a>)</li>
<li>sync: add <code>{Receiver,UnboundedReceiver}::poll_recv_many</code>
(<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6236">#6236</a>)</li>
<li>sync: add <code>Sender::{try_,}reserve_many</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6205">#6205</a>)</li>
<li>sync: add <code>watch::Receiver::mark_unchanged</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6252">#6252</a>)</li>
<li>task: add <code>JoinSet::try_join_next</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6280">#6280</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>io: make <code>copy</code> cooperative (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6265">#6265</a>)</li>
<li>io: make <code>repeat</code> and <code>sink</code> cooperative (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6254">#6254</a>)</li>
<li>io: simplify check for empty slice (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6293">#6293</a>)</li>
<li>process: use pidfd on Linux when available (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6152">#6152</a>)</li>
<li>sync: use AtomicBool in broadcast channel future (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6298">#6298</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>io: clarify <code>clear_ready</code> docs (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6304">#6304</a>)</li>
<li>net: document that <code>*Fd</code> traits on <code>TcpSocket</code>
are unix-only (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6294">#6294</a>)</li>
<li>sync: document FIFO behavior of <code>tokio::sync::Mutex</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6279">#6279</a>)</li>
<li>chore: typographic improvements (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6262">#6262</a>)</li>
<li>runtime: remove obsolete comment (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6303">#6303</a>)</li>
<li>task: fix typo (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6261">#6261</a>)</li>
</ul>
<p><a
href="https://redirect.github.com/tokio-rs/tokio/issues/6220">#6220</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6220">tokio-rs/tokio#6220</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6235">#6235</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6235">tokio-rs/tokio#6235</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6127">#6127</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6127">tokio-rs/tokio#6127</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6290">#6290</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6290">tokio-rs/tokio#6290</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6311">#6311</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6311">tokio-rs/tokio#6311</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6236">#6236</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6236">tokio-rs/tokio#6236</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6205">#6205</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6205">tokio-rs/tokio#6205</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6252">#6252</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6252">tokio-rs/tokio#6252</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6280">#6280</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6280">tokio-rs/tokio#6280</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6265">#6265</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6265">tokio-rs/tokio#6265</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6254">#6254</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6254">tokio-rs/tokio#6254</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6293">#6293</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6293">tokio-rs/tokio#6293</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6238">#6238</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6238">tokio-rs/tokio#6238</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6152">#6152</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6152">tokio-rs/tokio#6152</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6298">#6298</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6298">tokio-rs/tokio#6298</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6262">#6262</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6262">tokio-rs/tokio#6262</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6303">#6303</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6303">tokio-rs/tokio#6303</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6261">#6261</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6261">tokio-rs/tokio#6261</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="eaf81ed324"><code>eaf81ed</code></a>
chore: prepare Tokio v1.36.0 (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6312">#6312</a>)</li>
<li><a
href="53f9e5a357"><code>53f9e5a</code></a>
ci: make sure dictionary words are sorted and unique (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6316">#6316</a>)</li>
<li><a
href="9077762545"><code>9077762</code></a>
net: expose keepalive option on <code>TcpSocket</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6311">#6311</a>)</li>
<li><a
href="131e7b4e49"><code>131e7b4</code></a>
ci: add spellchecking (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6297">#6297</a>)</li>
<li><a
href="e53b92a993"><code>e53b92a</code></a>
io: clarify <code>clear_ready</code> docs (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6304">#6304</a>)</li>
<li><a
href="7536132065"><code>7536132</code></a>
sync: use AtomicBool in broadcast channel future (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6298">#6298</a>)</li>
<li><a
href="b6d0c9091d"><code>b6d0c90</code></a>
macros: fix trait_method breaking change detection (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6308">#6308</a>)</li>
<li><a
href="4846959e8a"><code>4846959</code></a>
runtime: remove obsolete comment (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6303">#6303</a>)</li>
<li><a
href="ec3038357f"><code>ec30383</code></a>
net: add <code>UnixSocket</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6290">#6290</a>)</li>
<li><a
href="f80bbec28f"><code>f80bbec</code></a>
io: simplify check for empty slice (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6293">#6293</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tokio-rs/tokio/compare/tokio-1.35.1...tokio-1.36.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `wgpu` from 0.18.0 to 0.19.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/releases">wgpu's
releases</a>.</em></p>
<blockquote>
<h2>v0.19.1</h2>
<p>This release includes <code>wgpu</code> and <code>wgpu-hal</code>.
The rest of the crates are unchanged since 0.19.0.</p>
<h3>Bug Fixes</h3>
<h4>DX12</h4>
<ul>
<li>Properly register all swapchain buffers to prevent error on surface
present. By <a
href="https://github.com/dtzxporter"><code>@​dtzxporter</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5091">#5091</a></li>
<li>Check for extra null states when creating resources. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5096">#5096</a></li>
<li>Fix depth-only and stencil-only views causing crashes. By <a
href="https://github.com/teoxoy"><code>@​teoxoy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5100">#5100</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>In Surface::configure and Surface::present on Windows, fix the
current GL context not being unset when releasing the lock that guards
access to making the context current. This was causing other threads to
panic when trying to make the context current. By <a
href="https://github.com/Imberflur"><code>@​Imberflur</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5087">#5087</a>.</li>
</ul>
<h4>WebGPU</h4>
<ul>
<li>Improve error message when compiling WebGPU backend on wasm without
the <code>web_sys_unstable_apis</code> set. By <a
href="https://github.com/rukai"><code>@​rukai</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5104">#5104</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document Wayland specific behavior related to
<code>SurfaceTexture::present</code>. By <a
href="https://github.com/i509VCB"><code>@​i509VCB</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5093">#5093</a>.</li>
</ul>
<h2>v0.19.0</h2>
<p>This release includes:</p>
<ul>
<li><code>wgpu</code></li>
<li><code>wgpu-core</code></li>
<li><code>wgpu-hal</code></li>
<li><code>wgpu-types</code></li>
<li><code>wgpu-info</code></li>
<li><code>naga</code> (skipped from 0.14 to 0.19)</li>
<li><code>naga-cli</code> (skipped from 0.14 to 0.19)</li>
<li><code>d3d12</code> (skipped from 0.7 to 0.19)</li>
</ul>
<h3>Improved Multithreading through internal use of Reference
Counting</h3>
<p>Large refactoring of wgpu’s internals aiming at reducing lock
contention, and providing better performance when using wgpu on multiple
threads.</p>
<p><a href="https://gfx-rs.github.io/2023/11/24/arcanization.html">Check
the blog post!</a></p>
<p>By <a href="https://github.com/gents83"><code>@​gents83</code></a> in
<a href="https://redirect.github.com/gfx-rs/wgpu/pull/3626">#3626</a>
and thanks also to <a
href="https://github.com/jimblandy"><code>@​jimblandy</code></a>, <a
href="https://github.com/nical"><code>@​nical</code></a>, <a
href="https://github.com/Wumpf"><code>@​Wumpf</code></a>, <a
href="https://github.com/Elabajaba"><code>@​Elabajaba</code></a> &amp;
<a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a></p>
<h3>All Public Dependencies are Re-Exported</h3>
<p>All of wgpu's public dependencies are now re-exported at the top
level so that users don't need to take their own dependencies.
This includes:</p>
<ul>
<li>wgpu-core</li>
<li>wgpu-hal</li>
<li>naga</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/blob/v0.19.1/CHANGELOG.md">wgpu's
changelog</a>.</em></p>
<blockquote>
<h2>v0.19.1 (2024-01-21)</h2>
<h3>Bug Fixes</h3>
<h4>DX12</h4>
<ul>
<li>Properly register all swapchain buffers to prevent error on surface
present. By <a
href="https://github.com/dtzxporter"><code>@​dtzxporter</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5091">#5091</a></li>
<li>Check for extra null states when creating resources. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5096">#5096</a></li>
<li>Fix depth-only and stencil-only views causing crashes. By <a
href="https://github.com/teoxoy"><code>@​teoxoy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5100">#5100</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>In Surface::configure and Surface::present on Windows, fix the
current GL context not being unset when releasing the lock that guards
access to making the context current. This was causing other threads to
panic when trying to make the context current. By <a
href="https://github.com/Imberflur"><code>@​Imberflur</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5087">#5087</a>.</li>
</ul>
<h4>WebGPU</h4>
<ul>
<li>Improve error message when compiling WebGPU backend on wasm without
the <code>web_sys_unstable_apis</code> set. By <a
href="https://github.com/rukai"><code>@​rukai</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5104">#5104</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document Wayland specific behavior related to
<code>SurfaceTexture::present</code>. By <a
href="https://github.com/i509VCB"><code>@​i509VCB</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5092">#5092</a>.</li>
</ul>
<h2>v0.19.0 (2024-01-17)</h2>
<p>This release includes:</p>
<ul>
<li><code>wgpu</code></li>
<li><code>wgpu-core</code></li>
<li><code>wgpu-hal</code></li>
<li><code>wgpu-types</code></li>
<li><code>wgpu-info</code></li>
<li><code>naga</code> (skipped from 0.14 to 0.19)</li>
<li><code>naga-cli</code> (skipped from 0.14 to 0.19)</li>
<li><code>d3d12</code> (skipped from 0.7 to 0.19)</li>
</ul>
<h3>Improved Multithreading through internal use of Reference
Counting</h3>
<p>Large refactoring of wgpu’s internals aiming at reducing lock
contention, and providing better performance when using wgpu on multiple
threads.</p>
<p><a href="https://gfx-rs.github.io/2023/11/24/arcanization.html">Check
the blog post!</a></p>
<p>By <a href="https://github.com/gents83"><code>@​gents83</code></a> in
<a href="https://redirect.github.com/gfx-rs/wgpu/pull/3626">#3626</a>
and thanks also to <a
href="https://github.com/jimblandy"><code>@​jimblandy</code></a>, <a
href="https://github.com/nical"><code>@​nical</code></a>, <a
href="https://github.com/Wumpf"><code>@​Wumpf</code></a>, <a
href="https://github.com/Elabajaba"><code>@​Elabajaba</code></a> &amp;
<a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a></p>
<h3>All Public Dependencies are Re-Exported</h3>
<p>All of wgpu's public dependencies are now re-exported at the top
level so that users don't need to take their own dependencies.
This includes:</p>
<ul>
<li>wgpu-core</li>
<li>wgpu-hal</li>
<li>naga</li>
<li>raw_window_handle</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b8a8ff6e44"><code>b8a8ff6</code></a>
Versions</li>
<li><a
href="6e95491c9d"><code>6e95491</code></a>
Update changelog</li>
<li><a
href="ec48ee3ba6"><code>ec48ee3</code></a>
Document Wayland specifics related to SurfaceTexture::present (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5093">#5093</a>)</li>
<li><a
href="f9454d1565"><code>f9454d1</code></a>
Error on missing web_sys_unstable_apis (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5104">#5104</a>)</li>
<li><a
href="e1481b656a"><code>e1481b6</code></a>
Make sure to unset current context in wgl Surface::configure/present (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5087">#5087</a>)</li>
<li><a
href="c094e625d0"><code>c094e62</code></a>
[d3d12] use plane 1 for stencil only views (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5100">#5100</a>)</li>
<li><a
href="a0db2a2355"><code>a0db2a2</code></a>
Make sure to copy all of the buffers into the resource array for dx12.
(<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5091">#5091</a>)</li>
<li><a
href="ba74217c89"><code>ba74217</code></a>
d3d12: Null check the out ComPtr of a few creation functions (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5096">#5096</a>)</li>
<li><a
href="484457d959"><code>484457d</code></a>
Fix wgpu-hal build</li>
<li><a
href="7eac4cec5b"><code>7eac4ce</code></a>
Fix naga release</li>
<li>Additional commits viewable in <a
href="https://github.com/gfx-rs/wgpu/compare/v0.18.0...v0.19.1">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
2024-02-10 15:48:38 -05:00
Tyler Wilding 27e63e6afb
i18n: add jak3 game name to translations (#433) 2024-01-31 22:18:24 -05:00
OpenGOALBot 52fcfccecf release: update release metadata to latest 2024-01-31 03:20:32 +00:00
OpenGOALBot cd78892334 release: bump to version - v2.4.1 2024-01-31 03:05:55 +00:00
dependabot[bot] eb6aca2f66
build(deps): bump the frontend-deps group with 16 updates (#427)
Bumps the frontend-deps group with 16 updates:

| Package | From | To |
| --- | --- | --- |
|
[country-flag-emoji-polyfill](https://github.com/talkjs/country-flag-emoji-polyfill)
| `0.1.5` | `0.1.8` |
| [@iconify-json/mdi](https://github.com/iconify/icon-sets) | `1.1.63` |
`1.1.64` |
|
[@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte)
| `3.0.1` | `3.0.2` |
|
[@testing-library/svelte](https://github.com/testing-library/svelte-testing-library)
| `4.0.5` | `4.1.0` |
|
[@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8)
| `1.1.0` | `1.2.2` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.16` |
`10.4.17` |
| [classnames](https://github.com/JedWatson/classnames) | `2.3.3` |
`2.5.1` |
| [flowbite-svelte](https://github.com/themesberg/flowbite-svelte) |
`0.44.21` | `0.44.22` |
| [jsdom](https://github.com/jsdom/jsdom) | `23.0.1` | `24.0.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.32` | `8.4.33` |
| [prettier](https://github.com/prettier/prettier) | `3.1.1` | `3.2.4` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte)
| `4.2.8` | `4.2.9` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.0` |
`3.4.1` |
| [unplugin-icons](https://github.com/unplugin/unplugin-icons) |
`0.18.1` | `0.18.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.0.10` | `5.0.12` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `1.1.0` | `1.2.2` |

Updates `country-flag-emoji-polyfill` from 0.1.5 to 0.1.8
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/talkjs/country-flag-emoji-polyfill/blob/master/CHANGELOG.md">country-flag-emoji-polyfill's
changelog</a>.</em></p>
<blockquote>
<h2>0.1.8</h2>
<ul>
<li>Fix NPM publish mistake which didn't include the
TwemojiCountryFlags.woff2 font file</li>
<li>No code changes</li>
</ul>
<h2>0.1.7</h2>
<ul>
<li>Change package.json such that, hopefully, it works better in
everybody's build setup (notably the TypeScript types). Thanks <a
href="https://github.com/DanielleHuisman"><code>@​DanielleHuisman</code></a>
for PR <a
href="https://redirect.github.com/talkjs/country-flag-emoji-polyfill/issues/13">#13</a>.</li>
<li>Switch to unbuild to enable the above.</li>
<li>Add this changelog.</li>
</ul>
<h2>0.1.6</h2>
<p>Sorry I forgot, please see the commit history.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/talkjs/country-flag-emoji-polyfill/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `@iconify-json/mdi` from 1.1.63 to 1.1.64
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0e8c79ddf1"><code>0e8c79d</code></a>
Update IonIcons</li>
<li>See full diff in <a
href="https://github.com/iconify/icon-sets/compare/1.1.63...1.1.64">compare
view</a></li>
</ul>
</details>
<br />

Updates `@sveltejs/vite-plugin-svelte` from 3.0.1 to 3.0.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/vite-plugin-svelte/releases"><code>@​sveltejs/vite-plugin-svelte</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​sveltejs/vite-plugin-svelte</code><a
href="https://github.com/3"><code>@​3</code></a>.0.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix(compile): correctly determine script lang in files where a
comment precedes the script tag (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/844">#844</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md"><code>@​sveltejs/vite-plugin-svelte</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.0.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix(compile): correctly determine script lang in files where a
comment precedes the script tag (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/844">#844</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e04c9a86f6"><code>e04c9a8</code></a>
Version Packages (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/845">#845</a>)</li>
<li><a
href="a0063554bf"><code>a006355</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/842">#842</a>)</li>
<li><a
href="e95d863cc0"><code>e95d863</code></a>
fix: correctly detect script language during compilation (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/844">#844</a>)</li>
<li><a
href="d5a6dad8da"><code>d5a6dad</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/833">#833</a>)</li>
<li><a
href="833d66cee5"><code>833d66c</code></a>
chore: update to SvelteKit 2 (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/831">#831</a>)</li>
<li><a
href="4a8d590b54"><code>4a8d590</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/823">#823</a>)</li>
<li><a
href="ee0aa51e4a"><code>ee0aa51</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/821">#821</a>)</li>
<li><a
href="aca75344e3"><code>aca7534</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/818">#818</a>)</li>
<li><a
href="2510174305"><code>2510174</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/815">#815</a>)</li>
<li>See full diff in <a
href="https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@3.0.2/packages/vite-plugin-svelte">compare
view</a></li>
</ul>
</details>
<br />

Updates `@testing-library/svelte` from 4.0.5 to 4.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/testing-library/svelte-testing-library/releases"><code>@​testing-library/svelte</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v4.1.0</h2>
<h1><a
href="https://github.com/testing-library/svelte-testing-library/compare/v4.0.6...v4.1.0">4.1.0</a>
(2024-01-27)</h1>
<h3>Features</h3>
<ul>
<li><strong>vitest:</strong> add vitest cleanup export (<a
href="https://redirect.github.com/testing-library/svelte-testing-library/issues/294">#294</a>)
(<a
href="ee1b1f7917">ee1b1f7</a>)</li>
</ul>
<h2>v4.0.6</h2>
<h2><a
href="https://github.com/testing-library/svelte-testing-library/compare/v4.0.5...v4.0.6">4.0.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> correct type annotation for <code>act</code>
(<a
href="38f75184e4">38f7518</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ee1b1f7917"><code>ee1b1f7</code></a>
feat(vitest): add vitest cleanup export (<a
href="https://redirect.github.com/testing-library/svelte-testing-library/issues/294">#294</a>)</li>
<li><a
href="16a7a4b187"><code>16a7a4b</code></a>
chore: fix linting, formatting, and git hooks configs (<a
href="https://redirect.github.com/testing-library/svelte-testing-library/issues/291">#291</a>)</li>
<li><a
href="9bd2f39eef"><code>9bd2f39</code></a>
Merge pull request <a
href="https://redirect.github.com/testing-library/svelte-testing-library/issues/287">#287</a>
from testing-library/gh209-setContext</li>
<li><a
href="9fdce658fe"><code>9fdce65</code></a>
Merge pull request <a
href="https://redirect.github.com/testing-library/svelte-testing-library/issues/289">#289</a>
from testing-library/simplify-act</li>
<li><a
href="f5121e169f"><code>f5121e1</code></a>
chore: simplify implementation of act</li>
<li><a
href="9ef86c7258"><code>9ef86c7</code></a>
Merge pull request <a
href="https://redirect.github.com/testing-library/svelte-testing-library/issues/288">#288</a>
from mcous/fix-134</li>
<li><a
href="38f75184e4"><code>38f7518</code></a>
fix(types): correct type annotation for <code>act</code></li>
<li><a
href="614b9b7ef4"><code>614b9b7</code></a>
add new context test</li>
<li>See full diff in <a
href="https://github.com/testing-library/svelte-testing-library/compare/v4.0.5...v4.1.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@vitest/coverage-v8` from 1.1.0 to 1.2.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.2.2</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>coverage</strong>:
<ul>
<li>Remove <code>coverage/.tmp</code> files after run  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5008">vitest-dev/vitest#5008</a>
<a href="https://github.com/vitest-dev/vitest/commit/d53b8580"><!-- raw
HTML omitted -->(d53b8)<!-- raw HTML omitted --></a></li>
<li>Don't crash when re-run removes earlier run's reports  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5022">vitest-dev/vitest#5022</a>
<a href="https://github.com/vitest-dev/vitest/commit/6689856f"><!-- raw
HTML omitted -->(66898)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>expect</strong>:
<ul>
<li>Improve <code>toThrow(asymmetricMatcher)</code> failure message  - 
by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5000">vitest-dev/vitest#5000</a>
<a href="https://github.com/vitest-dev/vitest/commit/a199ac2d"><!-- raw
HTML omitted -->(a199a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>forks</strong>:
<ul>
<li>Set correct <code>VITEST_POOL_ID</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5002">vitest-dev/vitest#5002</a>
<a href="https://github.com/vitest-dev/vitest/commit/7d0a4692"><!-- raw
HTML omitted -->(7d0a4)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>threads</strong>:
<ul>
<li>Mention common work-around for the logged error  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5024">vitest-dev/vitest#5024</a>
<a href="https://github.com/vitest-dev/vitest/commit/915d6c43"><!-- raw
HTML omitted -->(915d6)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>typecheck</strong>:
<ul>
<li>Fix <code>ignoreSourceErrors</code> in run mode  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5044">vitest-dev/vitest#5044</a>
<a href="https://github.com/vitest-dev/vitest/commit/6dae3feb"><!-- raw
HTML omitted -->(6dae3)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vite-node</strong>:
<ul>
<li>Provide import.meta.filename and dirname  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5011">vitest-dev/vitest#5011</a>
<a href="https://github.com/vitest-dev/vitest/commit/73148575"><!-- raw
HTML omitted -->(73148)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Expose getHooks &amp; setHooks  -  by <a
href="https://github.com/adriencaccia"><code>@​adriencaccia</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5032">vitest-dev/vitest#5032</a>
<a href="https://github.com/vitest-dev/vitest/commit/73448706"><!-- raw
HTML omitted -->(73448)<!-- raw HTML omitted --></a></li>
<li>Test deep dependencies change detection  -  by <a
href="https://github.com/blake-newman"><code>@​blake-newman</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4934">vitest-dev/vitest#4934</a>
<a href="https://github.com/vitest-dev/vitest/commit/9c7c0fc9"><!-- raw
HTML omitted -->(9c7c0)<!-- raw HTML omitted --></a></li>
<li>Throw an error if vi.mock is exported  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5034">vitest-dev/vitest#5034</a>
<a href="https://github.com/vitest-dev/vitest/commit/253df1cc"><!-- raw
HTML omitted -->(253df)<!-- raw HTML omitted --></a></li>
<li>Allow <code>useFakeTimers</code> to fake
<code>requestIdleCallback</code> on non browser  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5028">vitest-dev/vitest#5028</a>
<a href="https://github.com/vitest-dev/vitest/commit/a9a486f2"><!-- raw
HTML omitted -->(a9a48)<!-- raw HTML omitted --></a></li>
<li>Support older NodeJS with async <code>import.meta.resolve</code>  - 
by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5045">vitest-dev/vitest#5045</a>
<a href="https://github.com/vitest-dev/vitest/commit/cf5641a9"><!-- raw
HTML omitted -->(cf564)<!-- raw HTML omitted --></a></li>
<li>Don't throw an error if mocked file was already imported  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5050">vitest-dev/vitest#5050</a>
<a href="https://github.com/vitest-dev/vitest/commit/fff1a270"><!-- raw
HTML omitted -->(fff1a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.2.1...v1.2.2">View
changes on GitHub</a></h5>
<h2>v1.2.1</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>browser</strong>:
<ul>
<li>Apply inlined workspace config to browser mode vite server  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4947">vitest-dev/vitest#4947</a>
<a href="https://github.com/vitest-dev/vitest/commit/db01f6c2"><!-- raw
HTML omitted -->(db01f)<!-- raw HTML omitted --></a></li>
<li>Fix browser testing url for https  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4855">vitest-dev/vitest#4855</a>
<a href="https://github.com/vitest-dev/vitest/commit/6c1cc78b"><!-- raw
HTML omitted -->(6c1cc)<!-- raw HTML omitted --></a></li>
<li>Don't fail when calling vi.useFakeTimers  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4992">vitest-dev/vitest#4992</a>
<a href="https://github.com/vitest-dev/vitest/commit/6c5fe49b"><!-- raw
HTML omitted -->(6c5fe)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>coverage</strong>:
<ul>
<li><code>thresholds.autoUpdate</code> to work with arrow function
configuration files  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4959">vitest-dev/vitest#4959</a>
<a href="https://github.com/vitest-dev/vitest/commit/4b41131a"><!-- raw
HTML omitted -->(4b411)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>expect</strong>:
<ul>
<li>Implement chai inspect for <code>AsymmetricMatcher</code>  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> and <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4942">vitest-dev/vitest#4942</a>
<a href="https://github.com/vitest-dev/vitest/commit/06bae4dd"><!-- raw
HTML omitted -->(06bae)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vite-node</strong>:
<ul>
<li>Externalize network imports  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4987">vitest-dev/vitest#4987</a>
<a href="https://github.com/vitest-dev/vitest/commit/21f5744d"><!-- raw
HTML omitted -->(21f57)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Handle single <code>await vi.hoisted</code>  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4962">vitest-dev/vitest#4962</a>
<a href="https://github.com/vitest-dev/vitest/commit/dcf2e9f2"><!-- raw
HTML omitted -->(dcf2e)<!-- raw HTML omitted --></a></li>
<li>Simplify hoist transform check regex to avoid expensive regex match
 -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4974">vitest-dev/vitest#4974</a>
<a href="https://github.com/vitest-dev/vitest/commit/df0db6a9"><!-- raw
HTML omitted -->(df0db)<!-- raw HTML omitted --></a></li>
<li>Correctly find module if it has a version query  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4976">vitest-dev/vitest#4976</a>
<a href="https://github.com/vitest-dev/vitest/commit/952c31df"><!-- raw
HTML omitted -->(952c3)<!-- raw HTML omitted --></a></li>
<li>Check color support for intercepted console logging  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4966">vitest-dev/vitest#4966</a>
<a href="https://github.com/vitest-dev/vitest/commit/39a7169c"><!-- raw
HTML omitted -->(39a71)<!-- raw HTML omitted --></a></li>
<li>Use development/production conditions when resolving external
modules  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4980">vitest-dev/vitest#4980</a>
<a href="https://github.com/vitest-dev/vitest/commit/8877e22a"><!-- raw
HTML omitted -->(8877e)<!-- raw HTML omitted --></a></li>
<li>Throw a syntax error if vi.hoisted is directly exported  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4969">vitest-dev/vitest#4969</a>
<a href="https://github.com/vitest-dev/vitest/commit/f8bff9ef"><!-- raw
HTML omitted -->(f8bff)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.2.0...v1.2.1">View
changes on GitHub</a></h5>
<h2>v1.2.0</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b1462a4656"><code>b1462a4</code></a>
chore: release v1.2.2</li>
<li><a
href="d53b85805d"><code>d53b858</code></a>
fix(coverage): remove <code>coverage/.tmp</code> files after run (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/5008">#5008</a>)</li>
<li><a
href="6421c2766c"><code>6421c27</code></a>
chore: release v1.2.1</li>
<li><a
href="4b41131af2"><code>4b41131</code></a>
fix(coverage): <code>thresholds.autoUpdate</code> to work with arrow
function configurat...</li>
<li><a
href="b561c3290d"><code>b561c32</code></a>
chore: release v1.2.0</li>
<li><a
href="96dc6e9aaf"><code>96dc6e9</code></a>
feat(coverage): custom reporter support (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/4828">#4828</a>)</li>
<li><a
href="a73c1c2ca3"><code>a73c1c2</code></a>
chore: release v1.1.3</li>
<li><a
href="be5a259d9c"><code>be5a259</code></a>
chore: release v1.1.2</li>
<li><a
href="c8abbc18e1"><code>c8abbc1</code></a>
chore: release v1.1.1</li>
<li>See full diff in <a
href="https://github.com/vitest-dev/vitest/commits/v1.2.2/packages/coverage-v8">compare
view</a></li>
</ul>
</details>
<br />

Updates `autoprefixer` from 10.4.16 to 10.4.17
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/autoprefixer/releases">autoprefixer's
releases</a>.</em></p>
<blockquote>
<h2>10.4.17</h2>
<ul>
<li>Fixed <code>user-select: contain</code> prefixes.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md">autoprefixer's
changelog</a>.</em></p>
<blockquote>
<h2>10.4.17</h2>
<ul>
<li>Fixed <code>user-select: contain</code> prefixes.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="46cd2cccab"><code>46cd2cc</code></a>
Release 10.4.17 version</li>
<li><a
href="2738f72023"><code>2738f72</code></a>
Update dependencies</li>
<li><a
href="b0a4007c49"><code>b0a4007</code></a>
Fix user-select: contain</li>
<li><a
href="1db31f0e6d"><code>1db31f0</code></a>
Update dependencies</li>
<li>See full diff in <a
href="https://github.com/postcss/autoprefixer/compare/10.4.16...10.4.17">compare
view</a></li>
</ul>
</details>
<br />

Updates `classnames` from 2.3.3 to 2.5.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/JedWatson/classnames/blob/main/HISTORY.md">classnames's
changelog</a>.</em></p>
<blockquote>
<h2>v2.5.1 / 2023-12-29</h2>
<ul>
<li>Remove <code>workspaces</code> field from package (<a
href="https://redirect.github.com/JedWatson/classnames/pull/350">#350</a>)</li>
</ul>
<h2>v2.5.0 / 2023-12-27</h2>
<ul>
<li>Restore ability to pass a TypeScript <code>interface</code> (<a
href="https://redirect.github.com/JedWatson/classnames/pull/341">#341</a>)</li>
<li>Add <code>exports</code> field to package (<a
href="https://redirect.github.com/JedWatson/classnames/pull/342">#342</a>)</li>
</ul>
<h2>v2.4.0 / 2023-12-26</h2>
<ul>
<li>Use string concatenation to increase performance thanks <a
href="https://github.com/jonkoops">Jon Koops</a> (<a
href="https://redirect.github.com/JedWatson/classnames/pull/336">#336</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2e3683264b"><code>2e36832</code></a>
Prepare for release of version 2.5.1 (<a
href="https://redirect.github.com/JedWatson/classnames/issues/351">#351</a>)</li>
<li><a
href="9331401957"><code>9331401</code></a>
Remove benchmarks from workspace (<a
href="https://redirect.github.com/JedWatson/classnames/issues/350">#350</a>)</li>
<li><a
href="ff6dd1e37a"><code>ff6dd1e</code></a>
Bump to the latest version (<a
href="https://redirect.github.com/JedWatson/classnames/issues/347">#347</a>)</li>
<li><a
href="942db499b1"><code>942db49</code></a>
Add GitHub provenance for publishing (<a
href="https://redirect.github.com/JedWatson/classnames/issues/345">#345</a>)</li>
<li><a
href="28ea73f917"><code>28ea73f</code></a>
Prepare for release of version 2.5.0 (<a
href="https://redirect.github.com/JedWatson/classnames/issues/344">#344</a>)</li>
<li><a
href="dfeb7f3604"><code>dfeb7f3</code></a>
Fix URL for GIT repository in package (<a
href="https://redirect.github.com/JedWatson/classnames/issues/343">#343</a>)</li>
<li><a
href="8a840eae0f"><code>8a840ea</code></a>
Add <code>exports</code> field to package (<a
href="https://redirect.github.com/JedWatson/classnames/issues/342">#342</a>)</li>
<li><a
href="ea8e8398a6"><code>ea8e839</code></a>
Restore ability to pass TypeScript <code>interface</code> (<a
href="https://redirect.github.com/JedWatson/classnames/issues/341">#341</a>)</li>
<li><a
href="930c74809e"><code>930c748</code></a>
Bump <code>classnames</code> to the latest version (<a
href="https://redirect.github.com/JedWatson/classnames/issues/340">#340</a>)</li>
<li><a
href="d2d10f565e"><code>d2d10f5</code></a>
Bump tsd from 0.30.0 to 0.30.1 (<a
href="https://redirect.github.com/JedWatson/classnames/issues/339">#339</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/JedWatson/classnames/compare/v2.3.3...v2.5.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flowbite-svelte` from 0.44.21 to 0.44.22
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite-svelte/blob/main/CHANGELOG.md">flowbite-svelte's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.21...v0.44.22">0.44.22</a>
(2024-01-12)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>1125 (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1195">#1195</a>)
(<a
href="f0b3d9ce7f">f0b3d9c</a>)</li>
<li>1209 (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1210">#1210</a>)
(<a
href="671a950d96">671a950</a>)</li>
<li>sidebar md:block (<a
href="0bd2f01298">0bd2f01</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="7156091b26"><code>7156091</code></a>
chore(release): 0.44.22</li>
<li><a
href="905b0ca14e"><code>905b0ca</code></a>
chore: format and lib-helpers</li>
<li><a
href="0bd2f01298"><code>0bd2f01</code></a>
fix: sidebar md:block</li>
<li><a
href="671a950d96"><code>671a950</code></a>
fix: 1209 (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1210">#1210</a>)</li>
<li><a
href="3e85e7e1bf"><code>3e85e7e</code></a>
card horizontal size fix (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1204">#1204</a>)</li>
<li><a
href="f096cea604"><code>f096cea</code></a>
avatar placeholder component removal (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1203">#1203</a>)</li>
<li><a
href="63b99bd009"><code>63b99bd</code></a>
ts fixes for mega-menu (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1202">#1202</a>)</li>
<li><a
href="a9dc6fffe8"><code>a9dc6ff</code></a>
fixes to toolbar (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1199">#1199</a>)</li>
<li><a
href="f0b3d9ce7f"><code>f0b3d9c</code></a>
fix: 1125 (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1195">#1195</a>)</li>
<li><a
href="7b5b47ac06"><code>7b5b47a</code></a>
clearinterval (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1194">#1194</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.21...v0.44.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `jsdom` from 23.0.1 to 24.0.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jsdom/jsdom/releases">jsdom's
releases</a>.</em></p>
<blockquote>
<h2>Version 24.0.0</h2>
<p>This release reverts our selector engine back to <a
href="https://www.npmjs.com/nwsapi"><code>nwsapi</code></a>. As
discussed in <a
href="https://redirect.github.com/jsdom/jsdom/issues/3659">#3659</a>,
the performance regressions from <a
href="https://www.npmjs.com/package/@asamuzakjp/dom-selector"><code>@asamuzakjp/dom-selector</code></a>
turned out to be higher than anticipated. In the future, we can revisit
<code>@asamuzakjp/dom-selector</code> after it reaches
<code>nwsapi</code>'s performance on the <a
href="https://redirect.github.com/jsdom/jsdom/issues/3659#issuecomment-1890852609">two
real-world benchmarks provided by the community</a>.</p>
<p>Since reverting to <code>nwsapi</code> causes several functionality
regressions, e.g. removing <code>:has()</code> support, we've decided to
make this a major version.</p>
<p>Additionally:</p>
<ul>
<li>Small fixes to edge-case behavior of the following properties:
<code>input.maxLength</code>, <code>input.minLength</code>,
<code>input.size</code>, <code>progress.max</code>,
<code>tableCell.colSpan</code>, <code>tableCell.rowSpan</code>,
<code>tableCol.span</code>, <code>textArea.cols</code>,
<code>textArea.maxLength</code>, <code>textArea.minLength</code>,
<code>textArea.rows</code>.</li>
</ul>
<h2>Version 23.2.0</h2>
<p>This release switches our CSS selector engine from <a
href="https://www.npmjs.com/nwsapi"><code>nwsapi</code></a> to <a
href="https://www.npmjs.com/package/@asamuzakjp/dom-selector"><code>@asamuzakjp/dom-selector</code></a>.
The new engine is more actively maintained, and supports many new
selectors: see <a
href="https://github.com/asamuzaK/domSelector#supported-css-selectors">the
package's documentation</a> for the full list. It also works better with
shadow trees.</p>
<p>There is a potential of a performance regression due to this change.
In our stress test benchmark, which runs most of <a
href="908f27d4e3/benchmark/selectors/sizzle-speed/selectors.large.css">these
273 selectors</a> against <a
href="908f27d4e3/benchmark/selectors/sizzle-speed/selector.html">this
128 KiB document</a>, the new engine completes the benchmark only 0.25x
as fast. However, we're hopeful that in more moderate usage this will
not be a significant issue. Any help speeding up
<code>@asamuzakjp/dom-selector</code> is appreciated, and feel free to
open an issue if this has had a significant impact on your project.</p>
<h2>Version 23.1.0</h2>
<ul>
<li>Added an initial implementation of <code>ElementInternals</code>,
including the <code>shadowRoot</code> getter and the string-valued ARIA
properties. (zjffun)</li>
<li>Added the string-valued ARIA attribute-reflecting properties to
<code>Element</code>.</li>
<li>Fixed <code>history.pushState()</code> and
<code>history.replaceState()</code> to follow the latest specification,
notably with regards to how they handle empty string inputs and what new
URLs are possible.</li>
<li>Fixed the <code>input.valueAsANumber</code> setter to handle
<code>NaN</code> correctly. (alexandertrefz)</li>
<li>Updated various dependencies, including <code>cssstyle</code> which
contains several bug fixes.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jsdom/jsdom/blob/main/Changelog.md">jsdom's
changelog</a>.</em></p>
<blockquote>
<h2>24.0.0</h2>
<p>This release reverts our selector engine back to <a
href="https://www.npmjs.com/nwsapi"><code>nwsapi</code></a>. As
discussed in <a
href="https://redirect.github.com/jsdom/jsdom/issues/3659">#3659</a>,
the performance regressions from <a
href="https://www.npmjs.com/package/@asamuzakjp/dom-selector"><code>@asamuzakjp/dom-selector</code></a>
turned out to be higher than anticipated. In the future, we can revisit
<code>@asamuzakjp/dom-selector</code> after it reaches
<code>nwsapi</code>'s performance on the <a
href="https://redirect.github.com/jsdom/jsdom/issues/3659#issuecomment-1890852609">two
real-world benchmarks provided by the community</a>.</p>
<p>Since reverting to <code>nwsapi</code> causes several functionality
regressions, e.g. removing <code>:has()</code> support, we've decided to
make this a major version.</p>
<p>Additionally:</p>
<ul>
<li>Small fixes to edge-case behavior of the following properties:
<code>input.maxLength</code>, <code>input.minLength</code>,
<code>input.size</code>, <code>progress.max</code>,
<code>tableCell.colSpan</code>, <code>tableCell.rowSpan</code>,
<code>tableCol.span</code>, <code>textArea.cols</code>,
<code>textArea.maxLength</code>, <code>textArea.minLength</code>,
<code>textArea.rows</code>.</li>
</ul>
<h2>23.2.0</h2>
<p>This release switches our CSS selector engine from <a
href="https://www.npmjs.com/nwsapi"><code>nwsapi</code></a> to <a
href="https://www.npmjs.com/package/@asamuzakjp/dom-selector"><code>@asamuzakjp/dom-selector</code></a>.
The new engine is more actively maintained, and supports many new
selectors: see <a
href="https://github.com/asamuzaK/domSelector#supported-css-selectors">the
package's documentation</a> for the full list. It also works better with
shadow trees.</p>
<p>There is a potential of a performance regression due to this change.
In our stress test benchmark, which runs most of <a
href="908f27d4e3/benchmark/selectors/sizzle-speed/selectors.large.css">these
273 selectors</a> against <a
href="908f27d4e3/benchmark/selectors/sizzle-speed/selector.html">this
128 KiB document</a>, the new engine completes the benchmark only 0.25x
as fast. However, we're hopeful that in more moderate usage this will
not be a significant issue. Any help speeding up
<code>@asamuzakjp/dom-selector</code> is appreciated, and feel free to
open an issue if this has had a significant impact on your project.</p>
<h2>23.1.0</h2>
<ul>
<li>Added an initial implementation of <code>ElementInternals</code>,
including the <code>shadowRoot</code> getter and the string-valued ARIA
properties. (zjffun)</li>
<li>Added the string-valued ARIA attribute-reflecting properties to
<code>Element</code>.</li>
<li>Fixed <code>history.pushState()</code> and
<code>history.replaceState()</code> to follow the latest specification,
notably with regards to how they handle empty string inputs and what new
URLs are possible.</li>
<li>Fixed the <code>input.valueAsANumber</code> setter to handle
<code>NaN</code> correctly. (alexandertrefz)</li>
<li>Updated various dependencies, including <code>cssstyle</code> which
contains several bug fixes.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2f8a7302a4"><code>2f8a730</code></a>
Version 24.0.0</li>
<li><a
href="db0a4dc4f9"><code>db0a4dc</code></a>
Implement the remaining types of numeric reflection</li>
<li><a
href="c1d7005f1d"><code>c1d7005</code></a>
Implement full long reflection</li>
<li><a
href="ac815fff23"><code>ac815ff</code></a>
Revert back to nwsapi</li>
<li><a
href="5b1a49e7d5"><code>5b1a49e</code></a>
Fix changelog link to dom-selector</li>
<li><a
href="cf8b707a08"><code>cf8b707</code></a>
Version 23.2.0</li>
<li><a
href="908f27d4e3"><code>908f27d</code></a>
Update dom-selector and roll web platform tests</li>
<li><a
href="c039e5232f"><code>c039e52</code></a>
Switch from nwsapi to dom-selector</li>
<li><a
href="b677627308"><code>b677627</code></a>
Add new CSS selectors benchmark</li>
<li><a
href="4b33d36dc8"><code>4b33d36</code></a>
Enable WPT directories css/selectors and css/css-scoping</li>
<li>Additional commits viewable in <a
href="https://github.com/jsdom/jsdom/compare/23.0.1...24.0.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `postcss` from 8.4.32 to 8.4.33
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/releases">postcss's
releases</a>.</em></p>
<blockquote>
<h2>8.4.33</h2>
<ul>
<li>Fixed <code>NoWorkResult</code> behavior difference with normal mode
(by <a
href="https://github.com/romainmenke"><code>@​romainmenke</code></a>).</li>
<li>Fixed <code>NoWorkResult</code> usage conditions (by <a
href="https://github.com/ahmdammarr"><code>@​ahmdammarr</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's
changelog</a>.</em></p>
<blockquote>
<h2>8.4.33</h2>
<ul>
<li>Fixed <code>NoWorkResult</code> behavior difference with normal mode
(by Romain Menke).</li>
<li>Fixed <code>NoWorkResult</code> usage conditions (by <a
href="https://github.com/ahmdammarr"><code>@​ahmdammarr</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ae57d83523"><code>ae57d83</code></a>
Release 8.4.33 version</li>
<li><a
href="2e9d029da5"><code>2e9d029</code></a>
Update dependencies</li>
<li><a
href="892b269717"><code>892b269</code></a>
Update size limit for new metric on brotli</li>
<li><a
href="f2e7a9f900"><code>f2e7a9f</code></a>
Merge pull request <a
href="https://redirect.github.com/postcss/postcss/issues/1908">#1908</a>
from ahmdammarr/refactor/safe-check-for-NoWorkResult</li>
<li><a
href="c751e11ae8"><code>c751e11</code></a>
Merge pull request <a
href="https://redirect.github.com/postcss/postcss/issues/1909">#1909</a>
from romainmenke/no-work-result-vs-lazy-result--inve...</li>
<li><a
href="3c2fa2ad5a"><code>3c2fa2a</code></a>
fix</li>
<li><a
href="a4626e96d8"><code>a4626e9</code></a>
failing test</li>
<li><a
href="c37346d61a"><code>c37346d</code></a>
refactor: check all falsy conditions of plugins and opts before
returning NoW...</li>
<li>See full diff in <a
href="https://github.com/postcss/postcss/compare/8.4.32...8.4.33">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier` from 3.1.1 to 3.2.4
<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.2.4</h2>
<ul>
<li>Fix <code>.eslintrc.json</code> format <a
href="https://redirect.github.com/prettier/prettier/issues/15947">#15947</a></li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#324">Changelog</a></p>
<h2>3.2.3</h2>
<ul>
<li>Format <code>tsconfig.json</code> file with <code>jsonc</code>
parser <a
href="https://redirect.github.com/prettier/prettier/issues/15927">#15927</a></li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#323">Changelog</a></p>
<h2>3.2.2</h2>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#322">Changelog</a></p>
<h2>3.2.1</h2>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#321">Changelog</a></p>
<h2>3.2.0</h2>
<p><a
href="https://github.com/prettier/prettier/compare/3.1.1...3.2.0">diff</a></p>
<p>🔗 <a href="https://prettier.io/blog/2024/01/12/3.2.0.html">Release
note</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.2.4</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.2.3...3.2.4">diff</a></p>
<h4>Fix incorrect parser inference (<a
href="https://redirect.github.com/prettier/prettier/pull/15947">#15947</a>
by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4>
<p>Files like <code>.eslintrc.json</code> were incorrectly formatted as
JSONC files.</p>
<!-- raw HTML omitted -->
<pre lang="jsx"><code>// Input
prettier --file-info .eslintrc.json
{ &quot;ignored&quot;: false, &quot;inferredParser&quot;:
&quot;jsonc&quot; }
<p>// Prettier 3.2.4
prettier --file-info .eslintrc.json
{ &quot;ignored&quot;: false, &quot;inferredParser&quot;:
&quot;json&quot; }
</code></pre></p>
<h1>3.2.3</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.2.2...3.2.3">diff</a></p>
<h4>Throw errors for invalid code (<a
href="https://redirect.github.com/prettier/prettier/pull/15881">#15881</a>
by <a href="https://github.com/fisker"><code>@​fisker</code></a>, <a
href="https://github.com/Josh-Cena"><code>@​Josh-Cena</code></a>, <a
href="https://github.com/auvred"><code>@​auvred</code></a>)</h4>
<!-- raw HTML omitted -->
<pre lang="ts"><code>// Input
1++;
<p>// Prettier 3.2.2
1++;</p>
<p>// Prettier 3.2.3
SyntaxError: Invalid left-hand side expression in unary operation (1:1)
&gt; 1 | 1++;
| ^
</code></pre></p>
<!-- raw HTML omitted -->
<pre lang="ts"><code>// Input
try {} catch (error = 1){}

// Prettier 3.2.2
try {
} catch (error) {}

// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="03822f5b34"><code>03822f5</code></a>
Release 3.2.4</li>
<li><a
href="1cd4d9c160"><code>1cd4d9c</code></a>
Fix JSONC filenames list (<a
href="https://redirect.github.com/prettier/prettier/issues/15947">#15947</a>)</li>
<li><a
href="6c6a332171"><code>6c6a332</code></a>
Spellcheck</li>
<li><a
href="75ec1f7921"><code>75ec1f7</code></a>
Fix lock file</li>
<li><a
href="dda00cdd1d"><code>dda00cd</code></a>
Clean changelog_unreleased</li>
<li><a
href="c12e3c67f9"><code>c12e3c6</code></a>
Git blame ignore 3.2.3</li>
<li><a
href="4985be553e"><code>4985be5</code></a>
Bump Prettier dependency to 3.2.3</li>
<li><a
href="38c0d212e7"><code>38c0d21</code></a>
Update dependents count</li>
<li><a
href="42ba4373f4"><code>42ba437</code></a>
Release 3.2.3</li>
<li><a
href="99c873d421"><code>99c873d</code></a>
chore(deps): update typescript-eslint to v6.19.0 (<a
href="https://redirect.github.com/prettier/prettier/issues/15939">#15939</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/prettier/prettier/compare/3.1.1...3.2.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `svelte` from 4.2.8 to 4.2.9
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/releases">svelte's
releases</a>.</em></p>
<blockquote>
<h2>svelte@4.2.9</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: add types for popover attributes and events (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10042">#10042</a>)</p>
</li>
<li>
<p>fix: add <code>gamepadconnected</code> and
<code>gamepaddisconnected</code> events (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9864">#9864</a>)</p>
</li>
<li>
<p>fix: make <code>@types/estree</code> a dependency (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10149">#10149</a>)</p>
</li>
<li>
<p>fix: bump <code>axobject-query</code> (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10167">#10167</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/blob/svelte@4.2.9/packages/svelte/CHANGELOG.md">svelte's
changelog</a>.</em></p>
<blockquote>
<h2>4.2.9</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: add types for popover attributes and events (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10042">#10042</a>)</p>
</li>
<li>
<p>fix: add <code>gamepadconnected</code> and
<code>gamepaddisconnected</code> events (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9864">#9864</a>)</p>
</li>
<li>
<p>fix: make <code>@types/estree</code> a dependency (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10149">#10149</a>)</p>
</li>
<li>
<p>fix: bump <code>axobject-query</code> (<a
href="https://redirect.github.com/sveltejs/svelte/pull/10167">#10167</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d9fcc87235"><code>d9fcc87</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9886">#9886</a>)</li>
<li><a
href="490102932b"><code>4901029</code></a>
fix: bump <code>axobject-query</code> (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10167">#10167</a>)</li>
<li><a
href="bc5e578d37"><code>bc5e578</code></a>
fix: make <code>@types/estree</code> a dependency (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10149">#10149</a>)</li>
<li><a
href="89db4b5d99"><code>89db4b5</code></a>
chore: commit types (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9862">#9862</a>)</li>
<li><a
href="32772b4131"><code>32772b4</code></a>
fix: add types for popover attributes and events (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/10042">#10042</a>)</li>
<li><a
href="804f296368"><code>804f296</code></a>
fix: add GamepadEventHandler type (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9864">#9864</a>)</li>
<li><a
href="8fd7756d7f"><code>8fd7756</code></a>
site(v4): fix repl (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9746">#9746</a>)</li>
<li>See full diff in <a
href="https://github.com/sveltejs/svelte/commits/svelte@4.2.9/packages/svelte">compare
view</a></li>
</ul>
</details>
<br />

Updates `tailwindcss` from 3.4.0 to 3.4.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's
releases</a>.</em></p>
<blockquote>
<h2>v3.4.1</h2>
<h3>Fixed</h3>
<ul>
<li>Don't remove keyframe stops when using important utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12639">#12639</a>)</li>
<li>Don't add spaces to gradients and grid track names when followed by
<code>calc()</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12704">#12704</a>)</li>
<li>Restore old behavior for <code>class</code> dark mode strategy (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12717">#12717</a>)</li>
</ul>
<h3>Added</h3>
<ul>
<li>Add new <code>selector</code> and <code>variant</code> strategies
for dark mode (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12717">#12717</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Support <code>rtl</code> and <code>ltr</code> variants on same
element as <code>dir</code> attribute (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12717">#12717</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md">tailwindcss's
changelog</a>.</em></p>
<blockquote>
<h2>[3.4.1] - 2024-01-05</h2>
<h3>Fixed</h3>
<ul>
<li>Don't remove keyframe stops when using important utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12639">#12639</a>)</li>
<li>Don't add spaces to gradients and grid track names when followed by
<code>calc()</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12704">#12704</a>)</li>
<li>Restore old behavior for <code>class</code> dark mode strategy (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12717">#12717</a>)</li>
</ul>
<h3>Added</h3>
<ul>
<li>Add new <code>selector</code> and <code>variant</code> strategies
for dark mode (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12717">#12717</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Support <code>rtl</code> and <code>ltr</code> variants on same
element as <code>dir</code> attribute (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12717">#12717</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="7361468f77"><code>7361468</code></a>
3.4.1</li>
<li><a
href="508e7f2349"><code>508e7f2</code></a>
Fix code style</li>
<li><a
href="3fb57e55ab"><code>3fb57e5</code></a>
Restore old behavior for <code>class</code> dark mode, add new
<code>selector</code> and <code>variant</code> ...</li>
<li><a
href="78fedd5cc0"><code>78fedd5</code></a>
Don't add spaces to gradients and grid track names when followed by
<code>calc()</code> ...</li>
<li><a
href="08a0a6c966"><code>08a0a6c</code></a>
Update changelog</li>
<li><a
href="88907757c1"><code>8890775</code></a>
Don't remove keyframe stops when using important utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12639">#12639</a>)</li>
<li><a
href="f33d6a5d75"><code>f33d6a5</code></a>
Update CI</li>
<li>See full diff in <a
href="https://github.com/tailwindlabs/tailwindcss/compare/v3.4.0...v3.4.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `unplugin-icons` from 0.18.1 to 0.18.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/unplugin/unplugin-icons/releases">unplugin-icons's
releases</a>.</em></p>
<blockquote>
<h2>v0.18.3</h2>
<h3>   🚀 Features</h3>
<ul>
<li>Support for external collection packages  -  by <a
href="https://github.com/userquin"><code>@​userquin</code></a> in <a
href="https://redirect.github.com/unplugin/unplugin-icons/issues/342">unplugin/unplugin-icons#342</a>
<a href="https://github.com/unplugin/unplugin-icons/commit/dbe23c6"><!--
raw HTML omitted -->(dbe23)<!-- raw HTML omitted --></a></li>
</ul>
<h5>    <a
href="https://github.com/unplugin/unplugin-icons/compare/v0.18.2...v0.18.3">View
changes on GitHub</a></h5>
<h2>v0.18.2</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Wrong query params splitting when resolving icon id  -  by <a
href="https://github.com/userquin"><code>@​userquin</code></a> in <a
href="https://redirect.github.com/unplugin/unplugin-icons/issues/339">unplugin/unplugin-icons#339</a>
<a href="https://github.com/unplugin/unplugin-icons/commit/988135f"><!--
raw HTML omitted -->(98813)<!-- raw HTML omitted --></a></li>
</ul>
<h5>    <a
href="https://github.com/unplugin/unplugin-icons/compare/v0.18.1...v0.18.2">View
changes on GitHub</a></h5>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="68ec8987b7"><code>68ec898</code></a>
chore: release v0.18.3</li>
<li><a
href="6f62ab061f"><code>6f62ab0</code></a>
chore: include custom collections</li>
<li><a
href="dbe23c6025"><code>dbe23c6</code></a>
feat: support for external collection packages (<a
href="https://redirect.github.com/unplugin/unplugin-icons/issues/342">#342</a>)</li>
<li><a
href="badb1d5669"><code>badb1d5</code></a>
test: fix shapshot (<a
href="https://redirect.github.com/unplugin/unplugin-icons/issues/340">#340</a>)</li>
<li><a
href="f133ed6124"><code>f133ed6</code></a>
chore: change emoji for frameworks feature</li>
<li><a
href="dbb5346b85"><code>dbb5346</code></a>
chore: release v0.18.2</li>
<li><a
href="988135fda4"><code>988135f</code></a>
fix: wrong query params splitting when resolving icon id (<a
href="https://redirect.github.com/unplugin/unplugin-icons/issues/339">#339</a>)</li>
<li>See full diff in <a
href="https://github.com/unplugin/unplugin-icons/compare/v0.18.1...v0.18.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.0.10 to 5.0.12
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/v5.0.12/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->5.0.12 (2024-01-19)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: await <code>configResolved</code> hooks of worker plugins (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15597">#15597</a>)
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15605">#15605</a>)
(<a href="https://github.com/vitejs/vite/commit/ef89f80">ef89f80</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15597">#15597</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/15605">#15605</a></li>
<li>fix: fs deny for case insensitive systems (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15653">#15653</a>)
(<a href="https://github.com/vitejs/vite/commit/91641c4">91641c4</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15653">#15653</a></li>
</ul>
<h2><!-- raw HTML omitted -->5.0.11 (2024-01-05)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: don't pretransform classic script links (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15361">#15361</a>)
(<a href="https://github.com/vitejs/vite/commit/19e3c9a">19e3c9a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15361">#15361</a></li>
<li>fix: inject <code>__vite__mapDeps</code> code before sourcemap file
comment (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15483">#15483</a>)
(<a href="https://github.com/vitejs/vite/commit/d2aa096">d2aa096</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15483">#15483</a></li>
<li>fix(assets): avoid splitting <code>,</code> inside base64 value of
<code>srcset</code> attribute (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15422">#15422</a>)
(<a href="https://github.com/vitejs/vite/commit/8de7bd2">8de7bd2</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15422">#15422</a></li>
<li>fix(html): handle offset magic-string slice error (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15435">#15435</a>)
(<a href="https://github.com/vitejs/vite/commit/5ea9edb">5ea9edb</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15435">#15435</a></li>
<li>chore(deps): update dependency strip-literal to v2 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15475">#15475</a>)
(<a href="https://github.com/vitejs/vite/commit/49d21fe">49d21fe</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15475">#15475</a></li>
<li>chore(deps): update tj-actions/changed-files action to v41 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15476">#15476</a>)
(<a href="https://github.com/vitejs/vite/commit/2a540ee">2a540ee</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15476">#15476</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ee81e19676"><code>ee81e19</code></a>
release: v5.0.12</li>
<li><a
href="91641c4da0"><code>91641c4</code></a>
fix: fs deny for case insensitive systems (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15653">#15653</a>)</li>
<li><a
href="ef89f8092f"><code>ef89f80</code></a>
fix: await <code>configResolved</code> hooks of worker plugins (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15597">#15597</a>)
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15605">#15605</a>)</li>
<li><a
href="b44c49302f"><code>b44c493</code></a>
release: v5.0.11</li>
<li><a
href="d2aa0969ee"><code>d2aa096</code></a>
fix: inject <code>__vite__mapDeps</code> code before sourcemap file
comment (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15483">#15483</a>)</li>
<li><a
href="2a540eee82"><code>2a540ee</code></a>
chore(deps): update tj-actions/changed-files action to v41 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15476">#15476</a>)</li>
<li><a
href="5ea9edbc9c"><code>5ea9edb</code></a>
fix(html): handle offset magic-string slice error (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15435">#15435</a>)</li>
<li><a
href="49d21fe1fe"><code>49d21fe</code></a>
chore(deps): update dependency strip-literal to v2 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15475">#15475</a>)</li>
<li><a
href="8de7bd2b68"><code>8de7bd2</code></a>
fix(assets): avoid splitting <code>,</code> inside base64 value of
<code>srcset</code> attribute (#...</li>
<li><a
href="19e3c9a8a1"><code>19e3c9a</code></a>
fix: don't pretransform classic script links (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15361">#15361</a>)</li>
<li>See full diff in <a
href="https://github.com/vitejs/vite/commits/v5.0.12/packages/vite">compare
view</a></li>
</ul>
</details>
<br />

Updates `vitest` from 1.1.0 to 1.2.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases">vitest's
releases</a>.</em></p>
<blockquote>
<h2>v1.2.2</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>coverage</strong>:
<ul>
<li>Remove <code>coverage/.tmp</code> files after run  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5008">vitest-dev/vitest#5008</a>
<a href="https://github.com/vitest-dev/vitest/commit/d53b8580"><!-- raw
HTML omitted -->(d53b8)<!-- raw HTML omitted --></a></li>
<li>Don't crash when re-run removes earlier run's reports  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/5022">vitest-dev/vitest#5022</a>
<a href="https://github.com/vitest-dev/vitest/commit/6689856f"><!-- raw
HTML omitted -->(66898)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>expect</strong>:
<ul>
<li>Improve <code>toThrow(asymmetricMatcher)</code> failure message  - 
by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/5000">vitest-dev/vitest#5000</a>
<a href="https://github.com/vitest-dev/vitest/commit/a199ac2d"><!-- raw
HTML omitted -->(a199a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>forks</strong>:
<ul>
<li>Set correct <code>VITEST_POOL_ID</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code><...

_Description has been truncated_

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
2024-01-30 21:58:48 -05:00
Tyler Wilding 1689d296a6
docs: remove superfluous stuff from readme (#431) 2024-01-30 21:58:17 -05:00
Tyler Wilding a951d70e3f
backend: only quote the path when we are generating the command for CLI usage (#430)
Otherwise, this fails to launch the game because it wraps the path in
quote literals which causes the C++ code to fail (paths don't contain
quotes themselves.)
2024-01-30 21:44:54 -05:00
dependabot[bot] c2b75b64c9
build(deps): bump the backend-deps group in /src-tauri with 6 updates (#426)
Bumps the backend-deps group in /src-tauri with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [chrono](https://github.com/chronotope/chrono) | `0.4.31` | `0.4.33` |
| [semver](https://github.com/dtolnay/semver) | `1.0.20` | `1.0.21` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.113`
|
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.30.1` |
`0.30.5` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.52` |
`1.0.56` |
| [zip-extract](https://github.com/MCOfficer/zip-extract) | `0.1.2` |
`0.1.3` |

Updates `chrono` from 0.4.31 to 0.4.33
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chronotope/chrono/releases">chrono's
releases</a>.</em></p>
<blockquote>
<h2>0.4.33</h2>
<p>This release fixes the broken docrs.rs build of <a
href="https://github.com/chronotope/chrono/releases/tag/v0.4.32">chrono
0.4.32</a>.</p>
<h2>What's Changed</h2>
<ul>
<li>Make <code>rkyv</code> feature imply <code>size_32</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1383">#1383</a>)</li>
<li>Fixed typo in <code>Duration::hours()</code> exception (<a
href="https://redirect.github.com/chronotope/chrono/issues/1384">#1384</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
</ul>
<h2>v0.4.32</h2>
<p>In this release we shipped part of the effort to reduce the number of
methods that could unexpectedly panic, notably for the
<code>DateTime</code> and <code>Duration</code> types.</p>
<p>Chrono internally stores the value of a <code>DateTime</code> in UTC,
and transparently converts it to the local value as required. For
example adding a second to a <code>DateTime</code> needs to be done in
UTC to get the correct result, but adding a day needs to be done in
local time to be correct. What happens when the value is near the edge
of the representable range, and the implicit conversions pushes it
beyond the representable range? <em>Many</em> methods could panic on
such inputs, including formatting the value for <code>Debug</code>
output.</p>
<p>In chrono 0.4.32 the range of <code>NaiveDate</code>,
<code>NaiveDateTime</code> and <code>DateTime</code> is made slightly
smaller. This allows us to always do the implicit conversion, and in
many cases return the expected result. Specifically the range is now
from January 1, -262144 until December 31, 262143, one year less on both
sides than before. We expect this may trip up tests if you hardcoded the
<code>MIN</code> and <code>MAX</code> dates.</p>
<p><code>Duration</code> had a similar issue. The range of this type was
pretty arbitrary picked to match the range of an <code>i64</code> in
milliseconds. Negating an <code>i64::MIN</code> pushes a value out of
range, and in the same way negating <code>Duration::MIN</code> could
push it out of our defined range and cause a panic. This turns out to be
somewhat common and hidden behind many layers of abstraction. We
adjusted the type to have a minimum value of <code>-Duration::MAX</code>
instead and prevent the panic case.</p>
<p>Other highlights:</p>
<ul>
<li><code>Duration</code> gained new fallible initialization
methods.</li>
<li>Better support for <code>rkyv</code>.</li>
<li>Most methods on <code>NaiveDateTime</code> are now const.</li>
<li>We had to bump our MSRV to 1.61 to keep building with our
dependencies. This will also allow us to make more methods on
<code>DateTime</code> const in a future release.</li>
</ul>
<p>Complete list of changes:</p>
<h2>Fixes</h2>
<ul>
<li>Fix panic in <code>TimeZone::from_local_datetime</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1071">#1071</a>)</li>
<li>Fix out of range panics in <code>DateTime</code> getters and setters
(<a
href="https://redirect.github.com/chronotope/chrono/issues/1317">#1317</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1329">#1329</a>)</li>
</ul>
<h2>Additions</h2>
<ul>
<li>Add <code>NaiveDateTime::checked_(add|sub)_offset</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1313">#1313</a>)</li>
<li>Add <code>DateTime::to_utc</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1325">#1325</a>)</li>
<li>Duration features part 1 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1327">#1327</a>)</li>
<li>Make methods on <code>NaiveDateTime</code> const where possible (<a
href="https://redirect.github.com/chronotope/chrono/issues/1286">#1286</a>)</li>
<li>Split <code>clock</code> feature into <code>clock</code> and
<code>now</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1343">#1343</a>,
thanks <a
href="https://github.com/mmastrac"><code>@​mmastrac</code></a>)</li>
<li>Add <code>From&lt;NaiveDate&gt;</code> for
<code>NaiveDateTime</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1355">#1355</a>,
thanks <a
href="https://github.com/dcechano"><code>@​dcechano</code></a>)</li>
<li>Add <code>NaiveDateTime::from_timestamp_nanos</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1357">#1357</a>,
thanks <a
href="https://github.com/Ali-Mirghasemi"><code>@​Ali-Mirghasemi</code></a>)</li>
<li>Add <code>Months::num_months()</code> and <code>num_years()</code>
(<a
href="https://redirect.github.com/chronotope/chrono/issues/1373">#1373</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
<li>Add <code>DateTime&lt;Utc&gt;::from_timestamp_millis</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1374">#1374</a>,
thanks <a
href="https://github.com/xmakro"><code>@​xmakro</code></a>)</li>
</ul>
<h2>Changes</h2>
<ul>
<li>Fix panic in <code>Duration::MIN.abs()</code> (adjust
<code>Duration::MIN</code> by 1 millisecond) (<a
href="https://redirect.github.com/chronotope/chrono/issues/1334">#1334</a>)</li>
<li>Bump MSRV to 1.61 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1347">#1347</a>)</li>
<li>Update windows-targets requirement from 0.48 to 0.52 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1360">#1360</a>)</li>
<li>Update windows-bindgen to 0.52 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1379">#1379</a>)</li>
</ul>
<h2>Deprecations</h2>
<ul>
<li>Deprecate standalone <code>format</code> functions (<a
href="https://redirect.github.com/chronotope/chrono/issues/1306">#1306</a>)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li>Improve doc comment and tests for timestamp_nanos_opt (<a
href="https://redirect.github.com/chronotope/chrono/issues/1299">#1299</a>,
thanks <a
href="https://github.com/mlegner"><code>@​mlegner</code></a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="7c419a358e"><code>7c419a3</code></a>
Prepare 0.4.33 release</li>
<li><a
href="a9b37c4c81"><code>a9b37c4</code></a>
Make <code>rkyv</code> feature default to <code>size_32</code></li>
<li><a
href="a73b54320a"><code>a73b543</code></a>
Don't assume <code>rkyv-(16|32|64)</code> implies the <code>rkyv</code>
feature</li>
<li><a
href="b5381f8fb5"><code>b5381f8</code></a>
Fixed typo in Duration::hours() exception</li>
<li><a
href="bf704191f2"><code>bf70419</code></a>
52</li>
<li><a
href="7757386368"><code>7757386</code></a>
Prepare 0.4.32 release</li>
<li><a
href="cee242a656"><code>cee242a</code></a>
Fix typos in Datelike impl for DateTime</li>
<li><a
href="6ec8f97d16"><code>6ec8f97</code></a>
Add from_timestamp_millis to DateTime&lt;Utc&gt; (<a
href="https://redirect.github.com/chronotope/chrono/issues/1374">#1374</a>)</li>
<li><a
href="65f0cc2aa4"><code>65f0cc2</code></a>
CI Linting: Fix missing sources checkout in <code>toml</code> job.</li>
<li><a
href="5536687c0d"><code>5536687</code></a>
Add Months::as_u32() (<a
href="https://redirect.github.com/chronotope/chrono/issues/1373">#1373</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/chronotope/chrono/compare/v0.4.31...v0.4.33">compare
view</a></li>
</ul>
</details>
<br />

Updates `semver` from 1.0.20 to 1.0.21
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/semver/releases">semver's
releases</a>.</em></p>
<blockquote>
<h2>1.0.21</h2>
<ul>
<li>Update proc-macro2 to fix caching issue when using a rustc-wrapper
such as sccache</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f9cc2df941"><code>f9cc2df</code></a>
Release 1.0.21</li>
<li><a
href="87914b14dc"><code>87914b1</code></a>
Pull in proc-macro2 sccache fix</li>
<li><a
href="b6171889ac"><code>b617188</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/semver/issues/309">#309</a>
from dtolnay/optionifletelse</li>
<li><a
href="5481cb9574"><code>5481cb9</code></a>
Remove option_if_let_else clippy suppression</li>
<li>See full diff in <a
href="https://github.com/dtolnay/semver/compare/1.0.20...1.0.21">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.108 to 1.0.113
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.113</h2>
<ul>
<li>Add <code>swap_remove</code> and <code>shift_remove</code> methods
on Map (<a
href="https://redirect.github.com/serde-rs/json/issues/1109">#1109</a>)</li>
</ul>
<h2>v1.0.112</h2>
<ul>
<li>Improve formatting of &quot;invalid type&quot; error messages
involving floats (<a
href="https://redirect.github.com/serde-rs/json/issues/1107">#1107</a>)</li>
</ul>
<h2>v1.0.111</h2>
<ul>
<li>Improve floating point parsing performance on loongarch64 (<a
href="https://redirect.github.com/serde-rs/json/issues/1100">#1100</a>,
thanks <a
href="https://github.com/heiher"><code>@​heiher</code></a>)</li>
</ul>
<h2>v1.0.110</h2>
<ul>
<li>Update proc-macro2 to fix caching issue when using a rustc-wrapper
such as sccache</li>
</ul>
<h2>v1.0.109</h2>
<ul>
<li>Documentation improvements</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="09d865b34b"><code>09d865b</code></a>
Release 1.0.113</li>
<li><a
href="5aeab4eaf6"><code>5aeab4e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1109">#1109</a>
from serde-rs/remove</li>
<li><a
href="ca3c2ca369"><code>ca3c2ca</code></a>
Add swap_remove and shift_remove methods on Map</li>
<li><a
href="7fece969e3"><code>7fece96</code></a>
Release 1.0.112</li>
<li><a
href="6a6d2bbd9e"><code>6a6d2bb</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1107">#1107</a>
from serde-rs/unexpectedfloat</li>
<li><a
href="83d7bad54b"><code>83d7bad</code></a>
Format f64 in error messages using ryu</li>
<li><a
href="107c2d1c42"><code>107c2d1</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1106">#1106</a>
from serde-rs/invalidvalue</li>
<li><a
href="62ca3e4c01"><code>62ca3e4</code></a>
Handle Unexpected::Unit in Error::invalid_value</li>
<li><a
href="296fafb8f3"><code>296fafb</code></a>
Factor out JSON-specific Display impl for serde:🇩🇪:Unexpected</li>
<li><a
href="e56cc696bd"><code>e56cc69</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1105">#1105</a>
from keienWang/master</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/v1.0.108...v1.0.113">compare
view</a></li>
</ul>
</details>
<br />

Updates `sysinfo` from 0.30.1 to 0.30.5
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md">sysinfo's
changelog</a>.</em></p>
<blockquote>
<h1>0.30.5</h1>
<ul>
<li>Windows: Correctly retrieve processes name on 32 bits
platforms.</li>
<li>Windows: Fix swap memory computation.</li>
</ul>
<h1>0.30.4</h1>
<ul>
<li>Windows: Fix misaligned read.</li>
</ul>
<h1>0.30.3</h1>
<ul>
<li>Improve dependency stack by updating the <code>windows</code>
dependency.</li>
</ul>
<h1>0.30.2</h1>
<ul>
<li>Add <code>ThreadKind</code> enum.</li>
<li>Add <code>Process::thread_kind</code> method.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/GuillaumeGomez/sysinfo/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `thiserror` from 1.0.52 to 1.0.56
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/thiserror/releases">thiserror's
releases</a>.</em></p>
<blockquote>
<h2>1.0.56</h2>
<ul>
<li>Update proc-macro2 to fix caching issue when using a rustc-wrapper
such as sccache</li>
</ul>
<h2>1.0.55</h2>
<ul>
<li>Work around improperly cached build script result by sccache –
second attempt (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/280">#280</a>)</li>
</ul>
<h2>1.0.54</h2>
<ul>
<li>Work around improperly cached build script result by sccache – first
attempt (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/279">#279</a>)</li>
</ul>
<h2>1.0.53</h2>
<ul>
<li>Reduce spurious rebuilds under RustRover IDE when using a nightly
toolchain (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/270">#270</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="77d0af46dd"><code>77d0af4</code></a>
Release 1.0.56</li>
<li><a
href="d4caabdb38"><code>d4caabd</code></a>
Pull in proc-macro2 sccache fix</li>
<li><a
href="6089273df5"><code>6089273</code></a>
Release 1.0.55</li>
<li><a
href="322a2ae5c9"><code>322a2ae</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/280">#280</a>
from dtolnay/depinfo</li>
<li><a
href="fd7d7a568c"><code>fd7d7a5</code></a>
Emit dep-info for probe.rs in case sccache needs it</li>
<li><a
href="447c328719"><code>447c328</code></a>
Release 1.0.54</li>
<li><a
href="4619db8644"><code>4619db8</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/279">#279</a>
from dtolnay/depinfo</li>
<li><a
href="7b53bff3e6"><code>7b53bff</code></a>
Make env-dep:RUSTC_BOOTSTRAP get listed in probe's dep-info</li>
<li><a
href="e0500add5e"><code>e0500ad</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/277">#277</a>
from dtolnay/nightlyci</li>
<li><a
href="48cea47164"><code>48cea47</code></a>
Make CI verify that error_generic_member_access works in latest
nightly</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/thiserror/compare/1.0.52...1.0.56">compare
view</a></li>
</ul>
</details>
<br />

Updates `zip-extract` from 0.1.2 to 0.1.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="90fe07d6ed"><code>90fe07d</code></a>
chore: Release zip-extract version 0.1.3</li>
<li><a
href="9e2479b4f7"><code>9e2479b</code></a>
update dev-dependencies (dir-diff v0.3.3, tempfile v3.9.0)</li>
<li><a
href="012ae6144f"><code>012ae61</code></a>
update log to v0.4.20</li>
<li><a
href="a78922f2b2"><code>a78922f</code></a>
update zip to v0.6.6</li>
<li><a
href="96a53629b4"><code>96a5362</code></a>
fix: mirror the features of the zip crate (<a
href="https://redirect.github.com/MCOfficer/zip-extract/issues/15">#15</a>)</li>
<li>See full diff in <a
href="https://github.com/MCOfficer/zip-extract/compare/v0.1.2...v0.1.3">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-30 21:33:08 -05:00
Tyler Wilding cc07bc5c70
New Crowdin updates (#429) 2024-01-30 21:31:30 -05:00
Tyler Wilding a3ab558f1d
pages: add jak 3 in progress page (#428) 2024-01-30 21:31:22 -05:00
dependabot[bot] 0fbd75e944
build(deps): bump the frontend-deps-tauri group with 2 updates (#415)
Bumps the frontend-deps-tauri group with 2 updates:
[@tauri-apps/api](https://github.com/tauri-apps/tauri) and
[@tauri-apps/cli](https://github.com/tauri-apps/tauri).

Updates `@tauri-apps/api` from 1.5.2 to 1.5.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases"><code>@​tauri-apps/api</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​tauri-apps/api</code> v1.5.3</h2>
<!-- raw HTML omitted -->
<pre><code>yarn audit v1.22.21
info No lockfile found.
0 vulnerabilities found - Packages audited: 148
Done in 2.29s.
</code></pre>
<!-- raw HTML omitted -->
<h2>[1.5.3]</h2>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="1c582a942e"><code>1c582a94</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8392">#8392</a>)
Fix a regression where typescript could not find types when using
<code>&quot;moduleResolution&quot;: &quot;node&quot;</code></li>
</ul>
<!-- raw HTML omitted -->
<pre><code>yarn run v1.22.21
$ yarn build &amp;&amp; cd ./dist &amp;&amp; yarn publish --access
public --loglevel silly
$ rollup -c --configPlugin typescript

./src/app.ts, ./src/cli.ts, ./src/clipboard.ts, ./src/dialog.ts,
./src/event.ts, ./src/fs.ts, ./src/globalShortcut.ts, ./src/http.ts,
./src/index.ts, ./src/mocks.ts, ./src/notification.ts, ./src/os.ts,
./src/path.ts, ./src/process.ts, ./src/shell.ts, ./src/tauri.ts,
./src/updater.ts, ./src/window.ts → ./dist, ./dist...
created ./dist, ./dist in 1.6s

src/index.ts →
../../core/tauri/scripts/bundle.global.js...
created ../../core/tauri/scripts/bundle.global.js in
1.8s
[1/4] Bumping version...
info Current version: 1.5.3
[2/4] Logging in...
[3/4] Publishing...
success Published.
[4/4] Revoking token...
info Not revoking login token, specified via config file.
Done in 12.73s.
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5966812735"><code>5966812</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8396">#8396</a>)</li>
<li><a
href="b44e9c0fcb"><code>b44e9c0</code></a>
feat(bundler): redownload outdated/mis-hashed files (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8431">#8431</a>)</li>
<li><a
href="b2f83f03a8"><code>b2f83f0</code></a>
fix(core): Replace Rc with Arc to prevent crashes when sending events
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8402">#8402</a>)</li>
<li><a
href="0a2175eabb"><code>0a2175e</code></a>
fix(cli): expand globs in workspace member paths (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8439">#8439</a>)</li>
<li><a
href="645e1dcc6e"><code>645e1dc</code></a>
fix(core/updater): check if installer args are not empty before passing
`-Arg...</li>
<li><a
href="50a3d170f2"><code>50a3d17</code></a>
fix(core/dialog): reconstruct path using appropriate separator, closes
<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8074">#8074</a>
...</li>
<li><a
href="9b230de7bc"><code>9b230de</code></a>
fix(utils/config): fix parsing <code>f64</code> values, closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8252">#8252</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8407">#8407</a>)</li>
<li><a
href="50e9caad64"><code>50e9caa</code></a>
ci: access cli release id directly (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8398">#8398</a>)</li>
<li><a
href="e5cc72eb40"><code>e5cc72e</code></a>
ci: fix msrv tests (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8409">#8409</a>)</li>
<li><a
href="0d0501cb7b"><code>0d0501c</code></a>
refactor(clipboard): use arboard instead of tao closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8177">#8177</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8394">#8394</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tauri-apps/tauri/compare/@tauri-apps/api-v1.5.2...@tauri-apps/api-v1.5.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `@tauri-apps/cli` from 1.5.8 to 1.5.9
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases"><code>@​tauri-apps/cli</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​tauri-apps/cli</code> v1.5.9</h2>
<h2>[1.5.9]</h2>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="0a2175eabb"><code>0a2175ea</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8439">#8439</a>)
Expand glob patterns in workspace member paths so the CLI would watch
all matching pathhs.</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li>Upgraded to <code>tauri-cli@1.5.9</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5966812735"><code>5966812</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8396">#8396</a>)</li>
<li><a
href="b44e9c0fcb"><code>b44e9c0</code></a>
feat(bundler): redownload outdated/mis-hashed files (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8431">#8431</a>)</li>
<li><a
href="b2f83f03a8"><code>b2f83f0</code></a>
fix(core): Replace Rc with Arc to prevent crashes when sending events
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8402">#8402</a>)</li>
<li><a
href="0a2175eabb"><code>0a2175e</code></a>
fix(cli): expand globs in workspace member paths (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8439">#8439</a>)</li>
<li><a
href="645e1dcc6e"><code>645e1dc</code></a>
fix(core/updater): check if installer args are not empty before passing
`-Arg...</li>
<li><a
href="50a3d170f2"><code>50a3d17</code></a>
fix(core/dialog): reconstruct path using appropriate separator, closes
<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8074">#8074</a>
...</li>
<li><a
href="9b230de7bc"><code>9b230de</code></a>
fix(utils/config): fix parsing <code>f64</code> values, closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8252">#8252</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8407">#8407</a>)</li>
<li><a
href="50e9caad64"><code>50e9caa</code></a>
ci: access cli release id directly (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8398">#8398</a>)</li>
<li><a
href="e5cc72eb40"><code>e5cc72e</code></a>
ci: fix msrv tests (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8409">#8409</a>)</li>
<li><a
href="0d0501cb7b"><code>0d0501c</code></a>
refactor(clipboard): use arboard instead of tao closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8177">#8177</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8394">#8394</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tauri-apps/tauri/compare/@tauri-apps/cli-v1.5.8...@tauri-apps/cli-v1.5.9">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-29 11:13:17 -05:00
dependabot[bot] a82d6885c4
build(deps-dev): bump the frontend-deps group with 5 updates (#414)
Bumps the frontend-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
|
[@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8)
| `1.0.4` | `1.1.0` |
| [classnames](https://github.com/JedWatson/classnames) | `2.3.2` |
`2.3.3` |
| [flowbite-svelte](https://github.com/themesberg/flowbite-svelte) |
`0.44.20` | `0.44.21` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.3.7` |
`3.4.0` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `1.0.4` | `1.1.0` |

Updates `@vitest/coverage-v8` from 1.0.4 to 1.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.1.0</h2>
<h3>   🚀 Features</h3>
<ul>
<li>Add es-main compatibility to vite-node  -  by <a
href="https://github.com/zookatron"><code>@​zookatron</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4751">vitest-dev/vitest#4751</a>
<a href="https://github.com/vitest-dev/vitest/commit/486a3e61"><!-- raw
HTML omitted -->(486a3)<!-- raw HTML omitted --></a></li>
<li>Add <code>--workspace</code> option, fix root resolution in
workspaces  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and
<a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4773">vitest-dev/vitest#4773</a>
<a href="https://github.com/vitest-dev/vitest/commit/67d93eda"><!-- raw
HTML omitted -->(67d93)<!-- raw HTML omitted --></a></li>
<li>Add <code>--no-file-parallelism</code>, <code>--maxWorkers</code>,
<code>--minWorkers</code> flags  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and
<a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4705">vitest-dev/vitest#4705</a>
<a href="https://github.com/vitest-dev/vitest/commit/fd5d7e66"><!-- raw
HTML omitted -->(fd5d7)<!-- raw HTML omitted --></a></li>
<li>Add <code>--no-isolate</code> flag to improve performance, add
documentation about performance  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>, <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> and
<strong>Pascal Jufer</strong> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4777">vitest-dev/vitest#4777</a>
<a href="https://github.com/vitest-dev/vitest/commit/4d55a026"><!-- raw
HTML omitted -->(4d55a)<!-- raw HTML omitted --></a></li>
<li>Add <code>--exclude</code> CLI flag  -  by <a
href="https://github.com/Namchee"><code>@​Namchee</code></a> and <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4279">vitest-dev/vitest#4279</a>
<a href="https://github.com/vitest-dev/vitest/commit/f859efc0"><!-- raw
HTML omitted -->(f859e)<!-- raw HTML omitted --></a></li>
</ul>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Correctly reset provided values  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4775">vitest-dev/vitest#4775</a>
<a href="https://github.com/vitest-dev/vitest/commit/5a71eb30"><!-- raw
HTML omitted -->(5a71e)<!-- raw HTML omitted --></a></li>
<li><strong>expect</strong>:
<ul>
<li>Fix <code>toHaveProperty</code> assertion error diff  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4734">vitest-dev/vitest#4734</a>
<a href="https://github.com/vitest-dev/vitest/commit/f8f70f7c"><!-- raw
HTML omitted -->(f8f70)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Handle fixture teardown error  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4683">vitest-dev/vitest#4683</a>
<a href="https://github.com/vitest-dev/vitest/commit/c6f5f7f9"><!-- raw
HTML omitted -->(c6f5f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>types</strong>:
<ul>
<li><code>defineWorkspace</code> fix intellisense and report type errors
 -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4743">vitest-dev/vitest#4743</a>
<a href="https://github.com/vitest-dev/vitest/commit/9cc36689"><!-- raw
HTML omitted -->(9cc36)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>ui</strong>:
<ul>
<li>Escape html for console log view  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4724">vitest-dev/vitest#4724</a>
<a href="https://github.com/vitest-dev/vitest/commit/e0dde6ab"><!-- raw
HTML omitted -->(e0dde)<!-- raw HTML omitted --></a></li>
<li>Fix coverage iframe url for html report preview  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4717">vitest-dev/vitest#4717</a>
<a href="https://github.com/vitest-dev/vitest/commit/71911039"><!-- raw
HTML omitted -->(71911)<!-- raw HTML omitted --></a></li>
<li>Show file item when search filter matches only test cases  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4736">vitest-dev/vitest#4736</a>
<a href="https://github.com/vitest-dev/vitest/commit/f43fdd87"><!-- raw
HTML omitted -->(f43fd)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Pass down CLI options to override workspace configs  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4774">vitest-dev/vitest#4774</a>
<a href="https://github.com/vitest-dev/vitest/commit/8dabef86"><!-- raw
HTML omitted -->(8dabe)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.0.4...v1.1.0">View
changes on GitHub</a></h5>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9497f484cf"><code>9497f48</code></a>
chore: release v1.1.0</li>
<li>See full diff in <a
href="https://github.com/vitest-dev/vitest/commits/v1.1.0/packages/coverage-v8">compare
view</a></li>
</ul>
</details>
<br />

Updates `classnames` from 2.3.2 to 2.3.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/JedWatson/classnames/blob/main/HISTORY.md">classnames's
changelog</a>.</em></p>
<blockquote>
<h2>v2.3.3 / 2023-12-21</h2>
<ul>
<li>Fix default export, thanks <a
href="https://github.com/remcohaszing">Remco Haszing</a> (<a
href="https://redirect.github.com/JedWatson/classnames/pull/301">#301</a>)</li>
<li>Fix types for read-only arrays, thanks <a
href="https://github.com/BenGearset">Ben Thompson</a> (<a
href="https://redirect.github.com/JedWatson/classnames/pull/307">#307</a>)</li>
<li>Replace README examples with functional-style components, thanks <a
href="https://github.com/JoeDGit">JoeDGit</a> (<a
href="https://redirect.github.com/JedWatson/classnames/pull/303">#303</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/JedWatson/classnames/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `flowbite-svelte` from 0.44.20 to 0.44.21
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite-svelte/blob/main/CHANGELOG.md">flowbite-svelte's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.20...v0.44.21">0.44.21</a>
(2023-12-22)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1157">#1157</a>
(<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1176">#1176</a>)
(<a
href="a15a36173b">a15a361</a>)</li>
<li>issue1178 (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1179">#1179</a>)
(<a
href="12281fdebe">12281fd</a>)</li>
<li>modal outside click only on mouse down (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1160">#1160</a>)
(<a
href="96e4d4b968">96e4d4b</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ef7f74477b"><code>ef7f744</code></a>
chore(release): 0.44.21</li>
<li><a
href="464eedfc06"><code>464eedf</code></a>
docs: update copy-pasted input in Validation section of input-field (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1192">#1192</a>)</li>
<li><a
href="6b7de16afb"><code>6b7de16</code></a>
fix carousel loop last image (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1191">#1191</a>)</li>
<li><a
href="61823c7745"><code>61823c7</code></a>
fix in vertical padding (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1190">#1190</a>)</li>
<li><a
href="12281fdebe"><code>12281fd</code></a>
fix: issue1178 (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1179">#1179</a>)</li>
<li><a
href="7b052ffec7"><code>7b052ff</code></a>
fix to dropdown docs (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1177">#1177</a>)</li>
<li><a
href="a15a36173b"><code>a15a361</code></a>
fix: <a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1157">#1157</a>
(<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1176">#1176</a>)</li>
<li><a
href="96e4d4b968"><code>96e4d4b</code></a>
fix: modal outside click only on mouse down (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1160">#1160</a>)</li>
<li><a
href="38d022086a"><code>38d0220</code></a>
Updated list-group documentation link example to redirect to actual
documenta...</li>
<li><a
href="b9fe148897"><code>b9fe148</code></a>
RTL support (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1169">#1169</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.20...v0.44.21">compare
view</a></li>
</ul>
</details>
<br />

Updates `tailwindcss` from 3.3.7 to 3.4.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's
releases</a>.</em></p>
<blockquote>
<h2>v3.4.0</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML
omitted --></p>
<p>Tailwind CSS v3.4 has arrived! Check out the <a
href="https://tailwindcss.com/blog/tailwindcss-v3-4">announcement
post</a> for a guided tour through all of the highlights.</p>
<h3>Added</h3>
<ul>
<li>Add <code>svh</code>, <code>lvh</code>, and <code>dvh</code> values
to default
<code>height</code>/<code>min-height</code>/<code>max-height</code>
theme (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11317">#11317</a>)</li>
<li>Add <code>has-*</code> variants for <code>:has(...)</code>
pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11318">#11318</a>)</li>
<li>Add <code>text-wrap</code> utilities including
<code>text-balance</code> and <code>text-pretty</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11320">#11320</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12031">#12031</a>)</li>
<li>Extend default <code>opacity</code> scale to include all steps of 5
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11832">#11832</a>)</li>
<li>Update Preflight <code>html</code> styles to include shadow DOM
<code>:host</code> pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11200">#11200</a>)</li>
<li>Increase default values for <code>grid-rows-*</code> utilities from
1–6 to 1–12 (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12180">#12180</a>)</li>
<li>Add <code>size-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12287">#12287</a>)</li>
<li>Add utilities for CSS subgrid (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12298">#12298</a>)</li>
<li>Add spacing scale to <code>min-w-*</code>, <code>min-h-*</code>, and
<code>max-w-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12300">#12300</a>)</li>
<li>Add <code>forced-color-adjust</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11931">#11931</a>)</li>
<li>Add <code>forced-colors</code> variant (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11694">#11694</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12582">#12582</a>)</li>
<li>Add <code>appearance-auto</code> utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12404">#12404</a>)</li>
<li>Add logical property values for <code>float</code> and
<code>clear</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12480">#12480</a>)</li>
<li>Add <code>*</code> variant for targeting direct children (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12551">#12551</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Simplify the <code>sans</code> font-family stack (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11748">#11748</a>)</li>
<li>Disable the tap highlight overlay on iOS (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12299">#12299</a>)</li>
<li>Improve relative precedence of <code>rtl</code>, <code>ltr</code>,
<code>forced-colors</code>, and <code>dark</code> variants (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12584">#12584</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md">tailwindcss's
changelog</a>.</em></p>
<blockquote>
<h2>[3.4.0] - 2023-12-19</h2>
<h3>Added</h3>
<ul>
<li>Add <code>svh</code>, <code>lvh</code>, and <code>dvh</code> values
to default
<code>height</code>/<code>min-height</code>/<code>max-height</code>
theme (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11317">#11317</a>)</li>
<li>Add <code>has-*</code> variants for <code>:has(...)</code>
pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11318">#11318</a>)</li>
<li>Add <code>text-wrap</code> utilities including
<code>text-balance</code> and <code>text-pretty</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11320">#11320</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12031">#12031</a>)</li>
<li>Extend default <code>opacity</code> scale to include all steps of 5
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11832">#11832</a>)</li>
<li>Update Preflight <code>html</code> styles to include shadow DOM
<code>:host</code> pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11200">#11200</a>)</li>
<li>Increase default values for <code>grid-rows-*</code> utilities from
1–6 to 1–12 (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12180">#12180</a>)</li>
<li>Add <code>size-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12287">#12287</a>)</li>
<li>Add utilities for CSS subgrid (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12298">#12298</a>)</li>
<li>Add spacing scale to <code>min-w-*</code>, <code>min-h-*</code>, and
<code>max-w-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12300">#12300</a>)</li>
<li>Add <code>forced-color-adjust</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11931">#11931</a>)</li>
<li>Add <code>forced-colors</code> variant (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11694">#11694</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12582">#12582</a>)</li>
<li>Add <code>appearance-auto</code> utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12404">#12404</a>)</li>
<li>Add logical property values for <code>float</code> and
<code>clear</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12480">#12480</a>)</li>
<li>Add <code>*</code> variant for targeting direct children (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12551">#12551</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Simplify the <code>sans</code> font-family stack (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11748">#11748</a>)</li>
<li>Disable the tap highlight overlay on iOS (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12299">#12299</a>)</li>
<li>Improve relative precedence of <code>rtl</code>, <code>ltr</code>,
<code>forced-colors</code>, and <code>dark</code> variants (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12584">#12584</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8350cffdad"><code>8350cff</code></a>
3.4.0</li>
<li><a
href="fbdb858e97"><code>fbdb858</code></a>
Improve relative precedence of <code>rtl</code>, <code>ltr</code>,
<code>forced-colors</code> and <code>dark</code> varia...</li>
<li><a
href="dae4618e97"><code>dae4618</code></a>
Update changelog</li>
<li><a
href="11a6ba3949"><code>11a6ba3</code></a>
Move forced-colors variant after dark variant (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12582">#12582</a>)</li>
<li><a
href="47dbb4a2b3"><code>47dbb4a</code></a>
Add <code>*</code> variant for targeting direct children (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12551">#12551</a>)</li>
<li><a
href="7642e28cfe"><code>7642e28</code></a>
Disable tap highlights on iOS (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12299">#12299</a>)</li>
<li><a
href="06972065de"><code>0697206</code></a>
feat(preflight): simplify sans-serif font stack (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/11748">#11748</a>)</li>
<li><a
href="b215f13276"><code>b215f13</code></a>
Update changelog</li>
<li><a
href="9129defd0d"><code>9129def</code></a>
Add logical properties support for float and clear (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12480">#12480</a>)</li>
<li><a
href="4ef97179cd"><code>4ef9717</code></a>
Fix typo in changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/tailwindlabs/tailwindcss/compare/v3.3.7...v3.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `vitest` from 1.0.4 to 1.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases">vitest's
releases</a>.</em></p>
<blockquote>
<h2>v1.1.0</h2>
<h3>   🚀 Features</h3>
<ul>
<li>Add es-main compatibility to vite-node  -  by <a
href="https://github.com/zookatron"><code>@​zookatron</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4751">vitest-dev/vitest#4751</a>
<a href="https://github.com/vitest-dev/vitest/commit/486a3e61"><!-- raw
HTML omitted -->(486a3)<!-- raw HTML omitted --></a></li>
<li>Add <code>--workspace</code> option, fix root resolution in
workspaces  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and
<a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4773">vitest-dev/vitest#4773</a>
<a href="https://github.com/vitest-dev/vitest/commit/67d93eda"><!-- raw
HTML omitted -->(67d93)<!-- raw HTML omitted --></a></li>
<li>Add <code>--no-file-parallelism</code>, <code>--maxWorkers</code>,
<code>--minWorkers</code> flags  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and
<a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4705">vitest-dev/vitest#4705</a>
<a href="https://github.com/vitest-dev/vitest/commit/fd5d7e66"><!-- raw
HTML omitted -->(fd5d7)<!-- raw HTML omitted --></a></li>
<li>Add <code>--no-isolate</code> flag to improve performance, add
documentation about performance  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>, <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> and
<strong>Pascal Jufer</strong> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4777">vitest-dev/vitest#4777</a>
<a href="https://github.com/vitest-dev/vitest/commit/4d55a026"><!-- raw
HTML omitted -->(4d55a)<!-- raw HTML omitted --></a></li>
<li>Add <code>--exclude</code> CLI flag  -  by <a
href="https://github.com/Namchee"><code>@​Namchee</code></a> and <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4279">vitest-dev/vitest#4279</a>
<a href="https://github.com/vitest-dev/vitest/commit/f859efc0"><!-- raw
HTML omitted -->(f859e)<!-- raw HTML omitted --></a></li>
</ul>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Correctly reset provided values  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4775">vitest-dev/vitest#4775</a>
<a href="https://github.com/vitest-dev/vitest/commit/5a71eb30"><!-- raw
HTML omitted -->(5a71e)<!-- raw HTML omitted --></a></li>
<li><strong>expect</strong>:
<ul>
<li>Fix <code>toHaveProperty</code> assertion error diff  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4734">vitest-dev/vitest#4734</a>
<a href="https://github.com/vitest-dev/vitest/commit/f8f70f7c"><!-- raw
HTML omitted -->(f8f70)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Handle fixture teardown error  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4683">vitest-dev/vitest#4683</a>
<a href="https://github.com/vitest-dev/vitest/commit/c6f5f7f9"><!-- raw
HTML omitted -->(c6f5f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>types</strong>:
<ul>
<li><code>defineWorkspace</code> fix intellisense and report type errors
 -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4743">vitest-dev/vitest#4743</a>
<a href="https://github.com/vitest-dev/vitest/commit/9cc36689"><!-- raw
HTML omitted -->(9cc36)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>ui</strong>:
<ul>
<li>Escape html for console log view  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4724">vitest-dev/vitest#4724</a>
<a href="https://github.com/vitest-dev/vitest/commit/e0dde6ab"><!-- raw
HTML omitted -->(e0dde)<!-- raw HTML omitted --></a></li>
<li>Fix coverage iframe url for html report preview  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4717">vitest-dev/vitest#4717</a>
<a href="https://github.com/vitest-dev/vitest/commit/71911039"><!-- raw
HTML omitted -->(71911)<!-- raw HTML omitted --></a></li>
<li>Show file item when search filter matches only test cases  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4736">vitest-dev/vitest#4736</a>
<a href="https://github.com/vitest-dev/vitest/commit/f43fdd87"><!-- raw
HTML omitted -->(f43fd)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Pass down CLI options to override workspace configs  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4774">vitest-dev/vitest#4774</a>
<a href="https://github.com/vitest-dev/vitest/commit/8dabef86"><!-- raw
HTML omitted -->(8dabe)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.0.4...v1.1.0">View
changes on GitHub</a></h5>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9497f484cf"><code>9497f48</code></a>
chore: release v1.1.0</li>
<li><a
href="e975b5729f"><code>e975b57</code></a>
types: use satisfies for defaults (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4738">#4738</a>)</li>
<li><a
href="f859efc094"><code>f859efc</code></a>
feat: add <code>--exclude</code> CLI flag (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4279">#4279</a>)</li>
<li><a
href="4d55a026d2"><code>4d55a02</code></a>
feat: add --no-isolate flag to improve performance, add documentation
about p...</li>
<li><a
href="fd5d7e66e4"><code>fd5d7e6</code></a>
feat: add --no-file-parallelism, --maxWorkers, --minWorkers flags (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4705">#4705</a>)</li>
<li><a
href="67d93eda66"><code>67d93ed</code></a>
feat: add --workspace option, fix root resolution in workspaces (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4773">#4773</a>)</li>
<li><a
href="8dabef860a"><code>8dabef8</code></a>
fix(vitest): pass down CLI options to override workspace configs (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4774">#4774</a>)</li>
<li><a
href="5a71eb3038"><code>5a71eb3</code></a>
fix: correctly reset provided values (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4775">#4775</a>)</li>
<li><a
href="9cc3668960"><code>9cc3668</code></a>
fix(types): <code>defineWorkspace</code> fix intellisense and report
type errors (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4743">#4743</a>)</li>
<li><a
href="9c552b6f8d"><code>9c552b6</code></a>
chore(deps): update dependency <code>@​types/prompts</code> to ^2.4.9
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/4720">#4720</a>)</li>
<li>See full diff in <a
href="https://github.com/vitest-dev/vitest/commits/v1.1.0/packages/vitest">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-29 11:12:56 -05:00
dependabot[bot] 079abf73f8
build(deps): bump the backend-deps group in /src-tauri with 8 updates (#416)
Bumps the backend-deps group in /src-tauri with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [dir-diff](https://github.com/assert-rs/dir-diff) | `0.3.2` | `0.3.3`
|
| [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.29` |
`0.3.30` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` |
`0.11.23` |
| [serde](https://github.com/serde-rs/serde) | `1.0.191` | `1.0.193` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.29.10` |
`0.30.1` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` |
`1.0.52` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.33.0` | `1.35.1` |
| [wgpu](https://github.com/gfx-rs/wgpu) | `0.17.1` | `0.18.0` |

Updates `dir-diff` from 0.3.2 to 0.3.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/assert-rs/dir-diff/blob/master/CHANGELOG.md">dir-diff's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/assert-rs/dir-diff/compare/e7b7555...v0.3.3">0.3.3</a>
- 2023-12-19</h2>
<!-- raw HTML omitted -->
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b8ddb0c548"><code>b8ddb0c</code></a>
chore: Release dir-diff version 0.3.3</li>
<li><a
href="d7fc3e4507"><code>d7fc3e4</code></a>
chore: Fix release branch</li>
<li><a
href="e691bf90c4"><code>e691bf9</code></a>
chore: Correct base version</li>
<li><a
href="646bdb5c72"><code>646bdb5</code></a>
Merge pull request <a
href="https://redirect.github.com/assert-rs/dir-diff/issues/28">#28</a>
from assert-rs/renovate/rust-1.x</li>
<li><a
href="ba2b61b844"><code>ba2b61b</code></a>
chore(deps): update msrv to v1.66</li>
<li><a
href="587a8b4dab"><code>587a8b4</code></a>
Merge pull request <a
href="https://redirect.github.com/assert-rs/dir-diff/issues/27">#27</a>
from epage/template</li>
<li><a
href="60920cd139"><code>60920cd</code></a>
chore: Adopt '_rust/main' template</li>
<li><a
href="2cb5cb6170"><code>2cb5cb6</code></a>
Merge pull request <a
href="https://redirect.github.com/assert-rs/dir-diff/issues/26">#26</a>
from wiktor-k/impl-display-error</li>
<li><a
href="796b589e00"><code>796b589</code></a>
Implement std::fmt::Display and std::error::Error</li>
<li><a
href="8c836eaa9d"><code>8c836ea</code></a>
Merge pull request <a
href="https://redirect.github.com/assert-rs/dir-diff/issues/10">#10</a>
from epage/renovate/migrate-config</li>
<li>Additional commits viewable in <a
href="https://github.com/assert-rs/dir-diff/compare/v0.3.2...v0.3.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `futures-util` from 0.3.29 to 0.3.30
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/futures-rs/releases">futures-util's
releases</a>.</em></p>
<blockquote>
<h2>0.3.30</h2>
<ul>
<li>Add
<code>{BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of</code>
(<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2797">#2797</a>)</li>
<li>Fix panic in <code>FuturesUnordered::clear</code> (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2809">#2809</a>)</li>
<li>Fix panic in <code>AsyncBufReadExt::fill_buf</code> (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2801">#2801</a>,
<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2812">#2812</a>)</li>
<li>Improve support for targets without atomic CAS (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2811">#2811</a>)</li>
<li>Remove build scripts (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2811">#2811</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures-util's
changelog</a>.</em></p>
<blockquote>
<h1>0.3.30 - 2023-12-24</h1>
<ul>
<li>Add
<code>{BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of</code>
(<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2797">#2797</a>)</li>
<li>Fix panic in <code>FuturesUnordered::clear</code> (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2809">#2809</a>)</li>
<li>Fix panic in <code>AsyncBufReadExt::fill_buf</code> (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2801">#2801</a>,
<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2812">#2812</a>)</li>
<li>Improve support for targets without atomic CAS (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2811">#2811</a>)</li>
<li>Remove build scripts (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2811">#2811</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="de1a0fd64a"><code>de1a0fd</code></a>
Release 0.3.30</li>
<li><a
href="68d284545f"><code>68d2845</code></a>
Remove a redundant space in example (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2816">#2816</a>)</li>
<li><a
href="fdd2ce716c"><code>fdd2ce7</code></a>
Fix broken link in <code>CopyBufAbortable</code> docs (<a
href="https://redirect.github.com/rust-lang/futures-rs/issues/2815">#2815</a>)</li>
<li><a
href="272a3c709f"><code>272a3c7</code></a>
Use cfg(target_has_atomic) on no-std targets</li>
<li><a
href="c179201bd1"><code>c179201</code></a>
FillBuf: Do not call poll_fill_buf twice</li>
<li><a
href="e6735f3d01"><code>e6735f3</code></a>
FuturesUnordered: Fix clear implementation</li>
<li><a
href="04d01a00a2"><code>04d01a0</code></a>
FuturesOrdered: Use 64-bit index</li>
<li><a
href="e4aa659649"><code>e4aa659</code></a>
remove redundant impl Unpin</li>
<li><a
href="17851c1f05"><code>17851c1</code></a>
provide a mechanism to determine if io read/write halves are from the
same st...</li>
<li><a
href="49107994e5"><code>4910799</code></a>
provide a non-destructive mechanism to determine if a sink/stream are
paired</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30">compare
view</a></li>
</ul>
</details>
<br />

Updates `reqwest` from 0.11.22 to 0.11.23
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/seanmonstar/reqwest/releases">reqwest's
releases</a>.</em></p>
<blockquote>
<h2>v0.11.23</h2>
<h2>What's Changed</h2>
<ul>
<li>Add <code>Proxy::custom_http_auth(val)</code> for setting the raw
<code>Proxy-Authorization</code> header when connecting to proxies.</li>
<li>Fix redirect to reject locations that are not <code>http://</code>
or <code>https://</code>.</li>
<li>Fix setting <code>nodelay</code> when TLS is enabled but URL is
HTTP.</li>
<li>(wasm) Add <code>ClientBuilder::user_agent(val)</code>.</li>
<li>(wasm) add <code>multipart::Form::headers(headers)</code>.</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/tnull"><code>@​tnull</code></a> made
their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/1993">seanmonstar/reqwest#1993</a></li>
<li><a
href="https://github.com/FirelightFlagboy"><code>@​FirelightFlagboy</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2018">seanmonstar/reqwest#2018</a></li>
<li><a href="https://github.com/bitfl0wer"><code>@​bitfl0wer</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2036">seanmonstar/reqwest#2036</a></li>
<li><a href="https://github.com/tshepang"><code>@​tshepang</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2048">seanmonstar/reqwest#2048</a></li>
<li><a
href="https://github.com/Noah-Kennedy"><code>@​Noah-Kennedy</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2053">seanmonstar/reqwest#2053</a></li>
<li><a href="https://github.com/abls"><code>@​abls</code></a> made their
first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2062">seanmonstar/reqwest#2062</a></li>
<li><a href="https://github.com/lorepozo"><code>@​lorepozo</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2064">seanmonstar/reqwest#2064</a></li>
<li><a href="https://github.com/jan-auer"><code>@​jan-auer</code></a>
made their first contribution in <a
href="https://redirect.github.com/seanmonstar/reqwest/pull/2068">seanmonstar/reqwest#2068</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md">reqwest's
changelog</a>.</em></p>
<blockquote>
<h2>v0.11.23</h2>
<ul>
<li>Add <code>Proxy::custom_http_auth(val)</code> for setting the raw
<code>Proxy-Authorization</code> header when connecting to proxies.</li>
<li>Fix redirect to reject locations that are not <code>http://</code>
or <code>https://</code>.</li>
<li>Fix setting <code>nodelay</code> when TLS is enabled but URL is
HTTP.</li>
<li>(wasm) Add <code>ClientBuilder::user_agent(val)</code>.</li>
<li>(wasm) add <code>multipart::Form::headers(headers)</code>.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="4f54ba732f"><code>4f54ba7</code></a>
v0.11.23</li>
<li><a
href="c65dd7f783"><code>c65dd7f</code></a>
docs: add cfg notes about http3 builder methods (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2070">#2070</a>)</li>
<li><a
href="6b901b1f32"><code>6b901b1</code></a>
Reject redirects with invalid scheme (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2068">#2068</a>)</li>
<li><a
href="ea5983487a"><code>ea59834</code></a>
Update README advice regarding OpenSSL (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2064">#2064</a>)</li>
<li><a
href="1485ce6f75"><code>1485ce6</code></a>
fix: set nodelay correctly to handle when a tls feature is enabled but
connec...</li>
<li><a
href="c09c5e6bbc"><code>c09c5e6</code></a>
proxy: add support for proxy authentication with user-specified header
values...</li>
<li><a
href="4926d76ae2"><code>4926d76</code></a>
typo (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2048">#2048</a>)</li>
<li><a
href="6792f697fc"><code>6792f69</code></a>
<code>fn headers()</code> for wasm::multipart (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2036">#2036</a>)</li>
<li><a
href="52190df64f"><code>52190df</code></a>
http3: upgrade dependencies (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2028">#2028</a>)</li>
<li><a
href="50dbaf3910"><code>50dbaf3</code></a>
docs: remove redundant link targets (<a
href="https://redirect.github.com/seanmonstar/reqwest/issues/2019">#2019</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.191 to 1.0.193
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.193</h2>
<ul>
<li>Fix field names used for the deserialization of
<code>RangeFrom</code> and <code>RangeTo</code> (<a
href="https://redirect.github.com/serde-rs/serde/issues/2653">#2653</a>,
<a
href="https://redirect.github.com/serde-rs/serde/issues/2654">#2654</a>,
<a
href="https://redirect.github.com/serde-rs/serde/issues/2655">#2655</a>,
thanks <a
href="https://github.com/emilbonnek"><code>@​emilbonnek</code></a>)</li>
</ul>
<h2>v1.0.192</h2>
<ul>
<li>Allow internal tag field in untagged variant (<a
href="https://redirect.github.com/serde-rs/serde/issues/2646">#2646</a>,
thanks <a
href="https://github.com/robsdedude"><code>@​robsdedude</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="44613c7d01"><code>44613c7</code></a>
Release 1.0.193</li>
<li><a
href="c706281df3"><code>c706281</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2655">#2655</a>
from dtolnay/rangestartend</li>
<li><a
href="65d75b8fe3"><code>65d75b8</code></a>
Add RangeFrom and RangeTo tests</li>
<li><a
href="332b0cba40"><code>332b0cb</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2654">#2654</a>
from dtolnay/rangestartend</li>
<li><a
href="8c4af41296"><code>8c4af41</code></a>
Fix more RangeFrom / RangeEnd mixups</li>
<li><a
href="24a78f071b"><code>24a78f0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2653">#2653</a>
from emilbonnek/fix/range-to-from-de-mixup</li>
<li><a
href="c91c33436d"><code>c91c334</code></a>
Fix Range{From,To} deserialize mixup</li>
<li><a
href="2083f43a28"><code>2083f43</code></a>
Update ui test suite to nightly-2023-11-19</li>
<li><a
href="4676abdc9e"><code>4676abd</code></a>
Release 1.0.192</li>
<li><a
href="35700eb23e"><code>35700eb</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2646">#2646</a>
from robsdedude/fix/2643/allow-tag-field-in-untagged</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.191...v1.0.193">compare
view</a></li>
</ul>
</details>
<br />

Updates `sysinfo` from 0.29.10 to 0.30.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md">sysinfo's
changelog</a>.</em></p>
<blockquote>
<h1>0.30.1</h1>
<ul>
<li>Linux: Fix invalid memory information retrieval (virtual and
resident set size were reversed).</li>
</ul>
<h1>0.30.0</h1>
<ul>
<li>Split <code>System</code> into subtypes: <code>Components</code>,
<code>Disks</code>, <code>Networks</code> and <code>Users</code>.</li>
<li><code>brand</code>, <code>vendor_id</code> and
<code>frequency</code> information is not set anymore on the global
CPU.</li>
<li>Unix: Fix endless loop in user groups retrieval.</li>
<li>Unix/Windows: Fix infinite loop when retrieving various information
because of bad usage
of <code>Vec::reserve</code>.</li>
<li>Unix: Fix invalid usage of NULL pointer when retrieving user group
name.</li>
<li>Linux: Fix CPU name retrieval.</li>
<li>Linux: Remove cgroup usage from memory computation.</li>
<li>Linux: Add <code>linux-netdevs</code> feature to allow to retrieve
network devices.</li>
<li>Linux: Improve system memory information retrieval (using
<code>statm</code> file instead of <code>stat</code>).</li>
<li>Linux: Tasks are listed in processes.</li>
<li>macOS: Correctly retrieve process root directory.</li>
<li>Windows: Add warning that <code>System::load_average</code> is not
working in documentation.</li>
<li>Windows: Fix invalid use of NULL pointer when retrieving users
groups.</li>
<li>Windows: Correctly retrieve process root directory.</li>
<li>Create new <code>System::cgroup_limits</code> method.</li>
<li>Remove <code>System::refresh_system</code> method.</li>
<li><code>Disk::file_system</code> and <code>Disk::name</code> now
return an <code>Option&lt;&amp;OsStr&gt;</code>.</li>
<li>Implement <code>Display</code> trait on <code>DiskKind</code>.</li>
<li>Move from <code>winapi</code> to <code>windows</code> crate.</li>
<li>Add <code>System::cpu_arch</code>.</li>
<li>Add <code>System::refresh_pids</code> and
<code>System::refresh_pids_specifics</code>.</li>
<li><code>System::boot_time</code>, <code>System::cpu_arch</code>,
<code>System::distribution_id</code>, <code>System::host_name</code>,
<code>System::kernel_version</code>, <code>System::load_average</code>,
<code>System::long_os_version</code>, <code>System::name</code>,
<code>System::os_version</code> and <code>System::uptime</code> are
static methods.</li>
<li><code>ProcessRefreshKind</code> has a lot more of possibilities for
better control over updates.</li>
<li>Add new <code>UpdateKind</code> enum.</li>
<li>Add new <code>MemoryRefreshKind</code> struct.</li>
<li>Add new <code>System::refresh_memory_specifics</code> method.</li>
<li><code>Process::exe</code>, <code>Process::cwd</code> and
<code>Process::root</code> return an
<code>Option&lt;&amp;Path&gt;</code>.</li>
<li><code>Process::tasks</code> method is available on all
platforms.</li>
<li><code>Process::tasks</code> method returns a
<code>HashSet&lt;Pid&gt;</code>.</li>
<li>Move <code>System::IS_SUPPORTED</code>,
<code>System::SUPPORTED_SIGNALS</code> and
<code>System::MINIMUM_CPU_UPDATE_INTERVAL</code> constants out of
<code>System</code> directly at the crate top-level.</li>
<li>Rename <code>IS_SUPPORTED</code> into
<code>IS_SUPPORTED_SYSTEM</code>.</li>
<li>Fix <code>serde</code> serialization.</li>
<li>Add <code>System::refresh_cpu_frequency</code> and
<code>System::refresh_cpu_all</code>.</li>
<li>Fix <code>sysinfo.h</code> and C wrapper.</li>
<li>Add a migration guide.</li>
</ul>
<h1>0.29.11</h1>
<ul>
<li>macOS: Fix bug when a user group doesn't have a name.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/GuillaumeGomez/sysinfo/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `thiserror` from 1.0.50 to 1.0.52
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/thiserror/releases">thiserror's
releases</a>.</em></p>
<blockquote>
<h2>1.0.52</h2>
<ul>
<li>Fix interaction with RUSTC_BOOTSTRAP (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/269">#269</a>)</li>
</ul>
<h2>1.0.51</h2>
<ul>
<li>Improve diagnostics when an invalid attribute previously caused
thiserror to generate no <code>Error</code> impl (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/266">#266</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="be83323c0f"><code>be83323</code></a>
Release 1.0.52</li>
<li><a
href="c89ee6cd03"><code>c89ee6c</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/269">#269</a>
from dtolnay/bootstrap</li>
<li><a
href="af1665218f"><code>af16652</code></a>
Rerun build script on RUSTC_BOOTSTRAP change</li>
<li><a
href="d160dd2af7"><code>d160dd2</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/267">#267</a>
from dtolnay/useunderscore</li>
<li><a
href="6b00235610"><code>6b00235</code></a>
Leave private traits' name out of scope</li>
<li><a
href="c3838bd7c5"><code>c3838bd</code></a>
Add a funding file</li>
<li><a
href="87466d2a25"><code>87466d2</code></a>
Update name of blocks_in_if_conditions clippy lint</li>
<li><a
href="0555b80591"><code>0555b80</code></a>
Release 1.0.51</li>
<li><a
href="b94add8c9b"><code>b94add8</code></a>
Add ui test where fallback impl conflicts with handwritten Display</li>
<li><a
href="02c6a55480"><code>02c6a55</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/266">#266</a>
from dtolnay/fallback</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.52">compare
view</a></li>
</ul>
</details>
<br />

Updates `tokio` from 1.33.0 to 1.35.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/tokio/releases">tokio's
releases</a>.</em></p>
<blockquote>
<h2>Tokio v1.35.1</h2>
<h1>1.35.1 (December 19, 2023)</h1>
<p>This is a forward part of a change that was backported to 1.25.3.</p>
<h3>Fixed</h3>
<ul>
<li>io: add budgeting to
<code>tokio::runtime::io::registration::async_io</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6221">#6221</a>)</li>
</ul>
<p><a
href="https://redirect.github.com/tokio-rs/tokio/issues/6221">#6221</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6221">tokio-rs/tokio#6221</a></p>
<h2>Tokio v1.35.0</h2>
<h1>1.35.0 (December 8th, 2023)</h1>
<h3>Added</h3>
<ul>
<li>net: add Apple watchOS support (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6176">#6176</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>io: drop the <code>Sized</code> requirements from
<code>AsyncReadExt.read_buf</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6169">#6169</a>)</li>
<li>runtime: make <code>Runtime</code> unwind safe (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6189">#6189</a>)</li>
<li>runtime: reduce the lock contention in task spawn (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6001">#6001</a>)</li>
<li>tokio: update nix dependency to 0.27.1 (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6190">#6190</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>chore: make <code>--cfg docsrs</code> work without net feature (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6166">#6166</a>)</li>
<li>chore: use relaxed load for <code>unsync_load</code> on miri (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6179">#6179</a>)</li>
<li>runtime: handle missing context on wake (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6148">#6148</a>)</li>
<li>taskdump: fix taskdump cargo config example (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6150">#6150</a>)</li>
<li>taskdump: skip notified tasks during taskdumps (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6194">#6194</a>)</li>
<li>tracing: avoid creating resource spans with current parent, use a
None parent instead (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6107">#6107</a>)</li>
<li>tracing: make task span explicit root (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6158">#6158</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>io: flush in <code>AsyncWriteExt</code> examples (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6149">#6149</a>)</li>
<li>runtime: document fairness guarantees and current behavior (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6145">#6145</a>)</li>
<li>task: document cancel safety of <code>LocalSet::run_until</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6147">#6147</a>)</li>
</ul>
<p><a
href="https://redirect.github.com/tokio-rs/tokio/issues/6001">#6001</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6001">tokio-rs/tokio#6001</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6107">#6107</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6107">tokio-rs/tokio#6107</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6144">#6144</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6144">tokio-rs/tokio#6144</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6145">#6145</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6145">tokio-rs/tokio#6145</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6147">#6147</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6147">tokio-rs/tokio#6147</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6148">#6148</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6148">tokio-rs/tokio#6148</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6149">#6149</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6149">tokio-rs/tokio#6149</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6150">#6150</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6150">tokio-rs/tokio#6150</a>
<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6158">#6158</a>:
<a
href="https://redirect.github.com/tokio-rs/tokio/pull/6158">tokio-rs/tokio#6158</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="46ff36386d"><code>46ff363</code></a>
chore: prepare Tokio v1.35.1 (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6230">#6230</a>)</li>
<li><a
href="0a1695ebfb"><code>0a1695e</code></a>
Merge 'tokio-1.32.1' into 'tokio-1.35.x' (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6229">#6229</a>)</li>
<li><a
href="c4f0178b74"><code>c4f0178</code></a>
chore: prepare Tokio v1.32.1 (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6228">#6228</a>)</li>
<li><a
href="22b3a65934"><code>22b3a65</code></a>
Merge 'tokio-1.25.3' into 'tokio-1.32.x' (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6227">#6227</a>)</li>
<li><a
href="0d362339d5"><code>0d36233</code></a>
chore: release v1.25.3 (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6223">#6223</a>)</li>
<li><a
href="ab7313ff6b"><code>ab7313f</code></a>
io: add budgeting to tokio::runtime::io::registration::async_io (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6221">#6221</a>)</li>
<li><a
href="92a3455c66"><code>92a3455</code></a>
chore: prepare Tokio v1.35.0 (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6197">#6197</a>)</li>
<li><a
href="1968565825"><code>1968565</code></a>
chore: use relaxed load for unsync_load (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6203">#6203</a>)</li>
<li><a
href="c9273f1aee"><code>c9273f1</code></a>
sync: improve safety comments for <code>WakeList</code> (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6200">#6200</a>)</li>
<li><a
href="e05d0f8c2c"><code>e05d0f8</code></a>
changelog: fix missing link for 1.8.2 (<a
href="https://redirect.github.com/tokio-rs/tokio/issues/6199">#6199</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tokio-rs/tokio/compare/tokio-1.33.0...tokio-1.35.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `wgpu` from 0.17.1 to 0.18.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/releases">wgpu's
releases</a>.</em></p>
<blockquote>
<h2>v0.18.0</h2>
<h3>Desktop OpenGL 3.3+ Support on Windows</h3>
<p>We now support OpenGL on Windows! This brings support for a vast
majority of the hardware that used to be covered by our DX11 backend. As
of this writing we support OpenGL 3.3+, though there are efforts to
reduce that further.</p>
<p>This allows us to cover the last 12 years of Intel GPUs (starting
with Ivy Bridge; aka 3xxx), and the last 16 years of AMD (starting with
Terascale; aka HD 2000) / NVidia GPUs (starting with Tesla; aka GeForce
8xxx).</p>
<p>By <a href="https://github.com/Zoxc"><code>@​Zoxc</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/4248">#4248</a></p>
<h3>Timestamp Queries Supported on Metal and OpenGL</h3>
<p>Timestamp queries are now supported on both Metal and Desktop OpenGL.
On Apple chips on Metal, they only support timestamp queries in command
buffers or in the renderpass descriptor,
they do not support them inside a pass.</p>
<p>Metal: By <a href="https://github.com/Wumpf"><code>@​Wumpf</code></a>
in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/4008">#4008</a><br />
OpenGL: By <a href="https://github.com/Zoxc"><code>@​Zoxc</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/4267">#4267</a></p>
<h3>Render/Compute Pass Query Writes</h3>
<p>Addition of the <code>TimestampWrites</code> type to compute and
render pass descriptors to allow profiling on tilers which do not
support timestamps inside passes.</p>
<p>Added <a
href="https://github.com/gfx-rs/wgpu/tree/trunk/examples/timestamp-queries">an
example</a> to demonstrate the various kinds of timestamps.</p>
<p>Additionally, metal now supports timestamp queries!</p>
<p>By <a
href="https://github.com/FL33TW00D"><code>@​FL33TW00D</code></a> &amp;
<a href="https://github.com/wumpf"><code>@​wumpf</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/3636">#3636</a>.</p>
<h3>Occlusion Queries</h3>
<p>We now support binary occlusion queries! This allows you to determine
if any of the draw calls within the query drew any pixels.</p>
<p>Use the new <code>occlusion_query_set</code> field on
<code>RenderPassDescriptor</code> to give a query set that occlusion
queries will write to.</p>
<pre lang="diff"><code>let mut rpass =
encoder.begin_render_pass(&amp;wgpu::RenderPassDescriptor {
    // ...
+   occlusion_query_set: Some(&amp;my_occlusion_query_set),
});
</code></pre>
<p>Within the renderpass do the following to write the occlusion query
results to the query set at the given index:</p>
<pre lang="rust"><code>rpass.begin_occlusion_query(index);
rpass.draw(...);
rpass.draw(...);
rpass.end_occlusion_query();
</code></pre>
<p>These are binary occlusion queries, so the result will be either 0 or
an unspecified non-zero value.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md">wgpu's
changelog</a>.</em></p>
<blockquote>
<h2>v0.18.0 (2023-10-25)</h2>
<p>For naga changelogs at or before v0.14.0. See <a
href="https://github.com/gfx-rs/wgpu/blob/trunk/naga/CHANGELOG.md">naga's
changelog</a>.</p>
<h3>Desktop OpenGL 3.3+ Support on Windows</h3>
<p>We now support OpenGL on Windows! This brings support for a vast
majority of the hardware that used to be covered by our DX11 backend. As
of this writing we support OpenGL 3.3+, though there are efforts to
reduce that further.</p>
<p>This allows us to cover the last 12 years of Intel GPUs (starting
with Ivy Bridge; aka 3xxx), and the last 16 years of AMD (starting with
Terascale; aka HD 2000) / NVidia GPUs (starting with Tesla; aka GeForce
8xxx).</p>
<p>By <a href="https://github.com/Zoxc"><code>@​Zoxc</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/4248">#4248</a></p>
<h3>Timestamp Queries Supported on Metal and OpenGL</h3>
<p>Timestamp queries are now supported on both Metal and Desktop OpenGL.
On Apple chips on Metal, they only support timestamp queries in command
buffers or in the renderpass descriptor,
they do not support them inside a pass.</p>
<p>Metal: By <a href="https://github.com/Wumpf"><code>@​Wumpf</code></a>
in <a href="https://redirect.github.com/gfx-rs/wgpu/pull/4008">#4008</a>
OpenGL: By <a href="https://github.com/Zoxc"><code>@​Zoxc</code></a> in
<a
href="https://redirect.github.com/gfx-rs/wgpu/pull/4267">#4267</a></p>
<h3>Render/Compute Pass Query Writes</h3>
<p>Addition of the <code>TimestampWrites</code> type to compute and
render pass descriptors to allow profiling on tilers which do not
support timestamps inside passes.</p>
<p>Added <a
href="https://github.com/gfx-rs/wgpu/tree/trunk/examples/timestamp-queries">an
example</a> to demonstrate the various kinds of timestamps.</p>
<p>Additionally, metal now supports timestamp queries!</p>
<p>By <a
href="https://github.com/FL33TW00D"><code>@​FL33TW00D</code></a> &amp;
<a href="https://github.com/wumpf"><code>@​wumpf</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/3636">#3636</a>.</p>
<h3>Occlusion Queries</h3>
<p>We now support binary occlusion queries! This allows you to determine
if any of the draw calls within the query drew any pixels.</p>
<p>Use the new <code>occlusion_query_set</code> field on
<code>RenderPassDescriptor</code> to give a query set that occlusion
queries will write to.</p>
<pre lang="diff"><code>let mut rpass =
encoder.begin_render_pass(&amp;wgpu::RenderPassDescriptor {
    // ...
+   occlusion_query_set: Some(&amp;my_occlusion_query_set),
});
</code></pre>
<p>Within the renderpass do the following to write the occlusion query
results to the query set at the given index:</p>
<pre lang="rust"><code>rpass.begin_occlusion_query(index);
rpass.draw(...);
rpass.draw(...);
rpass.end_occlusion_query();
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="49b7ec97c1"><code>49b7ec9</code></a>
Update CHANGELOG.md</li>
<li><a
href="493024ebce"><code>493024e</code></a>
Bump metal version</li>
<li><a
href="92f4207bc0"><code>92f4207</code></a>
Release v0.18.0 (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/4295">#4295</a>)</li>
<li><a
href="3abf81efd2"><code>3abf81e</code></a>
Update CHANGELOG.md</li>
<li><a
href="dd9b282c72"><code>dd9b282</code></a>
Verbiage fixes in readme</li>
<li><a
href="a66075fd46"><code>a66075f</code></a>
Changelog for v0.18 (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/4289">#4289</a>)</li>
<li><a
href="2b90f7df80"><code>2b90f7d</code></a>
Fix doc build</li>
<li><a
href="3bdad8bd77"><code>3bdad8b</code></a>
Add timestamp support to OpenGL (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/4267">#4267</a>)</li>
<li><a
href="9dc57617e4"><code>9dc5761</code></a>
feat(spv): shader debug option (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/4028">#4028</a>)</li>
<li><a
href="dd84765e38"><code>dd84765</code></a>
Allow xtasks to have more dependencies (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/4268">#4268</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/gfx-rs/wgpu/compare/v0.17.1...v0.18.0">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tripp <86533397+trippjoe@users.noreply.github.com>
2023-12-29 11:12:19 -05:00
dependabot[bot] b6c61b3a85
build(deps): bump the backend-deps-tauri group in /src-tauri with 2 updates (#412)
Bumps the backend-deps-tauri group in /src-tauri with 2 updates:
[tauri](https://github.com/tauri-apps/tauri) and
[tauri-build](https://github.com/tauri-apps/tauri).

Updates `tauri` from 1.5.2 to 1.5.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases">tauri's
releases</a>.</em></p>
<blockquote>
<h2><code>@​tauri-apps/cli</code> v1.5.4</h2>
<h2>[1.5.4]</h2>
<h3>Dependencies</h3>
<ul>
<li>Upgraded to <code>tauri-cli@1.5.4</code></li>
</ul>
<h2>tauri-cli v1.5.4</h2>
<p>Updating crates.io index</p>
<!-- raw HTML omitted -->
<pre><code>Fetching advisory database from
`https://github.com/RustSec/advisory-db.git`
Loaded 575 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (530 crate dependencies)
Crate:     kuchiki
Version:   0.8.1
Warning:   unmaintained
Title:     `kuchiki` is unmaintained
Date:      2023-01-21
ID:        RUSTSEC-2023-0019
URL:       https://rustsec.org/advisories/RUSTSEC-2023-0019
Dependency tree:
kuchiki 0.8.1
└── wry 0.24.4
    └── tauri-runtime-wry 0.14.1
        └── tauri 1.5.2
            ├── tauri 1.5.2
            ├── restart 0.1.0
            └── app-updater 0.1.0
<p>Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL: <a
href="https://rustsec.org/advisories/RUSTSEC-2021-0145">https://rustsec.org/advisories/RUSTSEC-2021-0145</a>
Dependency tree:
atty 0.2.14
└── clap 3.2.25
└── tauri 1.5.2
├── tauri 1.5.2
├── restart 0.1.0
└── app-updater 0.1.0</p>
<p>warning: 2 allowed warnings found
</code></pre></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5966812735"><code>5966812</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8396">#8396</a>)</li>
<li><a
href="b44e9c0fcb"><code>b44e9c0</code></a>
feat(bundler): redownload outdated/mis-hashed files (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8431">#8431</a>)</li>
<li><a
href="b2f83f03a8"><code>b2f83f0</code></a>
fix(core): Replace Rc with Arc to prevent crashes when sending events
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8402">#8402</a>)</li>
<li><a
href="0a2175eabb"><code>0a2175e</code></a>
fix(cli): expand globs in workspace member paths (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8439">#8439</a>)</li>
<li><a
href="645e1dcc6e"><code>645e1dc</code></a>
fix(core/updater): check if installer args are not empty before passing
`-Arg...</li>
<li><a
href="50a3d170f2"><code>50a3d17</code></a>
fix(core/dialog): reconstruct path using appropriate separator, closes
<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8074">#8074</a>
...</li>
<li><a
href="9b230de7bc"><code>9b230de</code></a>
fix(utils/config): fix parsing <code>f64</code> values, closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8252">#8252</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8407">#8407</a>)</li>
<li><a
href="50e9caad64"><code>50e9caa</code></a>
ci: access cli release id directly (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8398">#8398</a>)</li>
<li><a
href="e5cc72eb40"><code>e5cc72e</code></a>
ci: fix msrv tests (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8409">#8409</a>)</li>
<li><a
href="0d0501cb7b"><code>0d0501c</code></a>
refactor(clipboard): use arboard instead of tao closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8177">#8177</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8394">#8394</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tauri-apps/tauri/compare/tauri-v1.5.2...tauri-v1.5.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `tauri-build` from 1.5.0 to 1.5.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases">tauri-build's
releases</a>.</em></p>
<blockquote>
<h2>tauri-build v1.5.1</h2>
<p>Updating crates.io index</p>
<!-- raw HTML omitted -->
<pre><code>Fetching advisory database from
`https://github.com/RustSec/advisory-db.git`
Loaded 582 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (558 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.5.4
        ├── tauri 1.5.4
        ├── restart 0.1.0
        └── app-updater 0.1.0
<p>warning: 1 allowed warning found
</code></pre></p>
<!-- raw HTML omitted -->
<h2>[1.5.1]</h2>
<h3>Dependencies</h3>
<ul>
<li>Upgraded to <code>tauri-utils@1.5.2</code></li>
<li>Upgraded to <code>tauri-codegen@1.4.2</code></li>
</ul>
<!-- raw HTML omitted -->
<pre><code>Updating crates.io index
Packaging tauri-build v1.5.1
(/home/runner/work/tauri/tauri/core/tauri-build)
Verifying tauri-build v1.5.1
(/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded embed-resource v2.4.0
  Downloaded cargo_toml v0.15.3
  Downloaded tauri-winres v0.1.1
   Compiling proc-macro2 v1.0.70
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/tauri-apps/tauri/compare/tauri-build-v1.5...tauri-build-v1.5.1">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-26 16:01:02 -05:00
dependabot[bot] 0ab4308f39
build(deps): bump the frontend-deps-tauri group with 2 updates (#410)
Bumps the frontend-deps-tauri group with 2 updates:
[@tauri-apps/api](https://github.com/tauri-apps/tauri) and
[@tauri-apps/cli](https://github.com/tauri-apps/tauri).

Updates `@tauri-apps/api` from 1.5.1 to 1.5.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases"><code>@​tauri-apps/api</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​tauri-apps/api</code> v1.5.2</h2>
<!-- raw HTML omitted -->
<pre><code>yarn audit v1.22.21
info No lockfile found.
0 vulnerabilities found - Packages audited: 148
Done in 2.28s.
</code></pre>
<!-- raw HTML omitted -->
<h2>[1.5.2]</h2>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="5046270273"><code>50462702</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8267">#8267</a>)
Add top-level <code>main</code>, <code>module</code> and
<code>types</code> fields in <code>package.json</code> to be compliant
with typescripts's <code>&quot;moduleResolution&quot;:
&quot;node&quot;</code></li>
<li><a
href="14544e4b87"><code>14544e4b</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8219">#8219</a>)
Avoid crashing in <code>clearMocks</code></li>
</ul>
<!-- raw HTML omitted -->
<pre><code>yarn run v1.22.21
$ yarn build &amp;&amp; cd ./dist &amp;&amp; yarn publish --access
public --loglevel silly --tag next
$ rollup -c --configPlugin typescript

./src/app.ts, ./src/cli.ts, ./src/clipboard.ts, ./src/dialog.ts,
./src/event.ts, ./src/fs.ts, ./src/globalShortcut.ts, ./src/http.ts,
./src/index.ts, ./src/mocks.ts, ./src/notification.ts, ./src/os.ts,
./src/path.ts, ./src/process.ts, ./src/shell.ts, ./src/tauri.ts,
./src/updater.ts, ./src/window.ts → ./dist, ./dist...
created ./dist, ./dist in 1.6s

src/index.ts →
../../core/tauri/scripts/bundle.global.js...
created ../../core/tauri/scripts/bundle.global.js in
1.8s
[1/4] Bumping version...
info Current version: 1.5.2
[2/4] Logging in...
[3/4] Publishing...
success Published.
[4/4] Revoking token...
info Not revoking login token, specified via config file.
Done in 8.45s.
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="61cc7d9c5a"><code>61cc7d9</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8203">#8203</a>)</li>
<li><a
href="c4b5df12bb"><code>c4b5df1</code></a>
perf: skip large <code>Window</code> and <code>AppHandle</code> fields
on traces (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8318">#8318</a>)</li>
<li><a
href="977a39f4f7"><code>977a39f</code></a>
fix(bundler): migrate WebView2 offline installer to shorturl (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8292">#8292</a>)</li>
<li><a
href="c34710de67"><code>c34710d</code></a>
fix: Fix archived links, Closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/8302">#8302</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8315">#8315</a>)</li>
<li><a
href="5e05236b49"><code>5e05236</code></a>
feat(core): add tracing for vital functionality closes <a
href="https://redirect.github.com/tauri-apps/tauri/issues/5204">#5204</a>
(<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8289">#8289</a>)</li>
<li><a
href="b3e53e7243"><code>b3e53e7</code></a>
feat(core): add AssetManager::iter (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8288">#8288</a>)</li>
<li><a
href="5046270273"><code>5046270</code></a>
fix(api): add top-level <code>main</code>, <code>module</code> and
<code>types</code> fields (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8267">#8267</a>)</li>
<li><a
href="b8756bc34e"><code>b8756bc</code></a>
perf: remove extranous call in <code>StateManager::get</code> (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8272">#8272</a>)</li>
<li><a
href="f26d9f0884"><code>f26d9f0</code></a>
fix(bundler/nsis): remove empty resources folders on uninstall (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8263">#8263</a>)</li>
<li><a
href="8accd6940e"><code>8accd69</code></a>
chore(deps) Update Rust crate handlebars to 4.5 (1.x) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8231">#8231</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tauri-apps/tauri/compare/@tauri-apps/api-v1.5.1...@tauri-apps/api-v1.5.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `@tauri-apps/cli` from 1.5.6 to 1.5.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tauri-apps/tauri/releases"><code>@​tauri-apps/cli</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​tauri-apps/cli</code> v1.5.8</h2>
<h2>[1.5.8]</h2>
<h3>Dependencies</h3>
<ul>
<li>Upgraded to <code>tauri-cli@1.5.8</code></li>
</ul>
<h2><code>@​tauri-apps/cli</code> v1.5.7</h2>
<h2>[1.5.7]</h2>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="1d5aa38ae4"><code>1d5aa38a</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8162">#8162</a>)
Fixes errors on command output, occuring when the output stream contains
an invalid UTF-8 character, or ends with a multi-bytes UTF-8
character.</li>
<li><a
href="f26d9f0884"><code>f26d9f08</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8263">#8263</a>)
Fixes an issue in the NSIS installer which caused the uninstallation to
leave empty folders on the system if the <code>resources</code> feature
was used.</li>
<li><a
href="92bc7d0e16"><code>92bc7d0e</code></a>(<a
href="https://redirect.github.com/tauri-apps/tauri/pull/8233">#8233</a>)
Fixes an issue in the NSIS installer which caused the installation to
take much longer than expected when many <code>resources</code> were
added to the bundle.</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li>Upgraded to <code>tauri-cli@1.5.7</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f9c97b7e5b"><code>f9c97b7</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8377">#8377</a>)</li>
<li><a
href="5ff9d4592a"><code>5ff9d45</code></a>
fix(bundler/nsis): only kill processes of current user (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8390">#8390</a>)</li>
<li><a
href="30adc8d45d"><code>30adc8d</code></a>
ci: fix publish <code>@tauri-apps/api</code> to <code>latest</code>
instead of <code>next</code> (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8371">#8371</a>)</li>
<li><a
href="777ddf434a"><code>777ddf4</code></a>
fix(bundler): unset <code>NSISDIR</code> and <code>NSISCONFDIR</code>
when running <code>makensis</code> (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8376">#8376</a>)</li>
<li><a
href="327c7aec30"><code>327c7ae</code></a>
fix(ci): skip installing unnecessary deps (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8277">#8277</a>)</li>
<li><a
href="14e29f320d"><code>14e29f3</code></a>
chore: update tauri-cli lock file</li>
<li><a
href="cf7d584033"><code>cf7d584</code></a>
chore: manually bump <code>tauri-utils</code></li>
<li><a
href="61cc7d9c5a"><code>61cc7d9</code></a>
Apply Version Updates From Current Changes (v1) (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8203">#8203</a>)</li>
<li><a
href="c4b5df12bb"><code>c4b5df1</code></a>
perf: skip large <code>Window</code> and <code>AppHandle</code> fields
on traces (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8318">#8318</a>)</li>
<li><a
href="977a39f4f7"><code>977a39f</code></a>
fix(bundler): migrate WebView2 offline installer to shorturl (<a
href="https://redirect.github.com/tauri-apps/tauri/issues/8292">#8292</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tauri-apps/tauri/compare/@tauri-apps/cli-v1.5.6...@tauri-apps/cli-v1.5.8">compare
view</a></li>
</ul>
</details>
<br />


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

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-19 14:12:21 -05:00
dependabot[bot] 2743914794
build(deps): bump the frontend-deps group with 21 updates (#411)
Bumps the frontend-deps group with 21 updates:

| Package | From | To |
| --- | --- | --- |
|
[@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver)
| `7.5.4` | `7.5.6` |
|
[country-flag-emoji-polyfill](https://github.com/talkjs/country-flag-emoji-polyfill)
| `0.1.4` | `0.1.5` |
| [@iconify-json/ic](https://github.com/iconify/icon-sets) | `1.1.14` |
`1.1.17` |
| [@iconify-json/mdi](https://github.com/iconify/icon-sets) | `1.1.55` |
`1.1.63` |
|
[@octokit/plugin-throttling](https://github.com/octokit/plugin-throttling.js)
| `8.1.2` | `8.1.3` |
|
[@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte)
| `2.4.6` | `3.0.1` |
|
[@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8)
| `0.34.6` | `1.0.4` |
| [flowbite](https://github.com/themesberg/flowbite) | `2.0.0` | `2.2.1`
|
| [flowbite-svelte](https://github.com/themesberg/flowbite-svelte) |
`0.44.19` | `0.44.20` |
| [jsdom](https://github.com/jsdom/jsdom) | `22.1.0` | `23.0.1` |
| [postcss](https://github.com/postcss/postcss) | `8.4.31` | `8.4.32` |
| [postcss-load-config](https://github.com/postcss/postcss-load-config)
| `4.0.1` | `5.0.2` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.1.1` |
|
[prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte)
| `3.0.3` | `3.1.2` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte)
| `4.2.2` | `4.2.8` |
| [svelte-preprocess](https://github.com/sveltejs/svelte-preprocess) |
`5.0.4` | `5.1.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.3.5` |
`3.3.7` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` |
`5.3.3` |
| [unplugin-icons](https://github.com/unplugin/unplugin-icons) |
`0.17.3` | `0.18.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`4.5.0` | `5.0.10` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `0.34.6` | `1.0.4` |

Updates `@types/semver` from 7.5.4 to 7.5.6
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare
view</a></li>
</ul>
</details>
<br />

Updates `country-flag-emoji-polyfill` from 0.1.4 to 0.1.5
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/talkjs/country-flag-emoji-polyfill/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `@iconify-json/ic` from 1.1.14 to 1.1.17
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3af923f248"><code>3af923f</code></a>
Update IonIcons, Material Design Icons</li>
<li><a
href="92514e6b4c"><code>92514e6</code></a>
Update IonIcons</li>
<li><a
href="f2c04b7782"><code>f2c04b7</code></a>
Fix multiple identical tags for same icon in MDI</li>
<li>See full diff in <a
href="https://github.com/iconify/icon-sets/compare/1.1.14...1.1.17">compare
view</a></li>
</ul>
</details>
<br />

Updates `@iconify-json/mdi` from 1.1.55 to 1.1.63
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d62f2d7790"><code>d62f2d7</code></a>
Update Material Design Icons</li>
<li><a
href="681c176113"><code>681c176</code></a>
Update Ant Design Icons</li>
<li><a
href="11c8401932"><code>11c8401</code></a>
Update Ant Design Icons, OpenMoji, Simple Icons</li>
<li><a
href="a2d5e1a2f8"><code>a2d5e1a</code></a>
Update OpenMoji</li>
<li><a
href="b4e71f24a5"><code>b4e71f2</code></a>
Update Material Design Icons</li>
<li><a
href="c52d32afec"><code>c52d32a</code></a>
Update Brandico Font, Gridicons, Material Design Icons, OpenMoji,
Unicons</li>
<li><a
href="b0b239786a"><code>b0b2397</code></a>
Update Brandico Font, Emoji One (Monotone), Emoji One (v1), Emoji One
(Colore...</li>
<li><a
href="37cf309de4"><code>37cf309</code></a>
Update Material Design Icons</li>
<li>See full diff in <a
href="https://github.com/iconify/icon-sets/compare/1.1.55...1.1.63">compare
view</a></li>
</ul>
</details>
<br />

Updates `@octokit/plugin-throttling` from 8.1.2 to 8.1.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/octokit/plugin-throttling.js/releases"><code>@​octokit/plugin-throttling</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v8.1.3</h2>
<h2><a
href="https://github.com/octokit/plugin-throttling.js/compare/v8.1.2...v8.1.3">8.1.3</a>
(2023-11-18)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> improvements to internal types and
<code>options</code> parameter (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/642">#642</a>)
(<a
href="2a64f7f1d5">2a64f7f</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2a64f7f1d5"><code>2a64f7f</code></a>
fix(types): improvements to internal types and <code>options</code>
parameter (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/642">#642</a>)</li>
<li><a
href="f5d504e526"><code>f5d504e</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/645">#645</a>)</li>
<li><a
href="7d1fb8c42f"><code>7d1fb8c</code></a>
chore(deps): update dependency prettier to v3.1.0</li>
<li><a
href="aac92df2ca"><code>aac92df</code></a>
build(deps): lock file maintenance</li>
<li><a
href="346bd4cc54"><code>346bd4c</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/639">#639</a>)</li>
<li><a
href="479ed66c1b"><code>479ed66</code></a>
build(deps): lock file maintenance (<a
href="https://redirect.github.com/octokit/plugin-throttling.js/issues/637">#637</a>)</li>
<li>See full diff in <a
href="https://github.com/octokit/plugin-throttling.js/compare/v8.1.2...v8.1.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `@sveltejs/vite-plugin-svelte` from 2.4.6 to 3.0.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/vite-plugin-svelte/releases"><code>@​sveltejs/vite-plugin-svelte</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​sveltejs/vite-plugin-svelte</code><a
href="https://github.com/3"><code>@​3</code></a>.0.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: improve checking of script and style in .svelte code to work
with new generic= attribute (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/799">#799</a>)</p>
</li>
<li>
<p>Fix optional parameter types (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/797">#797</a>)</p>
</li>
<li>
<p>Update log level for HMR updates where the output is functionally
equivalent to the previous version to &quot;debug&quot; (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/806">#806</a>)</p>
</li>
</ul>
<h2><code>@​sveltejs/vite-plugin-svelte</code><a
href="https://github.com/3"><code>@​3</code></a>.0.0</h2>
<h3>Major Changes</h3>
<ul>
<li>
<p>breaking: update minimum supported node version to node18 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/744">#744</a>)</p>
</li>
<li>
<p>breaking: update supported vite version to vite 5 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/743">#743</a>)</p>
</li>
<li>
<p>breaking: remove support for svelte 3 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/746">#746</a>)</p>
</li>
<li>
<p>Preprocess style tags by default with vitePreprocess (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/756">#756</a>)</p>
</li>
<li>
<p>breaking: remove package.json export (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>breaking(types): emit types with dts-buddy to include type map (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>breaking(debug): remove 'vite:' and add suffixes to debug namespace
(<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/749">#749</a>)</p>
</li>
<li>
<p>breaking(types): rename SvelteOptions to SvelteConfig (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>breaking: prefer svelte exports condition over package.json svelte
field (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/747">#747</a>)</p>
</li>
</ul>
<h3>Minor Changes</h3>
<ul>
<li>
<p>feat(preprocess): add warnings in case preprocess dependencies
contain anomalies (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/767">#767</a>)</p>
</li>
<li>
<p>Add experimental support for svelte5 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/787">#787</a>)</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix(types): use correct type Options for svelte function arg (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>Improve compile error messages (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/757">#757</a>)</p>
</li>
<li>
<p>feat(compile): promote experimental.dynamicCompileOptions to stable
(<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/765">#765</a>)</p>
</li>
<li>
<p>update peer dependencies to use final releases (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/794">#794</a>)</p>
</li>
<li>
<p>Updated dependencies [<a
href="d5b952f882"><code>d5b952f</code></a>,
<a
href="bd5d43e765"><code>bd5d43e</code></a>,
<a
href="10ec2a4429"><code>10ec2a4</code></a>,
<a
href="62afd80c3a"><code>62afd80</code></a>,
<a
href="1be1c085ed"><code>1be1c08</code></a>]:</p>
<ul>
<li><code>@​sveltejs/vite-plugin-svelte-inspector</code><a
href="https://github.com/2"><code>@​2</code></a>.0.0</li>
</ul>
</li>
</ul>
<h2><code>@​sveltejs/vite-plugin-svelte</code><a
href="https://github.com/3"><code>@​3</code></a>.0.0-next.3</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md"><code>@​sveltejs/vite-plugin-svelte</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.0.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: improve checking of script and style in .svelte code to work
with new generic= attribute (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/799">#799</a>)</p>
</li>
<li>
<p>Fix optional parameter types (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/797">#797</a>)</p>
</li>
<li>
<p>Update log level for HMR updates where the output is functionally
equivalent to the previous version to &quot;debug&quot; (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/806">#806</a>)</p>
</li>
</ul>
<h2>3.0.0</h2>
<h3>Major Changes</h3>
<ul>
<li>
<p>breaking: update minimum supported node version to node18 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/744">#744</a>)</p>
</li>
<li>
<p>breaking: update supported vite version to vite 5 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/743">#743</a>)</p>
</li>
<li>
<p>breaking: remove support for svelte 3 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/746">#746</a>)</p>
</li>
<li>
<p>Preprocess style tags by default with vitePreprocess (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/756">#756</a>)</p>
</li>
<li>
<p>breaking: remove package.json export (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>breaking(types): emit types with dts-buddy to include type map (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>breaking(debug): remove 'vite:' and add suffixes to debug namespace
(<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/749">#749</a>)</p>
</li>
<li>
<p>breaking(types): rename SvelteOptions to SvelteConfig (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>breaking: prefer svelte exports condition over package.json svelte
field (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/747">#747</a>)</p>
</li>
</ul>
<h3>Minor Changes</h3>
<ul>
<li>
<p>feat(preprocess): add warnings in case preprocess dependencies
contain anomalies (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/767">#767</a>)</p>
</li>
<li>
<p>Add experimental support for svelte5 (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/787">#787</a>)</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix(types): use correct type Options for svelte function arg (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/751">#751</a>)</p>
</li>
<li>
<p>Improve compile error messages (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/757">#757</a>)</p>
</li>
<li>
<p>feat(compile): promote experimental.dynamicCompileOptions to stable
(<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/765">#765</a>)</p>
</li>
<li>
<p>update peer dependencies to use final releases (<a
href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/794">#794</a>)</p>
</li>
<li>
<p>Updated dependencies [<a
href="d5b952f882"><code>d5b952f</code></a>,
<a
href="bd5d43e765"><code>bd5d43e</code></a>,
<a
href="10ec2a4429"><code>10ec2a4</code></a>,
<a
href="62afd80c3a"><code>62afd80</code></a>,
<a
href="1be1c085ed"><code>1be1c08</code></a>]:</p>
<ul>
<li><code>@​sveltejs/vite-plugin-svelte-inspector</code><a
href="https://github.com/2"><code>@​2</code></a>.0.0</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="63fafd4e56"><code>63fafd4</code></a>
Version Packages (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/798">#798</a>)</li>
<li><a
href="a0a36f6faa"><code>a0a36f6</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/805">#805</a>)</li>
<li><a
href="cdd3b3accc"><code>cdd3b3a</code></a>
fix: add browser to default resolve.mainFields (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/809">#809</a>)</li>
<li><a
href="c2017e0bb1"><code>c2017e0</code></a>
fix: use improved regex for script and style from svelte (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/799">#799</a>)</li>
<li><a
href="f2dfba339e"><code>f2dfba3</code></a>
Lowers log level to debug (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/806">#806</a>)</li>
<li><a
href="158a6d5ffe"><code>158a6d5</code></a>
Fix optional parameter types (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/797">#797</a>)</li>
<li><a
href="cf1ef58ff0"><code>cf1ef58</code></a>
Version Packages (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/795">#795</a>)</li>
<li><a
href="1be1c085ed"><code>1be1c08</code></a>
release: update peers and exit pre (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/794">#794</a>)</li>
<li><a
href="da0cda9b69"><code>da0cda9</code></a>
Version Packages (next) (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/793">#793</a>)</li>
<li><a
href="27a653f03c"><code>27a653f</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/790">#790</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@3.0.1/packages/vite-plugin-svelte">compare
view</a></li>
</ul>
</details>
<br />

Updates `@vitest/coverage-v8` from 0.34.6 to 1.0.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.0.4</h2>
<p>The previous release was built incorrectly and didn't include the
performance fix. This release fixes that.</p>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>cli</strong>: <code>--coverage.all=false</code> resolved
incorrectly  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4697">vitest-dev/vitest#4697</a>
<a href="https://github.com/vitest-dev/vitest/commit/a7931bbf"><!-- raw
HTML omitted -->(a7931)<!-- raw HTML omitted --></a></li>
</ul>
<h3>   🏎 Performance</h3>
<ul>
<li><strong>reporters</strong>: Downgrade <code>log-update</code> to v5
 -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4711">vitest-dev/vitest#4711</a>
<a href="https://github.com/vitest-dev/vitest/commit/13ff97a3"><!-- raw
HTML omitted -->(13ff9)<!-- raw HTML omitted --></a></li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.0.3...v1.0.4">View
changes on GitHub</a></h5>
<h2>v1.0.3</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Correct package exports  -  by <a
href="https://github.com/userquin"><code>@​userquin</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4707">vitest-dev/vitest#4707</a>
<a href="https://github.com/vitest-dev/vitest/commit/37388d69"><!-- raw
HTML omitted -->(37388)<!-- raw HTML omitted --></a></li>
<li><strong>runner</strong>: Fix async fixture teardown  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4700">vitest-dev/vitest#4700</a>
<a href="https://github.com/vitest-dev/vitest/commit/92afd54c"><!-- raw
HTML omitted -->(92afd)<!-- raw HTML omitted --></a></li>
<li><strong>vitest</strong>: Correctly filter changed files when Vitest
workspace is used  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4693">vitest-dev/vitest#4693</a>
<a href="https://github.com/vitest-dev/vitest/commit/3413518b"><!-- raw
HTML omitted -->(34135)<!-- raw HTML omitted --></a></li>
</ul>
<h3>   🏎 Performance</h3>
<ul>
<li><strong>reporters</strong>: Downgrade <code>log-update</code> to v5
 -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4711">vitest-dev/vitest#4711</a>
<a href="https://github.com/vitest-dev/vitest/commit/13ff97a3"><!-- raw
HTML omitted -->(13ff9)<!-- raw HTML omitted --></a></li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.0.2...v1.0.3">View
changes on GitHub</a></h5>
<h2>v1.0.2</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Don't check if vite is installed  -  by <a
href="https://github.com/wojtekmaj"><code>@​wojtekmaj</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4659">vitest-dev/vitest#4659</a>
<a href="https://github.com/vitest-dev/vitest/commit/775e2014"><!-- raw
HTML omitted -->(775e2)<!-- raw HTML omitted --></a></li>
<li>Fix ensurePackageInstalled on Yarn PnP  -  by <a
href="https://github.com/wojtekmaj"><code>@​wojtekmaj</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4657">vitest-dev/vitest#4657</a>
<a href="https://github.com/vitest-dev/vitest/commit/574cc7d0"><!-- raw
HTML omitted -->(574cc)<!-- raw HTML omitted --></a></li>
<li>Apply <code>stripSnapshotIndentation</code> for thrown snapshot  - 
by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4663">vitest-dev/vitest#4663</a>
<a href="https://github.com/vitest-dev/vitest/commit/748205dc"><!-- raw
HTML omitted -->(74820)<!-- raw HTML omitted --></a></li>
<li><strong>cli</strong>:
<ul>
<li>Prompted packages fail to install  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4593">vitest-dev/vitest#4593</a>
<a href="https://github.com/vitest-dev/vitest/commit/a9908453"><!-- raw
HTML omitted -->(a9908)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>expect</strong>:
<ul>
<li>Apply <code>URL</code> equality check only when <code>URL</code> is
available  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4670">vitest-dev/vitest#4670</a>
<a href="https://github.com/vitest-dev/vitest/commit/43783cfe"><!-- raw
HTML omitted -->(43783)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Improve fixture error messages  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4673">vitest-dev/vitest#4673</a>
<a href="https://github.com/vitest-dev/vitest/commit/1e4aa8e4"><!-- raw
HTML omitted -->(1e4aa)<!-- raw HTML omitted --></a></li>
<li>Fix fixture cleanup when test times out  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4679">vitest-dev/vitest#4679</a>
<a href="https://github.com/vitest-dev/vitest/commit/e7c5e1f7"><!-- raw
HTML omitted -->(e7c5e)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vitest</strong>:
<ul>
<li>Support new Request('/api') in happy-dom  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4671">vitest-dev/vitest#4671</a>
<a href="https://github.com/vitest-dev/vitest/commit/6e6ee10e"><!-- raw
HTML omitted -->(6e6ee)<!-- raw HTML omitted --></a></li>
<li>Skip processing getter in auto-mocked constructor call  -  by <a
href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/4677">vitest-dev/vitest#4677</a>
<a href="https://github.com/vitest-dev/vitest/commit/cb7864aa"><!-- raw
HTML omitted -->(cb786)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v1.0.1...v1.0.2">View
changes on GitHub</a></h5>
<h2>v1.0.1</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li>Bump vitest packages <code>peerDependencies</code> versions  -  by
<a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/4654">vitest-dev/vitest#4654</a>
<a href="https://github.com/vitest-dev/vitest/commit/420707fc"><!-- raw
HTML omitted -->(42070)<!-- raw HTML omitted --></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="66933c3a59"><code>66933c3</code></a>
chore: release v1.0.4</li>
<li><a
href="7c196643ca"><code>7c19664</code></a>
chore: release v1.0.3</li>
<li><a
href="7006bb3674"><code>7006bb3</code></a>
chore: release v1.0.2</li>
<li><a
href="08021673df"><code>0802167</code></a>
chore: release v1.0.1</li>
<li><a
href="420707fca7"><code>420707f</code></a>
fix: bump vitest packages <code>peerDependencies</code> versions (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/4654">#4654</a>)</li>
<li><a
href="34517cebf4"><code>34517ce</code></a>
chore: release v1.0.0</li>
<li><a
href="4166c413ba"><code>4166c41</code></a>
fix(coverage): improve memory usage by writing temporary files on file
system...</li>
<li><a
href="b766d34959"><code>b766d34</code></a>
chore: release v1.0.0-beta.6</li>
<li><a
href="1fdd6fe2db"><code>1fdd6fe</code></a>
fix(deps): update dependency std-env to ^3.5.0 (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/4582">#4582</a>)</li>
<li><a
href="a70f216d6a"><code>a70f216</code></a>
fix(deps): update dependency v8-to-istanbul to ^9.2.0 (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/4583">#4583</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v1.0.4/packages/coverage-v8">compare
view</a></li>
</ul>
</details>
<br />

Updates `flowbite` from 2.0.0 to 2.2.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite/releases">flowbite's
releases</a>.</em></p>
<blockquote>
<h2>v2.2.1</h2>
<ul>
<li>relased new <a
href="https://flowbite.com/docs/forms/phone-input/">phone number
input</a> component</li>
<li>relased new <a
href="https://flowbite.com/docs/components/chat-bubble/">chat bubble</a>
component</li>
<li>updated <code>z-index</code> of the datepicker to allow usage with
modals and drawers</li>
</ul>
<h2>v2.2.0</h2>
<ul>
<li>released new <a
href="https://flowbite.com/docs/forms/number-input/">number input</a>
component examples</li>
<li>created a new <code>InputCounter</code> object class in the Flowbite
JS</li>
</ul>
<h2>v2.1.1</h2>
<ul>
<li>fix the <code>InstanceOptions</code> and
<code>EventListenerInstance</code> type exports for TypeScript</li>
</ul>
<h2>v2.1.0</h2>
<p>This update adds <a
href="https://flowbite.com/docs/customize/rtl/">full RTL support</a> to
all of the UI components from Flowbite and also provides and update to
the Instance Manager API which now allows you to set custom id's as the
4th parameter of each object class.</p>
<ul>
<li>updated to Tailwind CSS <code>v3.3.5</code></li>
<li>added full RTL support to all UI components</li>
<li>updated the JS API and Instance Manager to allow setting custom
id's</li>
<li>added new vertical tabs component example</li>
<li>added three next modal component examples</li>
<li>fixed responsive wrapping issues for the table components</li>
<li>uses Tailwind CSS v3.0 classes for background opacity fixing <a
href="https://redirect.github.com/themesberg/flowbite/issues/565">themesberg/flowbite#565</a></li>
<li>other minor bug fixes and improvements</li>
</ul>
<p>Breaking changes:</p>
<ul>
<li><code>data-modal-toggle</code> alone won't initialise the modal
anymore, you need to use <code>data-modal-target</code> for that</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="21eb96b27e"><code>21eb96b</code></a>
chore(version): update to <code>v2.2.1</code></li>
<li><a
href="161b22a470"><code>161b22a</code></a>
docs(README): add new chat bubble component</li>
<li><a
href="59ced565f7"><code>59ced56</code></a>
Merge branch 'main' of <a
href="https://github.com/themesberg/flowbite">https://github.com/themesberg/flowbite</a>
into main</li>
<li><a
href="4af7a11b81"><code>4af7a11</code></a>
Fix background color on:hover for action button</li>
<li><a
href="2257c750de"><code>2257c75</code></a>
docs(chat bubble): add descriptions</li>
<li><a
href="1f4fe5c97d"><code>1f4fe5c</code></a>
Merge pull request <a
href="https://redirect.github.com/themesberg/flowbite/issues/725">#725</a>
from Manal-el/chat-bubble</li>
<li><a
href="74795781ba"><code>7479578</code></a>
docs(chat bubble): component preview example heights</li>
<li><a
href="7ffe541f2f"><code>7ffe541</code></a>
docs(chat bubble): add description to the URL sharing example</li>
<li><a
href="7d14d6b5f6"><code>7d14d6b</code></a>
feat(chat bubble): finish URL sharing example</li>
<li><a
href="fabb602b12"><code>fabb602</code></a>
docs(chat bubble): update heading titles</li>
<li>Additional commits viewable in <a
href="https://github.com/themesberg/flowbite/compare/v2.0.0...v2.2.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flowbite-svelte` from 0.44.19 to 0.44.20
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/themesberg/flowbite-svelte/blob/main/CHANGELOG.md">flowbite-svelte's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.19...v0.44.20">0.44.20</a>
(2023-11-24)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>add NODE_OPTIONS to playwright-and-lint (<a
href="4f255f5719">4f255f5</a>)</li>
<li>textarea inner rounded (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1141">#1141</a>)
(<a
href="6995e54cf7">6995e54</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f25570df7c"><code>f25570d</code></a>
chore(release): 0.44.20</li>
<li><a
href="9c422626aa"><code>9c42262</code></a>
chore: dependencies update and workflow update for playwright (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1162">#1162</a>)</li>
<li><a
href="7ed135d9df"><code>7ed135d</code></a>
middlewares as export (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1149">#1149</a>)</li>
<li><a
href="0610728afb"><code>0610728</code></a>
refactor for smiplification (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1148">#1148</a>)</li>
<li><a
href="e7e40cc345"><code>e7e40cc</code></a>
Layout (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1146">#1146</a>)</li>
<li><a
href="d720f3d774"><code>d720f3d</code></a>
TransisionFrame (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1145">#1145</a>)</li>
<li><a
href="e057081c23"><code>e057081</code></a>
Listgroup (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1143">#1143</a>)</li>
<li><a
href="4f255f5719"><code>4f255f5</code></a>
fix: add NODE_OPTIONS to playwright-and-lint</li>
<li><a
href="41d172e06f"><code>41d172e</code></a>
docs: removal of classUl from docs (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1142">#1142</a>)</li>
<li><a
href="6995e54cf7"><code>6995e54</code></a>
fix: textarea inner rounded (<a
href="https://redirect.github.com/themesberg/flowbite-svelte/issues/1141">#1141</a>)</li>
<li>See full diff in <a
href="https://github.com/themesberg/flowbite-svelte/compare/v0.44.19...v0.44.20">compare
view</a></li>
</ul>
</details>
<br />

Updates `jsdom` from 22.1.0 to 23.0.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jsdom/jsdom/releases">jsdom's
releases</a>.</em></p>
<blockquote>
<h2>Version 23.0.1</h2>
<ul>
<li>Fixed incorrect <code>canvas</code> peer dependency.</li>
</ul>
<h2>Version 23.0.0</h2>
<ul>
<li>Node.js v18 is now the minimum supported version.</li>
<li>Updated various dependencies, including <code>whatwg-url</code>
which integrates various additions to the <code>URL</code> and
<code>URLSearchParams</code> objects.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jsdom/jsdom/blob/main/Changelog.md">jsdom's
changelog</a>.</em></p>
<blockquote>
<h2>23.0.1</h2>
<ul>
<li>Fix incorrect <code>canvas</code> peer dependency.</li>
</ul>
<h2>23.0.0</h2>
<ul>
<li>Node.js v18 is now the minimum supported version.</li>
<li>Updated various dependencies, including <code>whatwg-url</code>
which integrates various additions to the <code>URL</code> and
<code>URLSearchParams</code> objects.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8e31507f3b"><code>8e31507</code></a>
Version 23.0.1</li>
<li><a
href="2ea79885d0"><code>2ea7988</code></a>
Fix canvas peerDependency</li>
<li><a
href="52083cfe6a"><code>52083cf</code></a>
Add a changelog entry for v23.0.0</li>
<li><a
href="b96888987f"><code>b968889</code></a>
23.0.0</li>
<li><a
href="59ebd7ed3a"><code>59ebd7e</code></a>
Use modern pathToFileURL in tests</li>
<li><a
href="1ee4d61851"><code>1ee4d61</code></a>
Update dependencies and dev dependencies</li>
<li><a
href="6626781c27"><code>6626781</code></a>
Remove the domexception package dependency</li>
<li><a
href="6d9ff2cc5d"><code>6d9ff2c</code></a>
Remove abab dependency</li>
<li><a
href="7027a3dfd0"><code>7027a3d</code></a>
Move from yarn to npm</li>
<li><a
href="9b354afeb9"><code>9b354af</code></a>
Raise minimum Node.js version to v18</li>
<li>Additional commits viewable in <a
href="https://github.com/jsdom/jsdom/compare/22.1.0...23.0.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `postcss` from 8.4.31 to 8.4.32
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/releases">postcss's
releases</a>.</em></p>
<blockquote>
<h2>8.4.32</h2>
<ul>
<li>Fixed <code>postcss().process()</code> types (by <a
href="https://github.com/ferreira-tb"><code>@​ferreira-tb</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's
changelog</a>.</em></p>
<blockquote>
<h2>8.4.32</h2>
<ul>
<li>Fixed <code>postcss().process()</code> types (by Andrew
Ferreira).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a0d9f10324"><code>a0d9f10</code></a>
Release 8.4.32 version</li>
<li><a
href="0146b3e36f"><code>0146b3e</code></a>
Add Node.js 21 to CI</li>
<li><a
href="2398534350"><code>2398534</code></a>
Update dependencies</li>
<li><a
href="1918533810"><code>1918533</code></a>
Merge pull request <a
href="https://redirect.github.com/postcss/postcss/issues/1902">#1902</a>
from ferreira-tb/main</li>
<li><a
href="395e6dc1b9"><code>395e6dc</code></a>
Fix <code>ProcessOptions</code> interface</li>
<li><a
href="fa8cd158fd"><code>fa8cd15</code></a>
Update dependencies</li>
<li><a
href="199a7c4210"><code>199a7c4</code></a>
Typo</li>
<li><a
href="2528047169"><code>2528047</code></a>
Update EM link</li>
<li>See full diff in <a
href="https://github.com/postcss/postcss/compare/8.4.31...8.4.32">compare
view</a></li>
</ul>
</details>
<br />

Updates `postcss-load-config` from 4.0.1 to 5.0.2
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss-load-config/blob/main/CHANGELOG.md">postcss-load-config's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/postcss/postcss-load-config/compare/v5.0.1...v5.0.2">5.0.2</a>
(2022-05-23)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Fixed <code>__require</code> name conflict (<a
href="https://redirect.github.com/postcss/postcss-load-config/pull/257">#257</a>)</li>
</ul>
<h2><a
href="https://github.com/postcss/postcss-load-config/compare/v5.0.0...v5.0.1">5.0.1</a>
(2022-05-23)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Fixed Windows support (<a
href="https://redirect.github.com/postcss/postcss-load-config/pull/256">#256</a>)</li>
</ul>
<h2><a
href="https://github.com/postcss/postcss-load-config/compare/v4.0.2...v5.0.0">5.0</a>
(2023-11-20)</h2>
<h3>Features</h3>
<ul>
<li>Added ESM support for TypeScript config (<a
href="https://redirect.github.com/postcss/postcss-load-config/pull/249">#249</a>)</li>
<li>Added ESM and TypeScript plugins support from JSON config (<a
href="https://redirect.github.com/postcss/postcss-load-config/pull/254">#254</a>)</li>
</ul>
<h3>BREAKING CHANGES</h3>
<ul>
<li>Dropped Node.js 16 &amp; 14 support.</li>
</ul>
<h2><a
href="https://github.com/postcss/postcss-load-config/compare/v4.0.1...v4.0.2">4.0.2</a>
(2023-11-20)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>src/index:</strong> added support for <code>.cts</code>
files (<a
href="https://redirect.github.com/postcss/postcss-load-config/pull/252">#252</a>)</li>
<li><strong>deps:</strong> updated <code>lilconfig</code> (<a
href="https://redirect.github.com/postcss/postcss-load-config/pull/253">#253</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5d8c80d3e7"><code>5d8c80d</code></a>
chore(release): 5.0.2</li>
<li><a
href="b619a08aa7"><code>b619a08</code></a>
fix: use different name than __require (<a
href="https://redirect.github.com/postcss/postcss-load-config/issues/257">#257</a>)</li>
<li><a
href="13b09d0c41"><code>13b09d0</code></a>
chore(release): 5.0.1</li>
<li><a
href="8e8062e2b0"><code>8e8062e</code></a>
Update dependencies</li>
<li><a
href="54eb33800b"><code>54eb338</code></a>
fix: dynamic imports on windows require file scheme (<a
href="https://redirect.github.com/postcss/postcss-load-config/issues/256">#256</a>)</li>
<li><a
href="c03d8f49a7"><code>c03d8f4</code></a>
chore(release): 5.0.0</li>
<li><a
href="1928df0b0d"><code>1928df0</code></a>
feat: support loading esm and ts files from json config (<a
href="https://redirect.github.com/postcss/postcss-load-config/issues/254">#254</a>)</li>
<li><a
href="691cb4245f"><code>691cb42</code></a>
Clean up code</li>
<li><a
href="215f1b20ee"><code>215f1b2</code></a>
Update lock file</li>
<li><a
href="f70b27a3c6"><code>f70b27a</code></a>
Update code style</li>
<li>Additional commits viewable in <a
href="https://github.com/postcss/postcss-load-config/compare/v4.0.1...5.0.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier` from 3.0.3 to 3.1.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.1.1</h2>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#311">Changelog</a></p>
<h2>3.1.0</h2>
<p><a
href="https://github.com/prettier/prettier/compare/3.0.3...3.1.0">diff</a></p>
<p>🔗 <a href="https://prettier.io/blog/2023/11/13/3.1.0.html">Release
note</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.1.1</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.1.0...3.1.1">diff</a></p>
<h4>Fix config file search (<a
href="https://redirect.github.com/prettier/prettier/pull/15363">#15363</a>
by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4>
<p>Previously, we start search for config files from the filePath as a
directory, if it happened to be a directory and contains config file, it
will be used by mistake.</p>
<pre lang="text"><code>├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
</code></pre>
<pre lang="js"><code>// Prettier 3.1.0
await prettier.resolveConfigFile(new URL(&quot;./test.js&quot;,
import.meta.url));
// &lt;CWD&gt;/test.js/.prettierrc
<p>// Prettier 3.1.1
await prettier.resolveConfigFile(new URL(&quot;./test.js&quot;,
import.meta.url));
// &lt;CWD&gt;/.prettierrc
</code></pre></p>
<h4>Skip explicitly passed symbolic links with
<code>--no-error-on-unmatched-pattern</code> (<a
href="https://redirect.github.com/prettier/prettier/pull/15533">#15533</a>
by <a
href="https://github.com/sanmai-NL"><code>@​sanmai-NL</code></a>)</h4>
<p>Since Prettier v3, we stopped following symbolic links, however in
some use cases, the symbolic link patterns can't be filtered out, and
there is no way to prevent Prettier from throwing errors.</p>
<p>In Prettier 3.1.1, you can use
<code>--no-error-on-unmatched-pattern</code> to simply skip symbolic
links.</p>
<h4>Consistently use tabs in ternaries when <code>useTabs</code> is
<code>true</code> (<a
href="https://redirect.github.com/prettier/prettier/pull/15662">#15662</a>
by <a href="https://github.com/auvred"><code>@​auvred</code></a>)</h4>
<!-- raw HTML omitted -->
<pre lang="jsx"><code>// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;
<p>// Prettier 3.1.0
aaaaaaaaaaaaaaa
? bbbbbbbbbbbbbbbbbb
: ccccccccccccccc
? ddddddddddddddd
: eeeeeeeeeeeeeee
? fffffffffffffff
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b86701dd1d"><code>b86701d</code></a>
Release 3.1.1</li>
<li><a
href="c97480c9a9"><code>c97480c</code></a>
Use <code>attributes</code> instead of deprecated
<code>assertions</code> (<a
href="https://redirect.github.com/prettier/prettier/issues/15758">#15758</a>)</li>
<li><a
href="0d1ffb3a91"><code>0d1ffb3</code></a>
Consistently use tabs in ternaries when <code>useTabs</code> is
<code>true</code> (<a
href="https://redirect.github.com/prettier/prettier/issues/15662">#15662</a>)</li>
<li><a
href="5f7aedc1cf"><code>5f7aedc</code></a>
fix example to fit the actual experimentalTernaries behaviour (<a
href="https://redirect.github.com/prettier/prettier/issues/15747">#15747</a>)</li>
<li><a
href="1e30f66f39"><code>1e30f66</code></a>
Remove claim, untrue since over 5 years ago, that cursorOffset is
incompatibl...</li>
<li><a
href="39e4e7bf40"><code>39e4e7b</code></a>
Add cursorOffset to Playground (<a
href="https://redirect.github.com/prettier/prettier/issues/15751">#15751</a>)</li>
<li><a
href="8e816ade2e"><code>8e816ad</code></a>
Allow skipping symlink patterns, to avoid raising a fault (<a
href="https://redirect.github.com/prettier/prettier/issues/15533">#15533</a>)</li>
<li><a
href="2ca5d757b7"><code>2ca5d75</code></a>
Fix expect call in dts test (<a
href="https://redirect.github.com/prettier/prettier/issues/15766">#15766</a>)</li>
<li><a
href="15c742844f"><code>15c7428</code></a>
chore(deps): update dependency flow-parser to v0.223.3 (<a
href="https://redirect.github.com/prettier/prettier/issues/15760">#15760</a>)</li>
<li><a
href="d3b3d4f5e3"><code>d3b3d4f</code></a>
chore(deps): update dependency hermes-parser to v0.18.0 (<a
href="https://redirect.github.com/prettier/prettier/issues/15761">#15761</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/prettier/prettier/compare/3.0.3...3.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier-plugin-svelte` from 3.0.3 to 3.1.2
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/prettier-plugin-svelte/blob/master/CHANGELOG.md">prettier-plugin-svelte's
changelog</a>.</em></p>
<blockquote>
<h2>3.1.2</h2>
<ul>
<li>(fix) handle <code>&gt;</code> tags in attributes</li>
</ul>
<h2>3.1.1</h2>
<ul>
<li>(fix) handle types on each/await contexts</li>
</ul>
<h2>3.1.0</h2>
<ul>
<li>(feat) add experimental support for Svelte 5</li>
<li>(feat) support <code>#snippet</code> and <code>@render</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1c4bcfe186"><code>1c4bcfe</code></a>
fix: handle <code>&gt;</code> tags in attributes</li>
<li><a
href="66ec48bb73"><code>66ec48b</code></a>
fix: handle types on each/await contexts</li>
<li><a
href="f284d1b76c"><code>f284d1b</code></a>
docs: Rewrite README and migration guide (<a
href="https://redirect.github.com/sveltejs/prettier-plugin-svelte/issues/409">#409</a>)</li>
<li><a
href="dd66514dba"><code>dd66514</code></a>
feat: add experimental support for Svelte 5</li>
<li><a
href="9060efde88"><code>9060efd</code></a>
docs: Update README.md (<a
href="https://redirect.github.com/sveltejs/prettier-plugin-svelte/issues/399">#399</a>)</li>
<li><a
href="b269610ce6"><code>b269610</code></a>
docs: remove nonexistent options (<a
href="https://redirect.github.com/sveltejs/prettier-plugin-svelte/issues/397">#397</a>)</li>
<li>See full diff in <a
href="https://github.com/sveltejs/prettier-plugin-svelte/compare/v3.0.3...v3.1.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `svelte` from 4.2.2 to 4.2.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/releases">svelte's
releases</a>.</em></p>
<blockquote>
<h2>svelte@4.2.8</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: port over props that were set prior to initialization (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9701">#9701</a>)</li>
</ul>
<h2>svelte@4.2.7</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: handle spreads within static strings (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9554">#9554</a>)</li>
</ul>
<h2>svelte@4.2.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: adjust static attribute regex (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9551">#9551</a>)</li>
</ul>
<h2>svelte@4.2.5</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: ignore expressions in top level script/style tag attributes (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9498">#9498</a>)</li>
</ul>
<h2>svelte@4.2.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: handle closing tags inside attribute values (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9486">#9486</a>)</li>
</ul>
<h2>svelte@4.2.3</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: improve a11y-click-events-have-key-events message (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9358">#9358</a>)</p>
</li>
<li>
<p>fix: more robust hydration of html tag (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9184">#9184</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/blob/svelte@4.2.8/packages/svelte/CHANGELOG.md">svelte's
changelog</a>.</em></p>
<blockquote>
<h2>4.2.8</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: port over props that were set prior to initialization (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9701">#9701</a>)</li>
</ul>
<h2>4.2.7</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: handle spreads within static strings (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9554">#9554</a>)</li>
</ul>
<h2>4.2.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: adjust static attribute regex (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9551">#9551</a>)</li>
</ul>
<h2>4.2.5</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: ignore expressions in top level script/style tag attributes (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9498">#9498</a>)</li>
</ul>
<h2>4.2.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: handle closing tags inside attribute values (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9486">#9486</a>)</li>
</ul>
<h2>4.2.3</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: improve a11y-click-events-have-key-events message (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9358">#9358</a>)</p>
</li>
<li>
<p>fix: more robust hydration of html tag (<a
href="https://redirect.github.com/sveltejs/svelte/pull/9184">#9184</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="226bf419f9"><code>226bf41</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9719">#9719</a>)</li>
<li><a
href="31d939fefa"><code>31d939f</code></a>
fix: port over props that were set prior to initialization (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9701">#9701</a>)</li>
<li><a
href="2d8a8603cb"><code>2d8a860</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9555">#9555</a>)</li>
<li><a
href="9b3341378a"><code>9b33413</code></a>
fix: handle spreads within static strings (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9554">#9554</a>)</li>
<li><a
href="1fd0b18459"><code>1fd0b18</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9553">#9553</a>)</li>
<li><a
href="77ba5e7a2f"><code>77ba5e7</code></a>
fix: adjust static attribute regex (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9551">#9551</a>)</li>
<li><a
href="36b2c50a70"><code>36b2c50</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9512">#9512</a>)</li>
<li><a
href="9a97d5c547"><code>9a97d5c</code></a>
fix: ignore expressions in top level script/style tag attributes (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9498">#9498</a>)</li>
<li><a
href="2ea17648f2"><code>2ea1764</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9491">#9491</a>)</li>
<li><a
href="b2e1f1c102"><code>b2e1f1c</code></a>
fix: handle closing tags inside attribute values (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/9486">#9486</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/sveltejs/svelte/commits/svelte@4.2.8/packages/svelte">compare
view</a></li>
</ul>
</details>
<br />

Updates `svelte-preprocess` from 5.0.4 to 5.1.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte-preprocess/blob/main/CHANGELOG.md">svelte-preprocess's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/sveltejs/svelte-preprocess/compare/v5.1.2...v5.1.3">5.1.3</a>
(2023-12-18)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>sass dependency list referencing source file in win32 (<a
href="https://redirect.github.com/sveltejs/svelte-preprocess/issues/621">#621</a>)
(<a
href="209312fe25">209312f</a>)</li>
</ul>
<h2><a
href="https://github.com/sveltejs/svelte-preprocess/compare/v5.1.1...v5.1.2">5.1.2</a>
(2023-12-12)</h2>
<ul>
<li>chore: mark postcss-load-config 5 as supported (<a
href="4ba875d1ab">3b5b1f0</a>)</li>
</ul>
<h2><a
href="https://github.com/sveltejs/svelte-preprocess/compare/v5.1.0...v5.1.1">5.1.1</a>
(2023-11-21)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>force module(resolution) (<a
href="66d3cf9a0c">66d3cf9</a>)</li>
</ul>
<h1><a
href="https://github.com/sveltejs/svelte-preprocess/compare/v5.0.3...v5.1.0">5.1.0</a>
(2023-11-10)</h1>
<h3>Bug Fixes</h3>
<ul>
<li>spelling &quot;dianostics&quot; - &quot;diagnostics&quot; (<a
href="https://redirect.github.com/sveltejs/svelte-preprocess/issues/606">#606</a>)
(<a
href="a48cc4e122">a48cc4e</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li>add experimental support for Svelte 5 (<a
href="923f437d4d">923f437</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/sveltejs/svelte-preprocess/commits/v5.1.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `tailwindcss` from 3.3.5 to 3.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's
releases</a>.</em></p>
<blockquote>
<h2>v3.3.7</h2>
<h3>Fixed</h3>
<ul>
<li>Fix support for container query utilities with arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12534">#12534</a>)</li>
<li>Fix custom config loading in Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12616">#12616</a>)</li>
</ul>
<h2>v3.3.6</h2>
<h3>Fixed</h3>
<ul>
<li>Don’t add spaces to negative numbers following a comma (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12324">#12324</a>)</li>
<li>Don't emit <code>@config</code> in CSS when watching via the CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12327">#12327</a>)</li>
<li>Improve types for <code>resolveConfig</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12272">#12272</a>)</li>
<li>Ensure configured <code>font-feature-settings</code> for
<code>mono</code> are included in Preflight (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12342">#12342</a>)</li>
<li>Improve candidate detection in minified JS arrays (without spaces)
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12396">#12396</a>)</li>
<li>Don't crash when given applying a variant to a negated version of a
simple utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12514">#12514</a>)</li>
<li>Fix support for slashes in arbitrary modifiers (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12515">#12515</a>)</li>
<li>Fix source maps of variant utilities that come from an
<code>@layer</code> rule (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12508">#12508</a>)</li>
<li>Fix loading of built-in plugins when using an ESM or TypeScript
config with the Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12506">#12506</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/blob/v3.3.7/CHANGELOG.md">tailwindcss's
changelog</a>.</em></p>
<blockquote>
<h2>[3.3.7] - 2023-12-18</h2>
<h3>Fixed</h3>
<ul>
<li>Fix support for container query utilities with arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12534">#12534</a>)</li>
<li>Fix custom config loading in Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12616">#12616</a>)</li>
</ul>
<h2>[3.3.6] - 2023-12-04</h2>
<h3>Fixed</h3>
<ul>
<li>Don’t add spaces to negative numbers following a comma (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12324">#12324</a>)</li>
<li>Don't emit <code>@config</code> in CSS when watching via the CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12327">#12327</a>)</li>
<li>Improve types for <code>resolveConfig</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12272">#12272</a>)</li>
<li>Ensure configured <code>font-feature-settings</code> for
<code>mono</code> are included in Preflight (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12342">#12342</a>)</li>
<li>Improve candidate detection in minified JS arrays (without spaces)
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12396">#12396</a>)</li>
<li>Don't crash when given applying a variant to a negated version of a
simple utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12514">#12514</a>)</li>
<li>Fix support for slashes in arbitrary modifiers (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12515">#12515</a>)</li>
<li>Fix source maps of variant utilities that come from an
<code>@layer</code> rule (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12508">#12508</a>)</li>
<li>Fix loading of built-in plugins when using an ESM or TypeScript
config with the Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12506">#12506</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b01283cc9b"><code>b01283c</code></a>
3.3.7</li>
<li><a
href="67fd939d3e"><code>67fd939</code></a>
Fix custom config loading in Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12616">#12616</a>)</li>
<li><a
href="cc94c76ee5"><code>cc94c76</code></a>
Fix support for container query utilities with arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12534">#12534</a>)</li>
<li><a
href="3125829919"><code>3125829</code></a>
3.3.6</li>
<li><a
href="16fd9ffdb4"><code>16fd9ff</code></a...

_Description has been truncated_

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-19 12:55:18 -05:00
HazzyDevil b12f47ff47
Update binaries.rs (#383)
Adding format! macro to enclose directories in double quotes. Useful for
when the path has a space in between two strings.
2023-12-14 09:52:59 -05:00
tripp 0cfbd3609a
Toast updates (#405)
Toast improvements:
- Icon and color based on toast level (info, warn, error)
- Animates out
- Made it a component, removing logic from `app.svelte`
- handles multiple toast messages better using a queue

Sidebar styling logic:
This was kinda gross so I revised it a bit. I'm considering doing an
overhaul of the sidebar in the future.
2023-12-09 15:11:06 -05:00
tripp d85a4af9fa
Better UX for changing the active game version (#400)
Handles #346 

Changes:
- removed save button in the versions menu
- active game version changes automatically after downloading,
redownloading, and changing selected radio button
- added toast popup so users know the active gave version was changed
2023-12-06 12:01:32 -05:00
dependabot[bot] d809f0bc57
build(deps): bump serde from 1.0.190 to 1.0.191 in /src-tauri (#379)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-08 18:52:42 -05:00
Matt Dallmeyer fc70da1922
pass --game to goalc (#380) 2023-11-08 18:52:33 -05:00
OpenGOALBot fcf48ccf84 release: update release metadata to latest 2023-11-06 05:45:45 +00:00
OpenGOALBot 5dbd33d03a release: bump to version - v2.4.0 2023-11-06 05:29:17 +00:00
dependabot[bot] 96c82973ab
build(deps-dev): bump the frontend-deps group with 7 updates (#375)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-06 00:21:56 -05:00
NeoFoxxo 41e3581826
Track playtime and display it in the launcher (#336)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tyler Wilding <xTVaser@users.noreply.github.com>
Co-authored-by: OpenGOALBot <OpenGOALBot@users.noreply.github.com>
Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
2023-11-06 00:18:00 -05:00
OpenGOALBot 52e10be247 release: update release metadata to latest 2023-11-05 18:58:00 +00:00
OpenGOALBot 7e271e8357 release: bump to version - v2.3.6 2023-11-05 18:47:37 +00:00
Tyler Wilding 4369ba5fba
backend: Fix issue causing the Continue button to be unresponsive on new installs (#376) 2023-11-05 13:46:54 -05:00
dependabot[bot] 633aac0737
build(deps): bump actions/setup-node from 3 to 4 (#359)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-05 13:13:17 -05:00
OpenGOALBot a937889497 release: update release metadata to latest 2023-11-05 16:51:10 +00:00