Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Bump @vueuse/core from 12.4.0 to 12.5.0 (#3471)
Bumps [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) from 12.4.0 to 12.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vueuse/vueuse/releases"><code>@vueuse/core</code>'s releases</a>.</em></p> <blockquote> <h2>v12.5.0</h2> <h3> 🚀 Features</h3> <ul> <li>More passive event handlers - by <a href="https://github.com/ferferga"><code>@ferferga</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4484">vueuse/vueuse#4484</a> <a href="https://github.com/vueuse/vueuse/commit/eddbf8f9"><!-- raw HTML omitted -->(eddbf)<!-- raw HTML omitted --></a></li> <li>Use <code>useEventListener</code> where it was not being used - by <a href="https://github.com/ferferga"><code>@ferferga</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4479">vueuse/vueuse#4479</a> <a href="https://github.com/vueuse/vueuse/commit/c6c6ede0"><!-- raw HTML omitted -->(c6c6e)<!-- raw HTML omitted --></a></li> <li><strong>useClipboard</strong>: Should fall back to legacy clipboard when read/write fails - by <a href="https://github.com/OrbisK"><code>@OrbisK</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4512">vueuse/vueuse#4512</a> <a href="https://github.com/vueuse/vueuse/commit/01acd578"><!-- raw HTML omitted -->(01acd)<!-- raw HTML omitted --></a></li> <li><strong>useCountdown</strong>: New function - by <a href="https://github.com/rtugeek"><code>@rtugeek</code></a>, <a href="https://github.com/huang-julien"><code>@huang-julien</code></a>, <strong>Anthony Fu</strong> and <a href="https://github.com/antfu"><code>@antfu</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4125">vueuse/vueuse#4125</a> <a href="https://github.com/vueuse/vueuse/commit/69cedd2f"><!-- raw HTML omitted -->(69ced)<!-- raw HTML omitted --></a></li> <li><strong>useEventListener</strong>: Make all parameters arrayable and reactive - by <a href="https://github.com/ferferga"><code>@ferferga</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4486">vueuse/vueuse#4486</a> <a href="https://github.com/vueuse/vueuse/commit/caf08519"><!-- raw HTML omitted -->(caf08)<!-- raw HTML omitted --></a></li> <li><strong>useFetch</strong>: Add parameters to the <code>afterFetch</code> and <code>onFetchError</code> - by <a href="https://github.com/tolking"><code>@tolking</code></a> and <strong>Anthony Fu</strong> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4499">vueuse/vueuse#4499</a> <a href="https://github.com/vueuse/vueuse/commit/98a83d78"><!-- raw HTML omitted -->(98a83)<!-- raw HTML omitted --></a></li> <li><strong>useFileDialog</strong>: Add initialFiles option - by <a href="https://github.com/EvgenyWas"><code>@EvgenyWas</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4509">vueuse/vueuse#4509</a> <a href="https://github.com/vueuse/vueuse/commit/8a8d6a3f"><!-- raw HTML omitted -->(8a8d6)<!-- raw HTML omitted --></a></li> </ul> <h3> 🐞 Bug Fixes</h3> <ul> <li><strong>debounceFilter</strong>: Invoke on maxWait with the latest invoker - by <a href="https://github.com/43081j"><code>@43081j</code></a> and <a href="https://github.com/OrbisK"><code>@OrbisK</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4497">vueuse/vueuse#4497</a> <a href="https://github.com/vueuse/vueuse/commit/48e0a2e0"><!-- raw HTML omitted -->(48e0a)<!-- raw HTML omitted --></a></li> <li><strong>useMagicKeys</strong>: Fix key order issue on first use - by <a href="https://github.com/babu-ch"><code>@babu-ch</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4505">vueuse/vueuse#4505</a> <a href="https://github.com/vueuse/vueuse/commit/b6947f78"><!-- raw HTML omitted -->(b6947)<!-- raw HTML omitted --></a></li> <li><strong>useVirtualList</strong>: Allow readonly arrays as input - by <a href="https://github.com/RebeccaStevens"><code>@RebeccaStevens</code></a> in <a href="https://redirect.github.com/vueuse/vueuse/issues/4504">vueuse/vueuse#4504</a> <a href="https://github.com/vueuse/vueuse/commit/f3cc7eca"><!-- raw HTML omitted -->(f3cc7)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vueuse/vueuse/compare/v12.4.0...v12.5.0">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vueuse/vueuse/commit/1e153e936a6055d633becd3a685603b4492d8791"><code>1e153e9</code></a> chore: release v12.5.0</li> <li><a href="https://github.com/vueuse/vueuse/commit/98a83d7861f8b7d1f7a29a594afb8b07cc714f4f"><code>98a83d7</code></a> feat(useFetch): add parameters to the <code>afterFetch</code> and <code>onFetchError</code> (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4499">#4499</a>)</li> <li><a href="https://github.com/vueuse/vueuse/commit/01acd57850724cd5fefcd83f9526f5a4c533a22a"><code>01acd57</code></a> feat(useClipboard): should fall back to legacy clipboard when read/write fail...</li> <li><a href="https://github.com/vueuse/vueuse/commit/0ebefbe2c3c66879b7300634b0cee169f07c4e9b"><code>0ebefbe</code></a> docs(useClipboardItems): fix demo by using <code>text/plain</code> mime type (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4513">#4513</a>)</li> <li><a href="https://github.com/vueuse/vueuse/commit/f3cc7ecad6483ff2b6214f47ad64d1d154b49fe3"><code>f3cc7ec</code></a> fix(useVirtualList): allow readonly arrays as input (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4504">#4504</a>)</li> <li><a href="https://github.com/vueuse/vueuse/commit/69cedd2fc7e8eaae673d642bb70cc9b30b3cd7da"><code>69cedd2</code></a> feat(useCountdown): new function (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4125">#4125</a>)</li> <li><a href="https://github.com/vueuse/vueuse/commit/b6947f78329374876df5f589e43256e46bba68d7"><code>b6947f7</code></a> fix(useMagicKeys): fix key order issue on first use (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4505">#4505</a>)</li> <li><a href="https://github.com/vueuse/vueuse/commit/d08eb2c8ad17c01b77d49a01de13009553ccf624"><code>d08eb2c</code></a> refactor: use <code>useTemplateRef</code> instead of <code>ref</code> in demos and docs (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4482">#4482</a>)</li> <li><a href="https://github.com/vueuse/vueuse/commit/8a8d6a3f873d75c725b24e2ca65a3b552faefae0"><code>8a8d6a3</code></a> feat(useFileDialog): add initialFiles option (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4509">#4509</a>)</li> <li><a href="https://github.com/vueuse/vueuse/commit/3933a0b014951607f75a4c3d740c6433e854e077"><code>3933a0b</code></a> chore(deps): update to vitest@3 (<a href="https://github.com/vueuse/vueuse/tree/HEAD/packages/core/issues/4501">#4501</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vueuse/vueuse/commits/v12.5.0/packages/core">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@vueuse/core&package-manager=npm_and_yarn&previous-version=12.4.0&new-version=12.5.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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information