Starting from this version, we’ve introduced a new DrizzleQueryError that wraps all errors from database drivers and provides a set of useful information:
A proper stack trace to identify which exact Drizzle query failed
The generated SQL string and its parameters
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...
⌨️ feat: add FieldArrayPathByValue type (#12481)
📇 feat #12813 use stringToPath to prevent error at field name with quotes (#12858)
🧧 default to crypto.randomUUID in generateId (#12890)
🐞 close #12857 incorrect formControl return from useForm (#12878)
🐞 fix Initial useFieldArray fields (#12847)
🥷 chore: improve type import (#12879)
📇 chore: Added displayName to useFormContext (#11448)
✍️ chore: fix typo in assert-esm-exports.mjs (#12860)
🫚 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)
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/930
**Author:** [@dependabot[bot]](https://github.com/apps/dependabot)
**Created:** 6/18/2025
**Status:** ✅ Merged
**Merged:** 6/19/2025
**Merged by:** [@oschwartz10612](https://github.com/oschwartz10612)
**Base:** `main` ← **Head:** `dependabot/npm_and_yarn/prod-minor-updates-b2e6812000`
---
### 📝 Commits (1)
- [`c86418d`](https://github.com/fosrl/pangolin/commit/c86418dbbbab19d405081ed9e68e857b457c5a3e) Bump the prod-minor-updates group with 7 updates
### 📊 Changes
**2 files changed** (+78 additions, -78 deletions)
<details>
<summary>View changed files</summary>
📝 `package-lock.json` (+71 -71)
📝 `package.json` (+7 -7)
</details>
### 📄 Description
Bumps the prod-minor-updates group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [@react-email/components](https://github.com/resend/react-email/tree/HEAD/packages/components) | `0.0.41` | `0.1.0` |
| [axios](https://github.com/axios/axios) | `1.9.0` | `1.10.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.38.3` | `0.44.2` |
| [eslint](https://github.com/eslint/eslint) | `9.28.0` | `9.29.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.511.0` | `0.516.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.56.4` | `7.58.1` |
| [zod-validation-error](https://github.com/causaly/zod-validation-error) | `3.4.1` | `3.5.1` |
Updates `@react-email/components` from 0.0.41 to 0.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/resend/react-email/releases"><code>@react-email/components</code>'s releases</a>.</em></p>
<blockquote>
<h2><code>@react-email/components</code><a href="https://github.com/0"><code>@0</code></a>.1.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>18198e1: code-block: fix access to all <code>pre</code> properties</li>
<li>4c4c5ef: button: respect the order in which padding properties are defined</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [18198e1]</li>
<li>Updated dependencies [4c4c5ef]
<ul>
<li><code>@react-email/code-block</code><a href="https://github.com/0"><code>@0</code></a>.1.0</li>
<li><code>@react-email/button</code><a href="https://github.com/0"><code>@0</code></a>.1.0</li>
<li><code>@react-email/tailwind</code><a href="https://github.com/1"><code>@1</code></a>.0.5</li>
</ul>
</li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/resend/react-email/compare/@react-email/components@0.0.42...@react-email/components@0.1.0">https://github.com/resend/react-email/compare/<code>@react-email/components</code><code>@0.0.42...</code><code>@react-email/components</code><code>@0.1.0</code></a></p>
<h2><code>@react-email/components</code><a href="https://github.com/0"><code>@0</code></a>.1.0-canary.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [e22cc83]
<ul>
<li><code>@react-email/render</code><a href="https://github.com/1"><code>@1</code></a>.1.3-canary.0</li>
<li><code>@react-email/body</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/button</code><a href="https://github.com/0"><code>@0</code></a>.1.0-canary.0</li>
<li><code>@react-email/code-block</code><a href="https://github.com/0"><code>@0</code></a>.0.13</li>
<li><code>@react-email/code-inline</code><a href="https://github.com/0"><code>@0</code></a>.0.5</li>
<li><code>@react-email/column</code><a href="https://github.com/0"><code>@0</code></a>.0.13</li>
<li><code>@react-email/container</code><a href="https://github.com/0"><code>@0</code></a>.0.15</li>
<li><code>@react-email/font</code><a href="https://github.com/0"><code>@0</code></a>.0.9</li>
<li><code>@react-email/head</code><a href="https://github.com/0"><code>@0</code></a>.0.12</li>
<li><code>@react-email/heading</code><a href="https://github.com/0"><code>@0</code></a>.0.15</li>
<li><code>@react-email/hr</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/html</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/img</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/link</code><a href="https://github.com/0"><code>@0</code></a>.0.12</li>
<li><code>@react-email/markdown</code><a href="https://github.com/0"><code>@0</code></a>.0.15</li>
<li><code>@react-email/preview</code><a href="https://github.com/0"><code>@0</code></a>.0.13</li>
<li><code>@react-email/row</code><a href="https://github.com/0"><code>@0</code></a>.0.12</li>
<li><code>@react-email/section</code><a href="https://github.com/0"><code>@0</code></a>.0.16</li>
<li><code>@react-email/tailwind</code><a href="https://github.com/1"><code>@1</code></a>.1.0-canary.0</li>
<li><code>@react-email/text</code><a href="https://github.com/0"><code>@0</code></a>.1.4</li>
</ul>
</li>
</ul>
<h2><code>@react-email/components</code><a href="https://github.com/0"><code>@0</code></a>.1.0-canary.3</h2>
<h3>Minor Changes</h3>
<ul>
<li>11c4600: Updated <code>@react-email/button</code><a href="https://github.com/0"><code>@0</code></a>.1.0-canary.0</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [11c4600]
<ul>
<li><code>@react-email/button</code><a href="https://github.com/0"><code>@0</code></a>.1.0-canary.0</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/resend/react-email/blob/canary/packages/components/CHANGELOG.md"><code>@react-email/components</code>'s changelog</a>.</em></p>
<blockquote>
<h2>0.1.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>18198e1: code-block: fix access to all <code>pre</code> properties</li>
<li>4c4c5ef: button: respect the order in which padding properties are defined</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [18198e1]</li>
<li>Updated dependencies [4c4c5ef]
<ul>
<li><code>@react-email/code-block</code><a href="https://github.com/0"><code>@0</code></a>.1.0</li>
<li><code>@react-email/button</code><a href="https://github.com/0"><code>@0</code></a>.1.0</li>
<li><code>@react-email/tailwind</code><a href="https://github.com/1"><code>@1</code></a>.0.5</li>
</ul>
</li>
</ul>
<h2>0.1.0-canary.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [e22cc83]
<ul>
<li><code>@react-email/render</code><a href="https://github.com/1"><code>@1</code></a>.1.3-canary.0</li>
<li><code>@react-email/body</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/button</code><a href="https://github.com/0"><code>@0</code></a>.1.0-canary.0</li>
<li><code>@react-email/code-block</code><a href="https://github.com/0"><code>@0</code></a>.0.13</li>
<li><code>@react-email/code-inline</code><a href="https://github.com/0"><code>@0</code></a>.0.5</li>
<li><code>@react-email/column</code><a href="https://github.com/0"><code>@0</code></a>.0.13</li>
<li><code>@react-email/container</code><a href="https://github.com/0"><code>@0</code></a>.0.15</li>
<li><code>@react-email/font</code><a href="https://github.com/0"><code>@0</code></a>.0.9</li>
<li><code>@react-email/head</code><a href="https://github.com/0"><code>@0</code></a>.0.12</li>
<li><code>@react-email/heading</code><a href="https://github.com/0"><code>@0</code></a>.0.15</li>
<li><code>@react-email/hr</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/html</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/img</code><a href="https://github.com/0"><code>@0</code></a>.0.11</li>
<li><code>@react-email/link</code><a href="https://github.com/0"><code>@0</code></a>.0.12</li>
<li><code>@react-email/markdown</code><a href="https://github.com/0"><code>@0</code></a>.0.15</li>
<li><code>@react-email/preview</code><a href="https://github.com/0"><code>@0</code></a>.0.13</li>
<li><code>@react-email/row</code><a href="https://github.com/0"><code>@0</code></a>.0.12</li>
<li><code>@react-email/section</code><a href="https://github.com/0"><code>@0</code></a>.0.16</li>
<li><code>@react-email/tailwind</code><a href="https://github.com/1"><code>@1</code></a>.1.0-canary.0</li>
<li><code>@react-email/text</code><a href="https://github.com/0"><code>@0</code></a>.1.4</li>
</ul>
</li>
</ul>
<h2>0.1.0-canary.3</h2>
<h3>Minor Changes</h3>
<ul>
<li>11c4600: Updated <code>@react-email/button</code><a href="https://github.com/0"><code>@0</code></a>.1.0-canary.0</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [11c4600]</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/resend/react-email/commit/a4a751ca6248f5fa45123dfa34be7b3d681e32de"><code>a4a751c</code></a> chore(root): Version packages (<a href="https://github.com/resend/react-email/tree/HEAD/packages/components/issues/2301">#2301</a>)</li>
<li><a href="https://github.com/resend/react-email/commit/af8ef1380b4a664a9a47b48c14c9be8492f35942"><code>af8ef13</code></a> chore(root): Version packages (<a href="https://github.com/resend/react-email/tree/HEAD/packages/components/issues/2288">#2288</a>)</li>
<li>See full diff in <a href="https://github.com/resend/react-email/commits/@react-email/components@0.1.0/packages/components">compare view</a></li>
</ul>
</details>
<br />
Updates `axios` from 1.9.0 to 1.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>Release v1.10.0</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>adapter:</strong> pass fetchOptions to fetch function (<a href="https://redirect.github.com/axios/axios/issues/6883">#6883</a>) (<a href="https://github.com/axios/axios/commit/0f50af8e076b7fb403844789bd5e812dedcaf4ed">0f50af8</a>)</li>
<li><strong>form-data:</strong> convert boolean values to strings in FormData serialization (<a href="https://redirect.github.com/axios/axios/issues/6917">#6917</a>) (<a href="https://github.com/axios/axios/commit/5064b108de336ff34862650709761b8a96d26be0">5064b10</a>)</li>
<li><strong>package:</strong> add module entry point for React Native; (<a href="https://redirect.github.com/axios/axios/issues/6933">#6933</a>) (<a href="https://github.com/axios/axios/commit/3d343b86dc4fd0eea0987059c5af04327c7ae304">3d343b8</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>types:</strong> improved fetchOptions interface (<a href="https://redirect.github.com/axios/axios/issues/6867">#6867</a>) (<a href="https://github.com/axios/axios/commit/63f1fce233009f5db1abf2586c145825ac98c3d7">63f1fce</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+30/-19 ([#6933](https://github.com/axios/axios/issues/6933) [#6920](https://github.com/axios/axios/issues/6920) [#6893](https://github.com/axios/axios/issues/6893) [#6892](https://github.com/axios/axios/issues/6892) )">Dmitriy Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/noritaka1166" title="+2/-6 ([#6922](https://github.com/axios/axios/issues/6922) [#6923](https://github.com/axios/axios/issues/6923) )">Noritaka Kobayashi</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/dimitry-lzs" title="+4/-0 ([#6917](https://github.com/axios/axios/issues/6917) )">Dimitrios Lazanas</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/AdrianKnapp" title="+2/-2 ([#6867](https://github.com/axios/axios/issues/6867) )">Adrian Knapp</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/howiezhao" title="+3/-1 ([#6872](https://github.com/axios/axios/issues/6872) )">Howie Zhao</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/warpdev" title="+1/-1 ([#6883](https://github.com/axios/axios/issues/6883) )">Uhyeon Park</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/stscoundrel" title="+1/-1 ([#6913](https://github.com/axios/axios/issues/6913) )">Sampo Silvennoinen</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p>
<blockquote>
<h1><a href="https://github.com/axios/axios/compare/v1.9.0...v1.10.0">1.10.0</a> (2025-06-14)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>adapter:</strong> pass fetchOptions to fetch function (<a href="https://redirect.github.com/axios/axios/issues/6883">#6883</a>) (<a href="https://github.com/axios/axios/commit/0f50af8e076b7fb403844789bd5e812dedcaf4ed">0f50af8</a>)</li>
<li><strong>form-data:</strong> convert boolean values to strings in FormData serialization (<a href="https://redirect.github.com/axios/axios/issues/6917">#6917</a>) (<a href="https://github.com/axios/axios/commit/5064b108de336ff34862650709761b8a96d26be0">5064b10</a>)</li>
<li><strong>package:</strong> add module entry point for React Native; (<a href="https://redirect.github.com/axios/axios/issues/6933">#6933</a>) (<a href="https://github.com/axios/axios/commit/3d343b86dc4fd0eea0987059c5af04327c7ae304">3d343b8</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>types:</strong> improved fetchOptions interface (<a href="https://redirect.github.com/axios/axios/issues/6867">#6867</a>) (<a href="https://github.com/axios/axios/commit/63f1fce233009f5db1abf2586c145825ac98c3d7">63f1fce</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+30/-19 ([#6933](https://github.com/axios/axios/issues/6933) [#6920](https://github.com/axios/axios/issues/6920) [#6893](https://github.com/axios/axios/issues/6893) [#6892](https://github.com/axios/axios/issues/6892) )">Dmitriy Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/noritaka1166" title="+2/-6 ([#6922](https://github.com/axios/axios/issues/6922) [#6923](https://github.com/axios/axios/issues/6923) )">Noritaka Kobayashi</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/dimitry-lzs" title="+4/-0 ([#6917](https://github.com/axios/axios/issues/6917) )">Dimitrios Lazanas</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/AdrianKnapp" title="+2/-2 ([#6867](https://github.com/axios/axios/issues/6867) )">Adrian Knapp</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/howiezhao" title="+3/-1 ([#6872](https://github.com/axios/axios/issues/6872) )">Howie Zhao</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/warpdev" title="+1/-1 ([#6883](https://github.com/axios/axios/issues/6883) )">Uhyeon Park</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/stscoundrel" title="+1/-1 ([#6913](https://github.com/axios/axios/issues/6913) )">Sampo Silvennoinen</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/73a836dae75f06055c24561d83cf4ca1c43e2854"><code>73a836d</code></a> chore(release): v1.10.0 (<a href="https://redirect.github.com/axios/axios/issues/6943">#6943</a>)</li>
<li><a href="https://github.com/axios/axios/commit/3d343b86dc4fd0eea0987059c5af04327c7ae304"><code>3d343b8</code></a> fix(package): add module entry point for React Native; (<a href="https://redirect.github.com/axios/axios/issues/6933">#6933</a>)</li>
<li><a href="https://github.com/axios/axios/commit/0f50af8e076b7fb403844789bd5e812dedcaf4ed"><code>0f50af8</code></a> fix(adapter): pass fetchOptions to fetch function (<a href="https://redirect.github.com/axios/axios/issues/6883">#6883</a>)</li>
<li><a href="https://github.com/axios/axios/commit/ee7799e13c0783c0fdfa656613bb1af6f5e53ccd"><code>ee7799e</code></a> refactor: remove unused import in test (<a href="https://redirect.github.com/axios/axios/issues/6922">#6922</a>)</li>
<li><a href="https://github.com/axios/axios/commit/eb0a2db04beda089e6bdcb2820f193ed2faecbc3"><code>eb0a2db</code></a> chore: fix typos in test (<a href="https://redirect.github.com/axios/axios/issues/6923">#6923</a>)</li>
<li><a href="https://github.com/axios/axios/commit/7d551393c384e58058e04ae954c4cfd929afcd64"><code>7d55139</code></a> docs(readme): improve error descriptions; (<a href="https://redirect.github.com/axios/axios/issues/6920">#6920</a>)</li>
<li><a href="https://github.com/axios/axios/commit/f4fc6b8564ab794e67b4d1147167f2ecfc3557a3"><code>f4fc6b8</code></a> chore(sponsor): update sponsor block (<a href="https://redirect.github.com/axios/axios/issues/6921">#6921</a>)</li>
<li><a href="https://github.com/axios/axios/commit/5064b108de336ff34862650709761b8a96d26be0"><code>5064b10</code></a> fix(form-data): convert boolean values to strings in FormData serialization (...</li>
<li><a href="https://github.com/axios/axios/commit/c7e0fea78716e86694d5023f8f17d174bf064e8a"><code>c7e0fea</code></a> CI: add Node 24 (<a href="https://redirect.github.com/axios/axios/issues/6913">#6913</a>)</li>
<li><a href="https://github.com/axios/axios/commit/7ba895c8874f3fdc4e9da992b2b9e34fe5a25b55"><code>7ba895c</code></a> chore(sponsor): update sponsor block (<a href="https://redirect.github.com/axios/axios/issues/6907">#6907</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/axios/axios/compare/v1.9.0...v1.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 "drizzle-orm/cache/upstash";
import { drizzle } from "drizzle-orm/...";
<p>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 }
})
});
</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 "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>
</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 `eslint` from 9.28.0 to 9.29.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/eslint/eslint/releases">eslint's releases</a>.</em></p>
<blockquote>
<h2>v9.29.0</h2>
<h2>Features</h2>
<ul>
<li><a href="https://github.com/eslint/eslint/commit/f686fcb51e47cf53b891ae595684afe8a0ef584d"><code>f686fcb</code></a> feat: add <code>ecmaVersion: 2026</code>, parsing <code>using</code> and <code>await using</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19832">#19832</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/19cdd226bb5957f8f7e8cb4e92d38aafe47f8ff4"><code>19cdd22</code></a> feat: prune suppressions for non-existent files (<a href="https://redirect.github.com/eslint/eslint/issues/19825">#19825</a>) (TKDev7)</li>
<li><a href="https://github.com/eslint/eslint/commit/b3d720f82f08022a33b10f0437111e7d270b8e3c"><code>b3d720f</code></a> feat: add ES2025 globals (<a href="https://redirect.github.com/eslint/eslint/issues/19835">#19835</a>) (fisker Cheung)</li>
<li><a href="https://github.com/eslint/eslint/commit/677a2837a17320f54a8869682af128a2a7d77579"><code>677a283</code></a> feat: add auto-accessor fields support to class-methods-use-this (<a href="https://redirect.github.com/eslint/eslint/issues/19789">#19789</a>) (sethamus)</li>
<li><a href="https://github.com/eslint/eslint/commit/dbba0589f5509223658b73de6eb721f659bcec47"><code>dbba058</code></a> feat: allow global type declaration in <code>no-var</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19714">#19714</a>) (Remco Haszing)</li>
<li><a href="https://github.com/eslint/eslint/commit/342bd29e1a10a4b521ed0dbb6d889dcfc137e863"><code>342bd29</code></a> feat: ignore type annotations in no-restricted-globals (<a href="https://redirect.github.com/eslint/eslint/issues/19781">#19781</a>) (sethamus)</li>
<li><a href="https://github.com/eslint/eslint/commit/786bcd13652b90c5bd0c7201610b856ad1b87542"><code>786bcd1</code></a> feat: add allowProperties option to no-restricted-properties (<a href="https://redirect.github.com/eslint/eslint/issues/19772">#19772</a>) (sethamus)</li>
<li><a href="https://github.com/eslint/eslint/commit/05b66d05bd68214f2fa1ab53fb2734c9d9e5348a"><code>05b66d0</code></a> feat: add <code>sourceCode.isGlobalReference(node)</code> method (<a href="https://redirect.github.com/eslint/eslint/issues/19695">#19695</a>) (Nitin Kumar)</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><a href="https://github.com/eslint/eslint/commit/85c082c54bd42ad818f5938b8fb1fb2aa0a1912f"><code>85c082c</code></a> fix: explicit matching behavior with negated patterns and arrays (<a href="https://redirect.github.com/eslint/eslint/issues/19845">#19845</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/9bda4a9bf18c9fef91cdd93921a0935ffcf9a9fc"><code>9bda4a9</code></a> fix: fix <code>LintOptions.filterCodeBlock</code> types (<a href="https://redirect.github.com/eslint/eslint/issues/19837">#19837</a>) (ntnyq)</li>
<li><a href="https://github.com/eslint/eslint/commit/7ab77a2c7605126daaa7e7f7ab75b5c252677d12"><code>7ab77a2</code></a> fix: correct breaking deprecation of FlatConfig type (<a href="https://redirect.github.com/eslint/eslint/issues/19826">#19826</a>) (Logicer)</li>
<li><a href="https://github.com/eslint/eslint/commit/1ba33181ab300588a803434884c054ed003f0bbd"><code>1ba3318</code></a> fix: add <code>language</code> and <code>dialects</code> to <code>no-use-before-define</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19808">#19808</a>) (Francesco Trotta)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a href="https://github.com/eslint/eslint/commit/00e3e6ad1357df7d46be51d3f305efecb90244a7"><code>00e3e6a</code></a> docs: add support for custom name parameter to <code>includeIgnoreFile</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19795">#19795</a>) (루밀LuMir)</li>
<li><a href="https://github.com/eslint/eslint/commit/3aed0756ed3669ac27fc243c81fd82e3d0e6973b"><code>3aed075</code></a> docs: Update README (GitHub Actions Bot)</li>
<li><a href="https://github.com/eslint/eslint/commit/a2f888d679e2a44964da596a4158911819e1d31d"><code>a2f888d</code></a> docs: enhance documentation with links and fix typos (<a href="https://redirect.github.com/eslint/eslint/issues/19761">#19761</a>) (루밀LuMir)</li>
<li><a href="https://github.com/eslint/eslint/commit/53c3235ba1c90a85a44f0abd18998ccc4e0445bf"><code>53c3235</code></a> docs: update to clarify prompt usage (<a href="https://redirect.github.com/eslint/eslint/issues/19748">#19748</a>) (Jennifer Davis)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a href="https://github.com/eslint/eslint/commit/5c114c962f29d0b33e6439e9ab0985014af06b9f"><code>5c114c9</code></a> chore: upgrade <code>@eslint/js</code><a href="https://github.com/9"><code>@9</code></a>.29.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19851">#19851</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/acf2201a067d062e007b1b7b164b8e96fa1af50f"><code>acf2201</code></a> chore: package.json update for <code>@eslint/js</code> release (Jenkins)</li>
<li><a href="https://github.com/eslint/eslint/commit/a806994263e54e4bc1481736b1c0626c8b770808"><code>a806994</code></a> refactor: Remove eslintrc from flat config functionality (<a href="https://redirect.github.com/eslint/eslint/issues/19833">#19833</a>) (Nicholas C. Zakas)</li>
<li><a href="https://github.com/eslint/eslint/commit/152ed51329d82c6e7375f41a105e01b31750e17f"><code>152ed51</code></a> test: switch to flat config mode in code path analysis tests (<a href="https://redirect.github.com/eslint/eslint/issues/19824">#19824</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/b647239272931e0a947500b2f554fc8ccdf8adfd"><code>b647239</code></a> chore: Update first-party dependencies faster with Renovate (<a href="https://redirect.github.com/eslint/eslint/issues/19822">#19822</a>) (Nicholas C. Zakas)</li>
<li><a href="https://github.com/eslint/eslint/commit/7abe42e2de931289e19e34e390d16936cf6faf64"><code>7abe42e</code></a> refactor: SafeEmitter -> SourceCodeVisitor (<a href="https://redirect.github.com/eslint/eslint/issues/19708">#19708</a>) (Nicholas C. Zakas)</li>
<li><a href="https://github.com/eslint/eslint/commit/e39289596757702b6c8d747d5ab9c1a7820c108f"><code>e392895</code></a> perf: improve time complexity of <code>getLocFromIndex</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19782">#19782</a>) (루밀LuMir)</li>
<li><a href="https://github.com/eslint/eslint/commit/0ed289c5ceed1c10b599b22c8b9374a5a3a144dd"><code>0ed289c</code></a> chore: remove accidentally committed file (<a href="https://redirect.github.com/eslint/eslint/issues/19807">#19807</a>) (Francesco Trotta)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/eslint/eslint/blob/main/CHANGELOG.md">eslint's changelog</a>.</em></p>
<blockquote>
<p>v9.29.0 - June 13, 2025</p>
<ul>
<li><a href="https://github.com/eslint/eslint/commit/5c114c962f29d0b33e6439e9ab0985014af06b9f"><code>5c114c9</code></a> chore: upgrade <code>@eslint/js</code><a href="https://github.com/9"><code>@9</code></a>.29.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19851">#19851</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/acf2201a067d062e007b1b7b164b8e96fa1af50f"><code>acf2201</code></a> chore: package.json update for <code>@eslint/js</code> release (Jenkins)</li>
<li><a href="https://github.com/eslint/eslint/commit/f686fcb51e47cf53b891ae595684afe8a0ef584d"><code>f686fcb</code></a> feat: add <code>ecmaVersion: 2026</code>, parsing <code>using</code> and <code>await using</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19832">#19832</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/85c082c54bd42ad818f5938b8fb1fb2aa0a1912f"><code>85c082c</code></a> fix: explicit matching behavior with negated patterns and arrays (<a href="https://redirect.github.com/eslint/eslint/issues/19845">#19845</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/00e3e6ad1357df7d46be51d3f305efecb90244a7"><code>00e3e6a</code></a> docs: add support for custom name parameter to <code>includeIgnoreFile</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19795">#19795</a>) (루밀LuMir)</li>
<li><a href="https://github.com/eslint/eslint/commit/9bda4a9bf18c9fef91cdd93921a0935ffcf9a9fc"><code>9bda4a9</code></a> fix: fix <code>LintOptions.filterCodeBlock</code> types (<a href="https://redirect.github.com/eslint/eslint/issues/19837">#19837</a>) (ntnyq)</li>
<li><a href="https://github.com/eslint/eslint/commit/a806994263e54e4bc1481736b1c0626c8b770808"><code>a806994</code></a> refactor: Remove eslintrc from flat config functionality (<a href="https://redirect.github.com/eslint/eslint/issues/19833">#19833</a>) (Nicholas C. Zakas)</li>
<li><a href="https://github.com/eslint/eslint/commit/19cdd226bb5957f8f7e8cb4e92d38aafe47f8ff4"><code>19cdd22</code></a> feat: prune suppressions for non-existent files (<a href="https://redirect.github.com/eslint/eslint/issues/19825">#19825</a>) (TKDev7)</li>
<li><a href="https://github.com/eslint/eslint/commit/b3d720f82f08022a33b10f0437111e7d270b8e3c"><code>b3d720f</code></a> feat: add ES2025 globals (<a href="https://redirect.github.com/eslint/eslint/issues/19835">#19835</a>) (fisker Cheung)</li>
<li><a href="https://github.com/eslint/eslint/commit/677a2837a17320f54a8869682af128a2a7d77579"><code>677a283</code></a> feat: add auto-accessor fields support to class-methods-use-this (<a href="https://redirect.github.com/eslint/eslint/issues/19789">#19789</a>) (sethamus)</li>
<li><a href="https://github.com/eslint/eslint/commit/3aed0756ed3669ac27fc243c81fd82e3d0e6973b"><code>3aed075</code></a> docs: Update README (GitHub Actions Bot)</li>
<li><a href="https://github.com/eslint/eslint/commit/7ab77a2c7605126daaa7e7f7ab75b5c252677d12"><code>7ab77a2</code></a> fix: correct breaking deprecation of FlatConfig type (<a href="https://redirect.github.com/eslint/eslint/issues/19826">#19826</a>) (Logicer)</li>
<li><a href="https://github.com/eslint/eslint/commit/a2f888d679e2a44964da596a4158911819e1d31d"><code>a2f888d</code></a> docs: enhance documentation with links and fix typos (<a href="https://redirect.github.com/eslint/eslint/issues/19761">#19761</a>) (루밀LuMir)</li>
<li><a href="https://github.com/eslint/eslint/commit/dbba0589f5509223658b73de6eb721f659bcec47"><code>dbba058</code></a> feat: allow global type declaration in <code>no-var</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19714">#19714</a>) (Remco Haszing)</li>
<li><a href="https://github.com/eslint/eslint/commit/152ed51329d82c6e7375f41a105e01b31750e17f"><code>152ed51</code></a> test: switch to flat config mode in code path analysis tests (<a href="https://redirect.github.com/eslint/eslint/issues/19824">#19824</a>) (Milos Djermanovic)</li>
<li><a href="https://github.com/eslint/eslint/commit/b647239272931e0a947500b2f554fc8ccdf8adfd"><code>b647239</code></a> chore: Update first-party dependencies faster with Renovate (<a href="https://redirect.github.com/eslint/eslint/issues/19822">#19822</a>) (Nicholas C. Zakas)</li>
<li><a href="https://github.com/eslint/eslint/commit/7abe42e2de931289e19e34e390d16936cf6faf64"><code>7abe42e</code></a> refactor: SafeEmitter -> SourceCodeVisitor (<a href="https://redirect.github.com/eslint/eslint/issues/19708">#19708</a>) (Nicholas C. Zakas)</li>
<li><a href="https://github.com/eslint/eslint/commit/342bd29e1a10a4b521ed0dbb6d889dcfc137e863"><code>342bd29</code></a> feat: ignore type annotations in no-restricted-globals (<a href="https://redirect.github.com/eslint/eslint/issues/19781">#19781</a>) (sethamus)</li>
<li><a href="https://github.com/eslint/eslint/commit/e39289596757702b6c8d747d5ab9c1a7820c108f"><code>e392895</code></a> perf: improve time complexity of <code>getLocFromIndex</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19782">#19782</a>) (루밀LuMir)</li>
<li><a href="https://github.com/eslint/eslint/commit/1ba33181ab300588a803434884c054ed003f0bbd"><code>1ba3318</code></a> fix: add <code>language</code> and <code>dialects</code> to <code>no-use-before-define</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19808">#19808</a>) (Francesco Trotta)</li>
<li><a href="https://github.com/eslint/eslint/commit/786bcd13652b90c5bd0c7201610b856ad1b87542"><code>786bcd1</code></a> feat: add allowProperties option to no-restricted-properties (<a href="https://redirect.github.com/eslint/eslint/issues/19772">#19772</a>) (sethamus)</li>
<li><a href="https://github.com/eslint/eslint/commit/05b66d05bd68214f2fa1ab53fb2734c9d9e5348a"><code>05b66d0</code></a> feat: add <code>sourceCode.isGlobalReference(node)</code> method (<a href="https://redirect.github.com/eslint/eslint/issues/19695">#19695</a>) (Nitin Kumar)</li>
<li><a href="https://github.com/eslint/eslint/commit/53c3235ba1c90a85a44f0abd18998ccc4e0445bf"><code>53c3235</code></a> docs: update to clarify prompt usage (<a href="https://redirect.github.com/eslint/eslint/issues/19748">#19748</a>) (Jennifer Davis)</li>
<li><a href="https://github.com/eslint/eslint/commit/0ed289c5ceed1c10b599b22c8b9374a5a3a144dd"><code>0ed289c</code></a> chore: remove accidentally committed file (<a href="https://redirect.github.com/eslint/eslint/issues/19807">#19807</a>) (Francesco Trotta)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/eslint/eslint/commit/edf232b680390013c68f081a5e41843bcf2dd18f"><code>edf232b</code></a> 9.29.0</li>
<li><a href="https://github.com/eslint/eslint/commit/c2414b647baaa75303ef647e134b2520c10bf6e0"><code>c2414b6</code></a> Build: changelog update for 9.29.0</li>
<li><a href="https://github.com/eslint/eslint/commit/5c114c962f29d0b33e6439e9ab0985014af06b9f"><code>5c114c9</code></a> chore: upgrade <code>@eslint/js</code><a href="https://github.com/9"><code>@9</code></a>.29.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19851">#19851</a>)</li>
<li><a href="https://github.com/eslint/eslint/commit/acf2201a067d062e007b1b7b164b8e96fa1af50f"><code>acf2201</code></a> chore: package.json update for <code>@eslint/js</code> release</li>
<li><a href="https://github.com/eslint/eslint/commit/f686fcb51e47cf53b891ae595684afe8a0ef584d"><code>f686fcb</code></a> feat: add <code>ecmaVersion: 2026</code>, parsing <code>using</code> and <code>await using</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19832">#19832</a>)</li>
<li><a href="https://github.com/eslint/eslint/commit/85c082c54bd42ad818f5938b8fb1fb2aa0a1912f"><code>85c082c</code></a> fix: explicit matching behavior with negated patterns and arrays (<a href="https://redirect.github.com/eslint/eslint/issues/19845">#19845</a>)</li>
<li><a href="https://github.com/eslint/eslint/commit/00e3e6ad1357df7d46be51d3f305efecb90244a7"><code>00e3e6a</code></a> docs: add support for custom name parameter to <code>includeIgnoreFile</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19795">#19795</a>)</li>
<li><a href="https://github.com/eslint/eslint/commit/9bda4a9bf18c9fef91cdd93921a0935ffcf9a9fc"><code>9bda4a9</code></a> fix: fix <code>LintOptions.filterCodeBlock</code> types (<a href="https://redirect.github.com/eslint/eslint/issues/19837">#19837</a>)</li>
<li><a href="https://github.com/eslint/eslint/commit/a806994263e54e4bc1481736b1c0626c8b770808"><code>a806994</code></a> refactor: Remove eslintrc from flat config functionality (<a href="https://redirect.github.com/eslint/eslint/issues/19833">#19833</a>)</li>
<li><a href="https://github.com/eslint/eslint/commit/19cdd226bb5957f8f7e8cb4e92d38aafe47f8ff4"><code>19cdd22</code></a> feat: prune suppressions for non-existent files (<a href="https://redirect.github.com/eslint/eslint/issues/19825">#19825</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.28.0...v9.29.0">compare view</a></li>
</ul>
</details>
<br />
Updates `lucide-react` from 0.511.0 to 0.516.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.516.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(icons): changed <code>stamp</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3310">lucide-icons/lucide#3310</a></li>
<li>fix(icons): changed <code>pocket</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3304">lucide-icons/lucide#3304</a></li>
<li>fix(icons): changed <code>mic</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3301">lucide-icons/lucide#3301</a></li>
<li>fix(icons): changed <code>radio</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3293">lucide-icons/lucide#3293</a></li>
<li>fix: some typos for categories by <a href="https://github.com/npv12"><code>@npv12</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3319">lucide-icons/lucide#3319</a></li>
<li>perf(docs): optimize IconsOverview initial render - 50% faster load times by <a href="https://github.com/epifaniofrancisco"><code>@epifaniofrancisco</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3282">lucide-icons/lucide#3282</a></li>
<li>fix(docs): remove flex-direction CSS causing absolute stroke width toggle positioning issue (<a href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/3308">#3308</a>) by <a href="https://github.com/epifaniofrancisco"><code>@epifaniofrancisco</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3317">lucide-icons/lucide#3317</a></li>
<li>feat(icons): added <code>wifi-cog</code> icon by <a href="https://github.com/luisdlopera"><code>@luisdlopera</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3133">lucide-icons/lucide#3133</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/npv12"><code>@npv12</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3319">lucide-icons/lucide#3319</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.515.0...0.516.0">https://github.com/lucide-icons/lucide/compare/0.515.0...0.516.0</a></p>
<h2>Version 0.515.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(icons): changed <code>house-plus</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3238">lucide-icons/lucide#3238</a></li>
<li>fix(icons): changed <code>radiation</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3303">lucide-icons/lucide#3303</a></li>
<li>feat(icons): added <code>rectangle-circle</code> icon by <a href="https://github.com/zefir-git"><code>@zefir-git</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3245">lucide-icons/lucide#3245</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/zefir-git"><code>@zefir-git</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3245">lucide-icons/lucide#3245</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.514.0...0.515.0">https://github.com/lucide-icons/lucide/compare/0.514.0...0.515.0</a></p>
<h2>Version 0.514.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(icons): changed <code>trophy</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2475">lucide-icons/lucide#2475</a></li>
<li>fix(pull-request-icon-preview): pinned and --forced svgson installati… by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3289">lucide-icons/lucide#3289</a></li>
<li>chore(metadata): added tag to <code>bandage</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3300">lucide-icons/lucide#3300</a></li>
<li>fix(icons): changed <code>settings-2</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2974">lucide-icons/lucide#2974</a></li>
<li>fix(docs): <a href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2984">#2984</a> absoluteStrokeWidth not resetting with Reset button by <a href="https://github.com/epifaniofrancisco"><code>@epifaniofrancisco</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3261">lucide-icons/lucide#3261</a></li>
<li>feat(icons): added book-alert icon by <a href="https://github.com/domasmark"><code>@domasmark</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3249">lucide-icons/lucide#3249</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/domasmark"><code>@domasmark</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3249">lucide-icons/lucide#3249</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.513.0...0.514.0">https://github.com/lucide-icons/lucide/compare/0.513.0...0.514.0</a></p>
<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>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</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.516.0/packages/lucide-react">compare view</a></li>
</ul>
</details>
<br />
Updates `react-hook-form` from 7.56.4 to 7.58.1
<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.58.1</h2>
<p>🔧 check window.crypto undefined (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12893">#12893</a>)</p>
<h2>Version 7.58.0</h2>
<p>⌨️ feat: add FieldArrayPathByValue type (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12481">#12481</a>)
📇 feat <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12813">#12813</a> use stringToPath to prevent error at field name with quotes (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12858">#12858</a>)
🧧 default to crypto.randomUUID in generateId (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12890">#12890</a>)
🐞 close <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12857">#12857</a> incorrect formControl return from useForm (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12878">#12878</a>)
🐞 fix Initial useFieldArray fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12847">#12847</a>)
🥷 chore: improve type import (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12879">#12879</a>)
📇 chore: Added displayName to useFormContext (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/11448">#11448</a>)
✍️ chore: fix typo in assert-esm-exports.mjs (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12860">#12860</a>)</p>
<p>thanks to <a href="https://github.com/mastermatt"><code>@mastermatt</code></a>, <a href="https://github.com/clonemycode"><code>@clonemycode</code></a>, <a href="https://github.com/dusan233"><code>@dusan233</code></a>, <a href="https://github.com/candymask0712"><code>@candymask0712</code></a>, <a href="https://github.com/tran-simon"><code>@tran-simon</code></a> & <a href="https://github.com/adnanalbeda"><code>@adnanalbeda</code></a></p>
<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) => {<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>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/d8bb9b316a64840210b9f0611fdd8c74719f9920"><code>d8bb9b3</code></a> 7.58.1</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/bb64c07d1fd5385467a59e4957f245b2fe231565"><code>bb64c07</code></a> 🔧 check window.crypto undefined (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12893">#12893</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/9e33cfa760c42b707f510fa9b5781bed463cf5e9"><code>9e33cfa</code></a> 7.58.0</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/4502ddb16f429c8b307a9ead6bbc8535b4ab0d46"><code>4502ddb</code></a> 🧧 default to crypto.randomUUID in generateId (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12890">#12890</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/0e3ef8146113976a4d05bd7e96f140b7eb3defc0"><code>0e3ef81</code></a> 📇 chore: Added displayName to useFormContext (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/11448">#11448</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/7ce7cc6da38e9787bcf05e94fbd14dd712d27a85"><code>7ce7cc6</code></a> 🥷 chore: improve type import (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12879">#12879</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/c47545bd2f877c31dc4cb1c86fdf021800c87377"><code>c47545b</code></a> ⌨️ feat: add FieldArrayPathByValue type (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12481">#12481</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/e495306815d6fbff821283a3ec1e261e87f985a4"><code>e495306</code></a> 📇 feat <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12813">#12813</a> use stringToPath to prevent error at field name with quotes (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/1">#1</a>...</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/f513037fd0684c195dbc517038140c422c6a14ce"><code>f513037</code></a> 🐞 close <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12857">#12857</a> incorrect formControl return from useForm (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12878">#12878</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/ecc4768cf04c6a5e487df5067ab86de33345b7d6"><code>ecc4768</code></a> 🐞 fix Initial useFieldArray fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12847">#12847</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.56.4...v7.58.1">compare view</a></li>
</ul>
</details>
<br />
Updates `zod-validation-error` from 3.4.1 to 3.5.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/causaly/zod-validation-error/releases">zod-validation-error's releases</a>.</em></p>
<blockquote>
<h2>v3.5.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>e7713d5: Add compatibility with older node versions and module-resolution strategies + improve docs</li>
</ul>
<h2>v3.5.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>bf72012: Add support for zod v4</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/causaly/zod-validation-error/blob/main/CHANGELOG.md">zod-validation-error's changelog</a>.</em></p>
<blockquote>
<h2>3.5.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>e7713d5: Add compatibility with older node versions and module-resolution strategies + improve docs</li>
</ul>
<h2>3.5.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>bf72012: Add support for zod v4</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/causaly/zod-validation-error/commit/bfcdba7d3215de62eb5e6e589878dee9163fbd76"><code>bfcdba7</code></a> chore: version packages (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/520">#520</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/e7713d5682a5c0a16bf4e93dabc0f3de49e353a7"><code>e7713d5</code></a> chore: add changeset (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/519">#519</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/7ba16c61e27f8557a410d5c7dc6a890b0104205c"><code>7ba16c6</code></a> feat: promote v4 docs as the main docs (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/515">#515</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/663e49bed0ac4c6ea5fd72b1a6009d5825471388"><code>663e49b</code></a> feat: improve docs for zod v4 (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/514">#514</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/c12c480a1b6258f92da74b5242bce6dab7217c96"><code>c12c480</code></a> chore: add Nikos Tsompanides as a contributor (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/513">#513</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/2652daa75d56c5b83bdc500c0ece4d215259982c"><code>2652daa</code></a> feat: compatibility with older node versions and module-resolution strategies...</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/c03168d563a9c7a06fbefd8f62d8224b91fdbd19"><code>c03168d</code></a> chore: bump zod from 3.25.62 to 3.25.63 (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/511">#511</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/737ae88737520c4a633ea4f742a36edff2985db3"><code>737ae88</code></a> chore: version packages (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/510">#510</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/191bd4721859a282ea63fb0bc883e34b35675046"><code>191bd47</code></a> chore: bump zod from 3.25.50 to 3.25.62 (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/509">#509</a>)</li>
<li><a href="https://github.com/causaly/zod-validation-error/commit/bf72012b9e70380a476f8ef2b8a3b9668f2f6c49"><code>bf72012</code></a> feat: add support for zod v4, incurring a significant API refactor (<a href="https://redirect.github.com/causaly/zod-validation-error/issues/501">#501</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/causaly/zod-validation-error/compare/v3.4.1...v3.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>
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/fosrl/pangolin/pull/930
Author: @dependabot[bot]
Created: 6/18/2025
Status: ✅ Merged
Merged: 6/19/2025
Merged by: @oschwartz10612
Base:
main← Head:dependabot/npm_and_yarn/prod-minor-updates-b2e6812000📝 Commits (1)
c86418dBump the prod-minor-updates group with 7 updates📊 Changes
2 files changed (+78 additions, -78 deletions)
View changed files
📝
package-lock.json(+71 -71)📝
package.json(+7 -7)📄 Description
Bumps the prod-minor-updates group with 7 updates:
0.0.410.1.01.9.01.10.00.38.30.44.29.28.09.29.00.511.00.516.07.56.47.58.13.4.13.5.1Updates
@react-email/componentsfrom 0.0.41 to 0.1.0Release notes
Sourced from
@react-email/components's releases.... (truncated)
Changelog
Sourced from
@react-email/components's changelog.... (truncated)
Commits
a4a751cchore(root): Version packages (#2301)af8ef13chore(root): Version packages (#2288)Updates
axiosfrom 1.9.0 to 1.10.0Release notes
Sourced from axios's releases.
Changelog
Sourced from axios's changelog.
Commits
73a836dchore(release): v1.10.0 (#6943)3d343b8fix(package): add module entry point for React Native; (#6933)0f50af8fix(adapter): pass fetchOptions to fetch function (#6883)ee7799erefactor: remove unused import in test (#6922)eb0a2dbchore: fix typos in test (#6923)7d55139docs(readme): improve error descriptions; (#6920)f4fc6b8chore(sponsor): update sponsor block (#6921)5064b10fix(form-data): convert boolean values to strings in FormData serialization (...c7e0feaCI: add Node 24 (#6913)7ba895cchore(sponsor): update sponsor block (#6907)Updates
drizzle-ormfrom 0.38.3 to 0.44.2Release notes
Sourced from drizzle-orm's releases.
... (truncated)
Commits
50a8b16Fixed type issues with joins with certain variations oftsconfig(fixes #45...9865e63Fix better-sqlite versiona950db5Patch fix DO bugs with a new cache featurefa9aa1eCache (#4447)3f4a6aafix(drizzle-zod): add generated column type to zod ts schema type (#4554)8e9e8edAdd release notescc2ca82Add fix for latest zod versione338ccbAdd validator packages release notes0b8920bSupport Zod v4 in drizzle-zod (#4478)08944daAdd more dependabot changesUpdates
eslintfrom 9.28.0 to 9.29.0Release notes
Sourced from eslint's releases.
Changelog
Sourced from eslint's changelog.
Commits
edf232b9.29.0c2414b6Build: changelog update for 9.29.05c114c9chore: upgrade@eslint/js@9.29.0 (#19851)acf2201chore: package.json update for@eslint/jsreleasef686fcbfeat: addecmaVersion: 2026, parsingusingandawait using(#19832)85c082cfix: explicit matching behavior with negated patterns and arrays (#19845)00e3e6adocs: add support for custom name parameter toincludeIgnoreFile(#19795)9bda4a9fix: fixLintOptions.filterCodeBlocktypes (#19837)a806994refactor: Remove eslintrc from flat config functionality (#19833)19cdd22feat: prune suppressions for non-existent files (#19825)Updates
lucide-reactfrom 0.511.0 to 0.516.0Release notes
Sourced from lucide-react's releases.
... (truncated)
Commits
19fa01bbuild(deps-dev): bump vite from 6.3.2 to 6.3.4 (#3181)Updates
react-hook-formfrom 7.56.4 to 7.58.1Release notes
Sourced from react-hook-form's releases.
... (truncated)
Commits
d8bb9b37.58.1bb64c07🔧 check window.crypto undefined (#12893)9e33cfa7.58.04502ddb🧧 default to crypto.randomUUID in generateId (#12890)0e3ef81📇 chore: Added displayName to useFormContext (#11448)7ce7cc6🥷 chore: improve type import (#12879)c47545b⌨️ feat: add FieldArrayPathByValue type (#12481)e495306📇 feat #12813 use stringToPath to prevent error at field name with quotes (#1...f513037🐞 close #12857 incorrect formControl return from useForm (#12878)ecc4768🐞 fix Initial useFieldArray fields (#12847)Updates
zod-validation-errorfrom 3.4.1 to 3.5.1Release notes
Sourced from zod-validation-error's releases.
Changelog
Sourced from zod-validation-error's changelog.
Commits
bfcdba7chore: version packages (#520)e7713d5chore: add changeset (#519)7ba16c6feat: promote v4 docs as the main docs (#515)663e49bfeat: improve docs for zod v4 (#514)c12c480chore: add Nikos Tsompanides as a contributor (#513)2652daafeat: compatibility with older node versions and module-resolution strategies...c03168dchore: bump zod from 3.25.62 to 3.25.63 (#511)737ae88chore: version packages (#510)191bd47chore: bump zod from 3.25.50 to 3.25.62 (#509)bf72012feat: add support for zod v4, incurring a significant API refactor (#501)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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.