[PR #852] [CLOSED] Bump the prod-minor-updates group with 4 updates #856

Closed
opened 2025-11-13 12:12:28 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/852
Author: @dependabot[bot]
Created: 6/6/2025
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/prod-minor-updates-7ee9e5925d


📝 Commits (1)

  • 1922aa1 Bump the prod-minor-updates group with 4 updates

📊 Changes

2 files changed (+28 additions, -28 deletions)

View changed files

📝 package-lock.json (+24 -24)
📝 package.json (+4 -4)

📄 Description

Bumps the prod-minor-updates group with 4 updates: better-sqlite3, drizzle-orm, lucide-react and react-hook-form.

Updates better-sqlite3 from 11.7.0 to 11.10.0

Release notes

Sourced from better-sqlite3's releases.

v11.10.0

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.9.1...v11.10.0

v11.9.1

What's Changed

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.9.0...v11.9.1

v11.9.0

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.8.1...v11.9.0

v11.8.1

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.8.0...v11.8.1

v11.8.0

What's Changed

... (truncated)

Commits

Updates drizzle-orm from 0.38.3 to 0.44.2

Release notes

Sourced from drizzle-orm's releases.

0.44.2

  • [BUG]: Fixed type issues with joins with certain variations of tsconfig: #4535, #4457

0.44.1

0.44.0

Error handling

Starting from this version, we’ve introduced a new DrizzleQueryError that wraps all errors from database drivers and provides a set of useful information:

  1. A proper stack trace to identify which exact Drizzle query failed
  2. The generated SQL string and its parameters
  3. The original stack trace from the driver that caused the DrizzleQueryError

Drizzle cache module

Drizzle sends every query straight to your database by default. There are no hidden actions, no automatic caching or invalidation - you’ll always see exactly what runs. If you want caching, you must opt in.

By default, Drizzle uses a explicit caching strategy (i.e. global: false), so nothing is ever cached unless you ask. This prevents surprises or hidden performance traps in your application. Alternatively, you can flip on all caching (global: true) so that every select will look in cache first.

Out first native integration was built together with Upstash team and let you natively use upstash as a cache for your drizzle queries

import { upstashCache } from "drizzle-orm/cache/upstash";
import { drizzle } from "drizzle-orm/...";

const db = drizzle(process.env.DB_URL!, { cache: upstashCache({ // 👇 Redis credentials (optional — can also be pulled from env vars) url: '<UPSTASH_URL>', token: '<UPSTASH_TOKEN>', // 👇 Enable caching for all queries by default (optional) global: true, // 👇 Default cache behavior (optional) config: { ex: 60 } }) });

You can also implement your own cache, as Drizzle exposes all the necessary APIs, such as get, put, mutate, etc. You can find full implementation details on the website

import Keyv from "keyv";
export class TestGlobalCache extends Cache {
  private globalTtl: number = 1000;
  // This object will be used to store which query keys were used
  // for a specific table, so we can later use it for invalidation.
  private usedTablesPerKey: Record<string, string[]> = {};
</tr></table> 

... (truncated)

Commits
  • 50a8b16 Fixed type issues with joins with certain variations of tsconfig (fixes #45...
  • 9865e63 Fix better-sqlite version
  • a950db5 Patch fix DO bugs with a new cache feature
  • fa9aa1e Cache (#4447)
  • 3f4a6aa fix(drizzle-zod): add generated column type to zod ts schema type (#4554)
  • 8e9e8ed Add release notes
  • cc2ca82 Add fix for latest zod version
  • e338ccb Add validator packages release notes
  • 0b8920b Support Zod v4 in drizzle-zod (#4478)
  • 08944da Add more dependabot changes
  • Additional commits viewable in compare view

Updates lucide-react from 0.511.0 to 0.513.0

Release notes

Sourced from lucide-react's releases.

Version 0.513.0

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.512.0...0.513.0

Version 0.512.0

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.511.0...0.512.0

Commits

Updates react-hook-form from 7.56.4 to 7.57.0

Release notes

Sourced from react-hook-form's releases.

Version 7.57.0

🫚 feat: root errors count in schema error lookup (#12839) 👁️ feat: focus form field for errors supplied by errors prop (#12805) ⌨️ feat: add and export options config for resetField api (#12819) 🐞 close #12707 useController focus function runtime issue (#12843) 🐞 fix: add proper types to form.subscribe (#12850) 🐞 fix: add type info for callback args in subscribe (#12859) 🔄 close #12835 revert original fix on errors empty object check (#12846)

thanks to @​candymask0712, @​CertainlyAria, @​jkbach, @​chrisgarber and @​evgeniyworkbel

Version 7.57.0-next.0

👀 useWatch new compute props

  • subscribe to the entire form but only return updated value with certain condition
type FormValue = {
  test: string;
}

const watchedValue = useWatch({
control: methods.control,
compute: (data: FormValue) => {
if (data.test?.length) {
return data.test;
}

return '';

},
});

  • subscribe to a specific form value state
type FormValue = {
  test: string;
}

const watchedValue = useWatch({
control: methods.control,
name: 'test',
compute: (data: string) => {
return data.length > 3 ? data : '';
},
});

Commits

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <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

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/fosrl/pangolin/pull/852 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 6/6/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/prod-minor-updates-7ee9e5925d` --- ### 📝 Commits (1) - [`1922aa1`](https://github.com/fosrl/pangolin/commit/1922aa11a7150184a7ccae750440b0bf9a897173) Bump the prod-minor-updates group with 4 updates ### 📊 Changes **2 files changed** (+28 additions, -28 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+24 -24) 📝 `package.json` (+4 -4) </details> ### 📄 Description Bumps the prod-minor-updates group with 4 updates: [better-sqlite3](https://github.com/WiseLibs/better-sqlite3), [drizzle-orm](https://github.com/drizzle-team/drizzle-orm), [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) and [react-hook-form](https://github.com/react-hook-form/react-hook-form). Updates `better-sqlite3` from 11.7.0 to 11.10.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/WiseLibs/better-sqlite3/releases">better-sqlite3's releases</a>.</em></p> <blockquote> <h2>v11.10.0</h2> <h2>What's Changed</h2> <ul> <li>Increase timeout test because of GitHub Action by <a href="https://github.com/Prinzhorn"><code>@​Prinzhorn</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1351">WiseLibs/better-sqlite3#1351</a></li> <li>Disallow transaction to return a Promise due to unexpected behaviour by <a href="https://github.com/phiresky"><code>@​phiresky</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1364">WiseLibs/better-sqlite3#1364</a></li> <li>docs: fix clone url at benchmark.md by <a href="https://github.com/jNullj"><code>@​jNullj</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1357">WiseLibs/better-sqlite3#1357</a></li> <li>Prebuild for Electron 36 by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1368">WiseLibs/better-sqlite3#1368</a></li> <li>Update SQLite to version 3.49.2 in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1370">WiseLibs/better-sqlite3#1370</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/phiresky"><code>@​phiresky</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1364">WiseLibs/better-sqlite3#1364</a></li> <li><a href="https://github.com/jNullj"><code>@​jNullj</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1357">WiseLibs/better-sqlite3#1357</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.9.1...v11.10.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.9.1...v11.10.0</a></p> <h2>v11.9.1</h2> <h2>What's Changed</h2> <ul> <li>Use the <code>node:18-bullseye</code> image for Linux x64 builds by <a href="https://github.com/m4heshd"><code>@​m4heshd</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1349">WiseLibs/better-sqlite3#1349</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.9.0...v11.9.1">https://github.com/WiseLibs/better-sqlite3/compare/v11.9.0...v11.9.1</a></p> <h2>v11.9.0</h2> <h2>What's Changed</h2> <ul> <li>Fix small typo in api.md by <a href="https://github.com/hMihaiDavid"><code>@​hMihaiDavid</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1324">WiseLibs/better-sqlite3#1324</a></li> <li>Update thread count calculation method in worker_threads example by <a href="https://github.com/nikwen"><code>@​nikwen</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1268">WiseLibs/better-sqlite3#1268</a></li> <li>Add support for electron <code>v35</code> prebuilds by <a href="https://github.com/m4heshd"><code>@​m4heshd</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1340">WiseLibs/better-sqlite3#1340</a></li> <li>Update the Ubuntu runner image in build script to <code>ubuntu-22.04</code> by <a href="https://github.com/m4heshd"><code>@​m4heshd</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1341">WiseLibs/better-sqlite3#1341</a></li> <li>Update SQLite to version 3.49.1 by <a href="https://github.com/JoshuaWise"><code>@​JoshuaWise</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1346">WiseLibs/better-sqlite3#1346</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/hMihaiDavid"><code>@​hMihaiDavid</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1324">WiseLibs/better-sqlite3#1324</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.8.1...v11.9.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.8.1...v11.9.0</a></p> <h2>v11.8.1</h2> <h2>What's Changed</h2> <ul> <li>Fixed <code>SQLITE_ENABLE_UPDATE_DELETE_LIMIT</code> due to breaking change in SQLite core (closes <a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1318">WiseLibs/better-sqlite3#1318</a>)</li> <li>Add API doc note about statement finalization by <a href="https://github.com/kjackson1998"><code>@​kjackson1998</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1310">WiseLibs/better-sqlite3#1310</a></li> <li>README: add section on Upgrading by <a href="https://github.com/alxndrsn"><code>@​alxndrsn</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1300">WiseLibs/better-sqlite3#1300</a></li> <li>Update README.md by <a href="https://github.com/Prinzhorn"><code>@​Prinzhorn</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1264">WiseLibs/better-sqlite3#1264</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/kjackson1998"><code>@​kjackson1998</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1310">WiseLibs/better-sqlite3#1310</a></li> <li><a href="https://github.com/alxndrsn"><code>@​alxndrsn</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1300">WiseLibs/better-sqlite3#1300</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.8.0...v11.8.1">https://github.com/WiseLibs/better-sqlite3/compare/v11.8.0...v11.8.1</a></p> <h2>v11.8.0</h2> <h2>What's Changed</h2> <ul> <li>Prebuild for Electron 34 by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1316">WiseLibs/better-sqlite3#1316</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/335ccad4f0d24d4377eed1118bea5daec0b61647"><code>335ccad</code></a> 11.10.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/bcfdbef9dd4f6f7d12d182ce3e6dab8d1a8b27a3"><code>bcfdbef</code></a> Update SQLite to version 3.49.2 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1370">#1370</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/ba05e857128a8e9cf25a99c5afffb7fe051bd547"><code>ba05e85</code></a> Prebuild for Electron 36 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1368">#1368</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/5dae904a478a163788ce5b8ac0455366522986e7"><code>5dae904</code></a> docs: fix clone url at benchmark.md (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1357">#1357</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/69f673e0dab34ece2d100907a5364a946c34a672"><code>69f673e</code></a> Disallow transaction to return a Promise due to unexpected behaviour (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1364">#1364</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/3d7e671e76bf90450f49ffd0f59a1e8061529add"><code>3d7e671</code></a> Increase timeout test because of GitHub Action (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1351">#1351</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/df8a6a408008379dd4a600ce77af5e7b5d7e2d83"><code>df8a6a4</code></a> 11.9.1</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/4b6a3b1a6baf2ff3772bbb816636775e33412af3"><code>4b6a3b1</code></a> Use the <code>node:18-bullseye</code> image for Linux x64 builds (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1349">#1349</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/c7572501d35d51f483381808460612bf610c709b"><code>c757250</code></a> 11.9.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/73929e8c5c1b1cce0539a22f61e6fecbb2f758c3"><code>73929e8</code></a> Update SQLite to version 3.49.1 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1346">#1346</a>)</li> <li>Additional commits viewable in <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.7.0...v11.10.0">compare view</a></li> </ul> </details> <br /> Updates `drizzle-orm` from 0.38.3 to 0.44.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/drizzle-team/drizzle-orm/releases">drizzle-orm's releases</a>.</em></p> <blockquote> <h2>0.44.2</h2> <ul> <li>[BUG]: Fixed type issues with joins with certain variations of <code>tsconfig</code>: <a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/4535">#4535</a>, <a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/4457">#4457</a></li> </ul> <h2>0.44.1</h2> <ul> <li><a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/4586">[BUG]: Drizzle can no longer run on Durable Objects</a></li> </ul> <h2>0.44.0</h2> <h2>Error handling</h2> <p>Starting from this version, we’ve introduced a new <code>DrizzleQueryError</code> that wraps all errors from database drivers and provides a set of useful information:</p> <ol> <li>A proper stack trace to identify which exact <code>Drizzle</code> query failed</li> <li>The generated SQL string and its parameters</li> <li>The original stack trace from the driver that caused the DrizzleQueryError</li> </ol> <h2>Drizzle <code>cache</code> module</h2> <p>Drizzle sends every query straight to your database by default. There are no hidden actions, no automatic caching or invalidation - you’ll always see exactly what runs. If you want caching, you must opt in.</p> <p>By default, Drizzle uses a explicit caching strategy (i.e. <code>global: false</code>), so nothing is ever cached unless you ask. This prevents surprises or hidden performance traps in your application. Alternatively, you can flip on all caching (global: true) so that every select will look in cache first.</p> <p>Out first native integration was built together with Upstash team and let you natively use <code>upstash</code> as a cache for your drizzle queries</p> <pre lang="ts"><code>import { upstashCache } from &quot;drizzle-orm/cache/upstash&quot;; import { drizzle } from &quot;drizzle-orm/...&quot;; <p>const db = drizzle(process.env.DB_URL!, { cache: upstashCache({ // 👇 Redis credentials (optional — can also be pulled from env vars) url: '&lt;UPSTASH_URL&gt;', token: '&lt;UPSTASH_TOKEN&gt;', // 👇 Enable caching for all queries by default (optional) global: true, // 👇 Default cache behavior (optional) config: { ex: 60 } }) }); </code></pre></p> <p>You can also implement your own cache, as Drizzle exposes all the necessary APIs, such as get, put, mutate, etc. You can find full implementation details on the <a href="https://orm.drizzle.team/docs/cache#custom-cache">website</a></p> <pre lang="ts"><code>import Keyv from &quot;keyv&quot;; export class TestGlobalCache extends Cache { private globalTtl: number = 1000; // This object will be used to store which query keys were used // for a specific table, so we can later use it for invalidation. private usedTablesPerKey: Record&lt;string, string[]&gt; = {}; &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/50a8b163e6209e7dbd72e370556d0a87ec01fd8f"><code>50a8b16</code></a> Fixed type issues with joins with certain variations of <code>tsconfig</code> (fixes <a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/45">#45</a>...</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/9865e63f43074f19c31ca1e73850f13224d0d00e"><code>9865e63</code></a> Fix better-sqlite version</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/a950db594fd404375c688a0e429f59d14d703a03"><code>a950db5</code></a> Patch fix DO bugs with a new cache feature</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/fa9aa1e0d0eb1c394b012f90d26970d89d9edd19"><code>fa9aa1e</code></a> Cache (<a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/4447">#4447</a>)</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/3f4a6aafbe61dd38548b011c7a014be249412359"><code>3f4a6aa</code></a> fix(drizzle-zod): add generated column type to zod ts schema type (<a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/4554">#4554</a>)</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/8e9e8ed4d80cf657bcfeab056f273e8ee0327a1a"><code>8e9e8ed</code></a> Add release notes</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/cc2ca825af1a5a88cb1e8b17e85fc08e74388dfb"><code>cc2ca82</code></a> Add fix for latest zod version</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/e338ccbfe88793653443be8af4a8f90f5e0cfd0b"><code>e338ccb</code></a> Add validator packages release notes</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/0b8920bce89a89c773eb408905704b98a37e5e19"><code>0b8920b</code></a> Support Zod v4 in drizzle-zod (<a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/4478">#4478</a>)</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/08944daf632e33c784937ac2de404cb081f795cd"><code>08944da</code></a> Add more dependabot changes</li> <li>Additional commits viewable in <a href="https://github.com/drizzle-team/drizzle-orm/compare/0.38.3...0.44.2">compare view</a></li> </ul> </details> <br /> Updates `lucide-react` from 0.511.0 to 0.513.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lucide-icons/lucide/releases">lucide-react's releases</a>.</em></p> <blockquote> <h2>Version 0.513.0</h2> <h2>What's Changed</h2> <ul> <li>feat(icons): Add sim card icon from lab by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3275">lucide-icons/lucide#3275</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.512.0...0.513.0">https://github.com/lucide-icons/lucide/compare/0.512.0...0.513.0</a></p> <h2>Version 0.512.0</h2> <h2>What's Changed</h2> <ul> <li>feat(icons): added <code>circle-pound-sterling</code> icon by <a href="https://github.com/lieonlion"><code>@​lieonlion</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2822">lucide-icons/lucide#2822</a></li> <li>build(deps-dev): bump vite from 6.3.2 to 6.3.4 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3181">lucide-icons/lucide#3181</a></li> <li>docs(docs): added testing website locally instructions by <a href="https://github.com/briz123"><code>@​briz123</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3124">lucide-icons/lucide#3124</a></li> <li>build(deps-dev): bump vite from 6.0.7 to 6.1.6 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3236">lucide-icons/lucide#3236</a></li> <li>fix(icons): changed <code>square-check-big</code> icon by <a href="https://github.com/jguddas"><code>@​jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3156">lucide-icons/lucide#3156</a></li> <li>fix(icons): changed <code>list-collapse</code> icon by <a href="https://github.com/jguddas"><code>@​jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3081">lucide-icons/lucide#3081</a></li> <li>fix(icons): changed <code>battery-*</code> icons by <a href="https://github.com/jguddas"><code>@​jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3083">lucide-icons/lucide#3083</a></li> <li>fix(icons): changed <code>paperclip</code> icon by <a href="https://github.com/jguddas"><code>@​jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2956">lucide-icons/lucide#2956</a></li> <li>fix(icons): changed <code>eraser</code> icon by <a href="https://github.com/jguddas"><code>@​jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3076">lucide-icons/lucide#3076</a></li> <li>feat(icons): Add <code>cloud-check</code> icon by <a href="https://github.com/lscheibel"><code>@​lscheibel</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2612">lucide-icons/lucide#2612</a></li> <li>feat(icon): add <code>id-card-lanyard</code> icon by <a href="https://github.com/python2911"><code>@​python2911</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2898">lucide-icons/lucide#2898</a></li> <li>feat(angular): update peer dependencies for Angular to support version 20.x by <a href="https://github.com/JeevanMahesha"><code>@​JeevanMahesha</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3273">lucide-icons/lucide#3273</a></li> <li>fix(icons): changed <code>file-badge</code> icon by <a href="https://github.com/jguddas"><code>@​jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2934">lucide-icons/lucide#2934</a></li> <li>feat(icons): added <code>grid-3x2</code> icon by <a href="https://github.com/qubrat"><code>@​qubrat</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3216">lucide-icons/lucide#3216</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/lieonlion"><code>@​lieonlion</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2822">lucide-icons/lucide#2822</a></li> <li><a href="https://github.com/python2911"><code>@​python2911</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2898">lucide-icons/lucide#2898</a></li> <li><a href="https://github.com/JeevanMahesha"><code>@​JeevanMahesha</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3273">lucide-icons/lucide#3273</a></li> <li><a href="https://github.com/qubrat"><code>@​qubrat</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3216">lucide-icons/lucide#3216</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.511.0...0.512.0">https://github.com/lucide-icons/lucide/compare/0.511.0...0.512.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lucide-icons/lucide/commit/19fa01b5fca2fc4a9cd0a77e4e9a0122b949813b"><code>19fa01b</code></a> build(deps-dev): bump vite from 6.3.2 to 6.3.4 (<a href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/3181">#3181</a>)</li> <li>See full diff in <a href="https://github.com/lucide-icons/lucide/commits/0.513.0/packages/lucide-react">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.56.4 to 7.57.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.57.0</h2> <p>🫚 feat: root errors count in schema error lookup (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12839">#12839</a>) 👁️ feat: focus form field for errors supplied by errors prop (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12805">#12805</a>) ⌨️ feat: add and export options config for resetField api (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12819">#12819</a>) 🐞 close <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12707">#12707</a> useController focus function runtime issue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12843">#12843</a>) 🐞 fix: add proper types to form.subscribe (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12850">#12850</a>) 🐞 fix: add type info for callback args in subscribe (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12859">#12859</a>) 🔄 close <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12835">#12835</a> revert original fix on errors empty object check (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12846">#12846</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/CertainlyAria"><code>@​CertainlyAria</code></a>, <a href="https://github.com/jkbach"><code>@​jkbach</code></a>, <a href="https://github.com/chrisgarber"><code>@​chrisgarber</code></a> and <a href="https://github.com/evgeniyworkbel"><code>@​evgeniyworkbel</code></a></p> <h2>Version 7.57.0-next.0</h2> <h3>👀 <code>useWatch</code> new <code>compute</code> props</h3> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/e49d8a8a678d014cc48abb4db1b04ae1c29686b4"><code>e49d8a8</code></a> 7.57.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3fd740fc4f0c4df6c528533891b0370990189687"><code>3fd740f</code></a> 🐞 fix: add type info for callback args in subscribe (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12859">#12859</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/90cdaee9ba148e6c28fe3cb69f885ae1541f7c04"><code>90cdaee</code></a> 🐞 fix: add proper types to <code>form.subscribe</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12850">#12850</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/cff88197fe00dbd200432efd0e8e3c20d29f8332"><code>cff8819</code></a> 🔄 close <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12835">#12835</a> revert original fix on errors empty object check (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12846">#12846</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/d666a76effe454aa5e6690ebd7c387379c3c8af3"><code>d666a76</code></a> 👁️ feat: focus form field for errors supplied by errors prop (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12805">#12805</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/490f04f3e57bf5754832b4a4af9531eeaea59d93"><code>490f04f</code></a> 🐞 close <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12707">#12707</a> useController focus function runtime issue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12843">#12843</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/c22c02806aff34077a5938b0e6203b321aaa6c88"><code>c22c028</code></a> ⌨️ rename to UseFormResetFieldOptions for type consistency</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/5345f0da8cc96341ea1cc294c71a08b6d18a0da7"><code>5345f0d</code></a> ⌨️ feat: add and export options config for resetField api (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12819">#12819</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/d7aa9739cddbf224aa60389ea98263fc23e9105c"><code>d7aa973</code></a> 🫚 feat: root errors count in schema error lookup (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12839">#12839</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/8f874e198f1b0035c18e7d13d5b4e044870f2206"><code>8f874e1</code></a> 🌎 remove <a href="http://www">www</a>. for the doc</li> <li>See full diff in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.56.4...v7.57.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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-13 12:12:28 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#856