An open index of dependabot pull requests across open source projects.

deps: bump the dependencies-minor group across 1 directory with 13 updates

Open
Number: #9
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 2
Created: June 04, 2025 at 10:15 PM UTC
(4 months ago)
Updated: June 04, 2025 at 10:15 PM UTC
(4 months ago)
Labels:
dependencies javascript
Description:

Bumps the dependencies-minor group with 12 updates in the / directory:

Package From To
@radix-ui/react-label 2.1.6 2.1.7
lucide-react 0.511.0 0.513.0
next 15.3.2 15.3.3
react-hook-form 7.56.3 7.57.0
zod 3.24.4 3.25.51
@types/node 22.15.18 22.15.29
@types/react 19.1.4 19.1.6
@types/react-dom 19.1.5 19.1.6
@typescript-eslint/parser 8.32.1 8.33.1
eslint-config-next 15.3.2 15.3.3
postcss 8.5.3 8.5.4
sass 1.89.0 1.89.1

Updates @radix-ui/react-label from 2.1.6 to 2.1.7

Commits

Updates @radix-ui/react-slot from 1.2.2 to 1.2.3

Commits

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 next from 15.3.2 to 15.3.3

Release notes

Sourced from next's releases.

v15.3.3

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Reinstate vary (#79939)
  • fix(next-swc): Fix interestingness detection for React Compiler (#79558)
  • fix(next-swc): Fix react compiler usefulness detector (#79480)
  • fix(dev-overlay): Better handle edge-case file paths in launchEditor (#79526)
  • Client router should discard stale prefetch entries for static pages (#79362)

Credits

Huge thanks to @​gaojude, @​kdy1, @​bgw, and @​unstubbable for helping!

Commits
  • 3ab8db7 v15.3.3
  • 18c8113 [backport] Reinstate vary (#79939)
  • e18212f re-enable vary header deploy test (#79753)
  • ec202ec Revert "[next-server] skip setting vary header for basic routes" (#79426)
  • e2f264f fix(next-swc): Fix interestingness detection for React Compiler (15.3) (#79558)
  • 562fac7 fix(next-swc): Fix react compiler usefulness detector (15.3) (#79480)
  • 06097fd fix(dev-overlay): Better handle edge-case file paths in launchEditor (#79526)
  • bda731f Client router should discard stale prefetch entries for static pages (#79362)
  • See full diff in compare view

Updates react-hook-form from 7.56.3 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 : '';
},
});

... (truncated)

Commits
  • e49d8a8 7.57.0
  • 3fd740f 🐞 fix: add type info for callback args in subscribe (#12859)
  • 90cdaee 🐞 fix: add proper types to form.subscribe (#12850)
  • cff8819 🔄 close #12835 revert original fix on errors empty object check (#12846)
  • d666a76 👁️ feat: focus form field for errors supplied by errors prop (#12805)
  • 490f04f 🐞 close #12707 useController focus function runtime issue (#12843)
  • c22c028 ⌨️ rename to UseFormResetFieldOptions for type consistency
  • 5345f0d ⌨️ feat: add and export options config for resetField api (#12819)
  • d7aa973 🫚 feat: root errors count in schema error lookup (#12839)
  • 8f874e1 🌎 remove www. for the doc
  • Additional commits viewable in compare view

Updates zod from 3.24.4 to 3.25.51

Release notes

Sourced from zod's releases.

v3.25.51

Commits:

  • d7ffdfa73a800ea810218431d1dd751f15d0fba4 Remove _
  • 50ef910565a14c127942442b7e09596afcfdca5f Add output type generic test
  • eb14475c3ca14562c4bf11c2111a1fbfa3d114b6 Improve docs
  • 32104c2801f01edac3fb3168017b09b6c43f3cef Improve extend docs
  • f67332f9fbcae13ce59dbb1eeb67f9c4c60bdcd9 Docs
  • 8230237b3453b02bf34b81d0bc11b40d9868cd09 Standardize string format continuability
  • c58bd9b0125881caee03a408eae88ec1dc5eb18b 3.25.51

v3.25.50

Commits:

  • 5fdece94bf1ada76e5742f2755d45d3711a8e962 fix(v4): reflect inclusive boundaries in minLength/maxLength issue objects (#4591)
  • 4897269451f0b0afeb2313389d20ffa1f22ce8b1 Restructure: mitigate excessively deep errors (#4599)
  • a88a080f0b9782a87b5732cb9cd96fc2b1a71794 Improve prototype tests
  • c7833356a3211d32ae322739a7a6f66dce52ed5f 3.25.50

v3.25.49

Commits:

  • 74458e9ccec6d0d4a7af02f66e463a07ee5cad91 docs: updated name and link of regle library (#4601)
  • 5cc04f3685903c0e66a65b91f758115cfcead83d docs: fix some typos on the "Defining schemas" page (#4595)
  • 9a81173ba28d70d856d8db2e5fe6daedc9241fa4 Add includes position regex (#4602)
  • fa7bee41ae5330aeb90b70a2b5aab228b2faa8ae fix(docs): remove z.literal(Symbol) (#4587)
  • df73cb08bc3362cd298be0873cec7c42310a89a1 Make z.custom issues fatal
  • 78e0eae30181cd75c987bcee98cceaf51dc62979 fix: add type to literal enum (#4590)
  • a73a3b3009735c6f82531393e65a82cad6b62e05 3.25.49

v3.25.48

Commits:

  • a1276395e53df7a77219ac1a59f20e3f9c710f67 rm console.dir from $ZodDiscriminatedUnion (#4593)
  • 343bd590278c68f86208395ab5da6c213ccc88f3 3.25.48

v3.25.47

Commits:

  • 98cd8b33e0e1b85dfe26227a05e77bbf5fc3f014 Fix more excessively deep
  • 7bfc8af0f805453ac06d0d11bce7e76b01fd3240 3.25.47

v3.25.46

Commits:

  • 52808166ec4ee89ed04d0da6b86c42134f6b07e4 Improve disc union error messaging
  • 4a3baf76f30048a89719018f4c5134f252debf94 Fix lint
  • aff9561126e591cd9e05beda2d1c69d302bce79e Fix branded types in record
  • 50e9afb5606018ecacd6c64aee90f4f8006d851b 3.25.46

... (truncated)

Commits

Updates @types/node from 22.15.18 to 22.15.29

Commits

Updates @types/react from 19.1.4 to 19.1.6

Commits

Updates @types/react-dom from 19.1.5 to 19.1.6

Commits

Updates @typescript-eslint/parser from 8.32.1 to 8.33.1

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.33.1

8.33.1 (2025-06-02)

🩹 Fixes

  • exclude docs/ directory from eslint-plugin package (#11251)
  • project-service: add missing typescript peer dependency (#11265)

❤️ Thank You

  • JounQin
  • roottool

You can read about our versioning strategy and releases on our website.

v8.33.0

8.33.0 (2025-05-26)

🚀 Features

  • create standalone project-service, tsconfig-utils packages (#11182)

❤️ Thank You

  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.33.1 (2025-06-02)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.33.0 (2025-05-26)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates eslint-config-next from 15.3.2 to 15.3.3

Release notes

Sourced from eslint-config-next's releases.

v15.3.3

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Reinstate vary (#79939)
  • fix(next-swc): Fix interestingness detection for React Compiler (#79558)
  • fix(next-swc): Fix react compiler usefulness detector (#79480)
  • fix(dev-overlay): Better handle edge-case file paths in launchEditor (#79526)
  • Client router should discard stale prefetch entries for static pages (#79362)

Credits

Huge thanks to @​gaojude, @​kdy1, @​bgw, and @​unstubbable for helping!

Commits

Updates postcss from 8.5.3 to 8.5.4

Release notes

Sourced from postcss's releases.

8.5.4

Changelog

Sourced from postcss's changelog.

8.5.4

Commits

Updates sass from 1.89.0 to 1.89.1

Release notes

Sourced from sass's releases.

Dart Sass 1.89.1

To install Sass 1.89.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.89.1

  • No user-visible changes.
Commits
  • 394fbe5 Merge pull request #2583 from sass/list-parens
  • 3c9a501 Fix sass-parser compatibility with the latest PostCSS
  • 9a5b4f5 Properly add ParenthesizedExpression for comma-separated lists
  • e7b70e2 Remove ia32 support on dart 3.8 (#2579)
  • See full diff in compare view

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
Pull Request Statistics
Commits:
0
Files Changed:
0
Additions:
+0
Deletions:
-0
Package Dependencies
Package:
zod
Ecosystem:
npm
Version Change:
3.24.4 → 3.25.51
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.511.0 → 0.513.0
Update Type:
Minor
Package:
sass
Ecosystem:
npm
Version Change:
1.89.0 → 1.89.1
Update Type:
Patch
Package:
@types/node
Ecosystem:
npm
Version Change:
22.15.18 → 22.15.29
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.1.4 → 19.1.6
Update Type:
Patch
Package:
next
Ecosystem:
npm
Version Change:
15.3.2 → 15.3.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.1.5 → 19.1.6
Update Type:
Patch
Ecosystem:
npm
Version Change:
15.3.2 → 15.3.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.32.1 → 8.33.1
Update Type:
Minor
Package:
postcss
Ecosystem:
npm
Version Change:
8.5.3 → 8.5.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.56.3 → 7.57.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
2.1.6 → 2.1.7
Update Type:
Patch
Technical Details
ID: 879108
UUID: 3119266105
Node ID: PR_kwDOOwEwKM6ZGaVF
Host: GitHub
Repository: DevVaultCode/example-nextjs