Skip to content

chore(deps): bump the react group across 1 directory with 3 updates - #56

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/react-a0c69bbdbe
Open

chore(deps): bump the react group across 1 directory with 3 updates#56
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/react-a0c69bbdbe

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Copy link
Copy Markdown

Bumps the react group with 3 updates in the / directory: react-day-picker, react-email and react-hook-form.

Updates react-day-picker from 8.10.1 to 10.0.1

Release notes

Sourced from react-day-picker's releases.

v10.0.1

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v10.0.0...v10.0.1

v10.0.0

DayPicker v10 removes the public APIs deprecated in v9 and introduces a new @daypicker/react package name. Non-Gregorian calendars are now published as standalone @daypicker/* packages.

If your app already uses the current v9 API, the upgrade should be relatively small. If your app still relies on deprecated v9 APIs, those usages should be updated before upgrading.

See the full v10 changelog, the upgrade guide, and the v10 announcement for questions and upgrade feedback.

Install

npm install react-day-picker@latest

For new projects, prefer the scoped package name:

npm install @daypicker/react@latest
import { DayPicker } from "@daypicker/react";
import "@daypicker/react/style.css";

The react-day-picker package remains available in v10 for compatibility.

Breaking Changes

Deprecated navigation props removed

Removed prop Use instead
fromMonth startMonth
fromYear startMonth={new Date(year, 0)}
toMonth endMonth
toYear endMonth={new Date(year, 11)}
fromDate hidden={{ before: date }} and optionally startMonth
toDate hidden={{ after: date }} and optionally endMonth

Deprecated focus and event props removed

... (truncated)

Changelog

Sourced from react-day-picker's changelog.

v10.0.1

Release date: 2026-05-12

This patch release fixes inline styles for component slots and adds @types/react as an optional peer dependency for strict package managers.

What's Changed

  • fix: apply inline styles to all component slots by @​gpbl in #2995
  • fix: add @types/react as an optional peer dependency by @​mrmckeb in #2997

v10.0.0

Release date: 2026-05-08

This major release introduces the @daypicker/react package name, publishes calendar add-on packages under the @daypicker/* scope, and removes public APIs that were deprecated in v9.

Upgrading to v10

Upgrading from v9 should be straightforward if your app does not use any deprecated APIs. See the upgrading guide for details. If you use one of the non-Gregorian calendars, such as Persian, Hebrew, Buddhist, Ethiopic, or Hijri, install the corresponding calendar add-on package alongside DayPicker.

Package Name

For new projects, prefer the @daypicker/react package:

import { DayPicker } from "@daypicker/react";
import "@daypicker/react/style.css";

The react-day-picker package remains available for compatibility and exposes the same DayPicker API in v10.

Calendar Packages

Calendar add-on packages are now published under the @daypicker/* scope. Install the add-on package for the calendar you need alongside @daypicker/react. For example, to use the Persian calendar:

npm install @daypicker/react @daypicker/persian

Breaking Changes

  • Removed deprecated props: fromDate, toDate, fromMonth, toMonth, fromYear, toYear, initialFocus.
  • Removed deprecated event props: onWeekNumberClick, onDayKeyUp, onDayKeyPress, onDayPointerEnter, onDayPointerLeave, onDayTouchCancel, onDayTouchEnd, onDayTouchMove, onDayTouchStart.
  • Removed deprecated type exports from types/deprecated.
  • Removed deprecated aliases: formatMonthCaption, formatYearCaption, labelDay, labelCaption, isMatch, isDateInRange.
  • Removed the deprecated components.Button customization entry.
  • Removed deprecated DeprecatedUI compatibility typing for classNames and styles.
  • Removed deprecated DateLib exports: FormatOptions, LabelOptions, dateLib, and DateLib.Date.
  • Removed the deprecated react-day-picker/jalali subpath. Use react-day-picker/persian.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-day-picker since your current version.


Updates react-email from 2.1.5 to 6.9.1

Release notes

Sourced from react-email's releases.

react-email@6.9.1

Patch Changes

  • ea02028: Serve static assets with URL-encoded filenames correctly in the preview server while preventing decoded paths from escaping the static directory.
  • 60c96a6: Fix <Tailwind> dropping dark: and other media-query variants with tailwindcss@4.3.3+, where the conditional value was inlined as the base style and the @media rule never reached the <head>

react-email@6.9.0

No release notes provided.

react-email@6.8.1

No release notes provided.

react-email@6.8.0

Minor Changes

  • 9605c04: Add a Props tab to the preview toolbar for live-editing the props a template is rendered with. Edits re-render the preview without changing the template's PreviewProps, invalid JSON is flagged inline, and a reset restores the template defaults.

Patch Changes

  • d7743bc: Ship per-module build output with sideEffects: false so bundlers can tree-shake unused components. Importing a component no longer pulls prismjs, marked, and tailwindcss into the bundle unless CodeBlock, Markdown, or Tailwind is actually used.
  • 7b32bf6: Fixed toolbar tabs not responding on statically built previews when the page was opened with a toolbar-panel query param in the URL.

react-email@6.7.0

Minor Changes

  • b448c3b: Enable custom export extensions via --extension/-e (e.g. .blade.php).

Patch Changes

  • Updated dependencies [ba96cfa]
  • Updated dependencies [58d8c08]
    • @​react-email/render@​2.1.0

react-email@6.6.9

Patch Changes

  • bc2f7e3: Fix group utilities including bad rules that don't work

react-email@6.6.8

Patch Changes

  • dca3c01: Fix email build computing the wrong output file tracing root in nested-workspace monorepos (e.g. a package one or more directories below the true repo root), which caused Vercel deploys to fail with an ENOENT error on the routes manifest.

react-email@6.6.7

Patch Changes

  • 6a5ff2a: Escape double quotes in Markdown link href/title and image title attributes, matching the escaping already applied to image src/alt. A markdown title like 'The "Complete" Guide' no longer breaks out of the attribute in the rendered HTML.
  • 4cf4c72: Fix two-value logical shorthands whose values aren't all numeric (e.g. margin-inline: 1rem auto, padding-inline: 10px calc(1rem + 2px)) producing invalid duplicated longhands. They are now split into the correct per-side declarations.
  • fa77d55: Merge declarations when the same class is defined by multiple Tailwind rules (e.g. a preset and a child config override).
  • fa52a04: Convert Tailwind's rgba(r g b / a) syntax to rgb(r,g,b,a) syntax for better email client support.

... (truncated)

Changelog

Sourced from react-email's changelog.

6.9.1

Patch Changes

  • ea02028: Serve static assets with URL-encoded filenames correctly in the preview server while preventing decoded paths from escaping the static directory.
  • 60c96a6: Fix <Tailwind> dropping dark: and other media-query variants with tailwindcss@4.3.3+, where the conditional value was inlined as the base style and the @media rule never reached the <head>

6.9.0

6.8.1

6.8.0

Minor Changes

  • 9605c04: Add a Props tab to the preview toolbar for live-editing the props a template is rendered with. Edits re-render the preview without changing the template's PreviewProps, invalid JSON is flagged inline, and a reset restores the template defaults.

Patch Changes

  • d7743bc: Ship per-module build output with sideEffects: false so bundlers can tree-shake unused components. Importing a component no longer pulls prismjs, marked, and tailwindcss into the bundle unless CodeBlock, Markdown, or Tailwind is actually used.
  • 7b32bf6: Fixed toolbar tabs not responding on statically built previews when the page was opened with a toolbar-panel query param in the URL.

6.7.0

Minor Changes

  • b448c3b: Enable custom export extensions via --extension/-e (e.g. .blade.php).

Patch Changes

  • Updated dependencies [ba96cfa]
  • Updated dependencies [58d8c08]
    • @​react-email/render@​2.1.0

6.6.9

Patch Changes

  • bc2f7e3: Fix group utilities including bad rules that don't work

6.6.8

Patch Changes

  • dca3c01: Fix email build computing the wrong output file tracing root in nested-workspace monorepos (e.g. a package one or more directories below the true repo root), which caused Vercel deploys to fail with an ENOENT error on the routes manifest.

6.6.7

Patch Changes

... (truncated)

Commits
  • dbabbb3 chore(root): version packages (#3675)
  • 60c96a6 fix(react-email): extract media-query variants with tailwindcss 4.3.3+ (#3674)
  • ea02028 fix(react-email): serve static files with URL-encoded names (#3671)
  • 7165657 chore(root): version packages (#3657)
  • 3966136 chore(root): version packages (#3651)
  • 465b635 chore(root): version packages (#3642)
  • d7743bc fix(react-email): ship per-module output so bundlers can tree-shake unused co...
  • afa94da fix(deps): update dependency jiti to v2.6.1 (#3398)
  • a8ccfec chore(root): version packages (#3640)
  • b448c3b feat(react-email): support custom export extension (#2555)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-email since your current version.


Updates react-hook-form from 7.61.1 to 7.83.0

Release notes

Sourced from react-hook-form's releases.

Version 7.83.0

⚡ Improvements

  • enhance getEventValue to handle file inputs (#13289)
  • type perf: improve TypeScript performance with a hard cap at 10 levels of recursive type depth (#13529)
  • type perf: improve type performance (#13528)

🐞 Fixes

  • fix: clear internal errors state on argument-less clearErrors() (#13613)
  • fix: preserve dirtyFields reference stability (#13612)
  • fix: old checkbox/radio elements polluting internal field state (#13080)
  • fix(useController): re-subscribe onChange/onBlur when control changes (#13603)
  • fix(types): allow validation messages to be defined even if their related value is undefined (#13287)

Version 7.82.0

🚀 feat: add opt-in delayError option for setValue (#13337)

setValue("firstName", "Bill", {
  delayError: 500, // delay validation error updates by 500ms
  shouldValidate: true
});

perf: improve getDirtyFields performance (#13590)

  • Improved dirty field calculation, especially for larger forms and deeply nested values.

🐞 fix: expose resetDefaultValues through form context (#13598)

const { resetDefaultValues } = useFormContext();
resetDefaultValues();

🐞 fix: setValue with shouldDirty now correctly updates dirty state when the form is disabled (#13594) 🐞 fix: preserve dirtyFields boolean values for registered array fields (#13586) 🐞 fix: restore FieldArray component export (#13596) 🧪 test: migrate test suite to Playwright and improve delayError test reliability (#13589)

thanks to @​candymask0712, @​wanxiankai, @​a-y-ibrahim, @​ankit1324 & @​abnud11

Version 7.81.0

⚜️ feat: FieldArray component (#13394)

<FieldArray
  control={control}
</tr></table> 

... (truncated)

Changelog

Sourced from react-hook-form's changelog.

[7.83.0] - 2026-07-25

Improvements

  • Enhance getEventValue to handle file inputs
  • Improve TypeScript performance with a hard cap at 10 levels of recursive type depth

Fixed

  • Clear internal errors state on argument-less clearErrors()
  • Preserve dirtyFields reference stability
  • Old checkbox/radio elements polluting internal field state
  • useController not re-subscribing onChange/onBlur when control changes
  • Allow validation messages to be defined even if their related value is undefined

[7.82.0] - 2026-07-18

Added

  • Opt-in delayError option for setValue to delay validation error updates

Fixed

  • Expose resetDefaultValues through form context
  • setValue with shouldDirty not updating dirty state correctly when the form is disabled
  • Preserve dirtyFields boolean values for registered array fields
  • Restore FieldArray component export

Performance

  • Improve getDirtyFields performance, especially for larger forms and deeply nested values

[7.81.0] - 2026-07-05

Added

  • FieldArray component built on useFieldArray for controlled field-array rendering

Fixed

  • clearErrors changing the name value from form.subscribe
  • reset triggering subscribe with the latest name instead of undefined
  • setValues leaving stale elements behind when shrinking a field array
  • flatten preserving Date values as leaf nodes
  • useFieldArray min length validation error changing location in the errors object
  • useController not reflecting a cleared parent object in controlled fields

Security

  • Harden unset() against prototype-path traversal (__proto__ / constructor / prototype), matching the existing set() guard

... (truncated)

Commits
  • ca8106d 7.83.0
  • 69da954 🐞 fix: clear internal errors state on argument-less clearErrors() (#13613)
  • d96c5ce 🐞 fix: preserve dirtyFields reference stability (#13612)
  • ee7593e 🧪 update old checkbox/radio elements polluting internal field state e2e spec ...
  • 2726d81 🐞 fix: old checkbox/radio elements polluting internal field state (#13080)
  • 4ca98df ✋ fix repo grammar to prevent those silly one line prs
  • d920e93 🧪 add test for enhance getEventValue to handle file inputs (#13289)
  • 2ebc8d0 🍖 enhance getEventValue to handle file inputs (#13289)
  • 6a38628 ☎️ type perf: improve ts perf with hardcap at 10 depth (#13529)
  • ac8a3d0 🐞 fix(useController): resubscribe onChange/onBlur when control changes (#13603)
  • Additional commits viewable in compare view

@dependabot @github

dependabot Bot commented on behalf of github May 4, 2026

Copy link
Copy Markdown
Author

Assignees

The following users could not be added as assignees: your-github-username. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot changed the title chore(deps): bump the react group with 3 updates chore(deps): bump the react group across 1 directory with 3 updates Jun 22, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/react-a0c69bbdbe branch from 96682c2 to 81fa8e7 Compare June 22, 2026 09:10
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/react-a0c69bbdbe branch from 81fa8e7 to ffb8367 Compare July 6, 2026 09:09
Bumps the react group with 3 updates in the / directory: [react-day-picker](https://github.com/gpbl/react-day-picker/tree/HEAD/packages/react-day-picker), [react-email](https://github.com/resend/react-email/tree/HEAD/packages/react-email) and [react-hook-form](https://github.com/react-hook-form/react-hook-form).


Updates `react-day-picker` from 8.10.1 to 10.0.1
- [Release notes](https://github.com/gpbl/react-day-picker/releases)
- [Changelog](https://github.com/gpbl/react-day-picker/blob/main/packages/react-day-picker/CHANGELOG.md)
- [Commits](https://github.com/gpbl/react-day-picker/commits/v10.0.1/packages/react-day-picker)

Updates `react-email` from 2.1.5 to 6.9.1
- [Release notes](https://github.com/resend/react-email/releases)
- [Changelog](https://github.com/resend/react-email/blob/canary/packages/react-email/CHANGELOG.md)
- [Commits](https://github.com/resend/react-email/commits/react-email@6.9.1/packages/react-email)

Updates `react-hook-form` from 7.61.1 to 7.83.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.61.1...v7.83.0)

---
updated-dependencies:
- dependency-name: react-day-picker
  dependency-version: 9.14.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react
- dependency-name: react-email
  dependency-version: 6.0.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: react
- dependency-name: react-hook-form
  dependency-version: 7.75.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/react-a0c69bbdbe branch from ffb8367 to 786e480 Compare July 27, 2026 09:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants