Open
Conversation
Contributor
Author
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: package-lock.json |
2052187 to
7d07322
Compare
7d07322 to
f8fa529
Compare
f8fa529 to
53c5cb2
Compare
5746fc1 to
737a3e8
Compare
7e28973 to
931c66a
Compare
931c66a to
a364660
Compare
c00691a to
eb8cb53
Compare
eb8cb53 to
22e75eb
Compare
1a1f0f9 to
941108c
Compare
07b072d to
1d8db8f
Compare
927de41 to
c001fcc
Compare
fd3d7e0 to
551c0d9
Compare
7c27bee to
ba5496f
Compare
ba5496f to
85703e0
Compare
a1206a3 to
fb3681c
Compare
edb5ae3 to
dc05cc1
Compare
bfa9e6d to
1f02fef
Compare
1f02fef to
42f4b79
Compare
1c85da9 to
76a60e5
Compare
6ddec65 to
8d7279b
Compare
18e8d6d to
3c414eb
Compare
e789215 to
9052964
Compare
bad05ff to
f58c28c
Compare
f58c28c to
4364032
Compare
4364032 to
eb0558d
Compare
eb0558d to
280c760
Compare
280c760 to
fab1696
Compare
86b0d5c to
5a2c7d5
Compare
5a2c7d5 to
3614139
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.27.0→4.1.08.0.0-beta.37→9.14.0See all other Renovate PRs on the Dependency Dashboard
How to resolve breaking changes
This PR may introduce breaking changes that require manual intervention. In such cases, you will need to check out this branch, fix the cause of the breakage, and commit the fix to ensure a green CI build. To check out and update this PR, follow the steps below:
Release Notes
date-fns/date-fns (date-fns)
v4.1.0Compare Source
This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.
Make sure also upgrade
TZDateto v1.0.2 as it includes a bunch of critical bug fixes.Fixed
constructFromthrowing an exception onnullarguments. Whilenullisn't allowed, the functions should rather returnInvalid DateorNaNin such cases. See #3885.Added
format,formatISO,formatISO9075,formatRelativeandformatRFC3339. See #3886.v4.0.0Compare Source
I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.
Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.
Read more about the release in the announcement blog post.
- Sasha @kossnocorp
Added
Added time zones support via
@date-fns/tz'sTZDateclass andtzhelper function. See its README for the details about the API.All relevant functions now accept the context
inoption, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:In the example,
addDayswill get the current date and time in Singapore and add 5 days to it.startOfDaywill inherit the date type and return the start of the day in Singapore.Changed
The function arguments, as well as
Interval'sstartandend, now can be of different types, allowing you to mixUTCDate,TZDate,Date, and other extensions, as well as primitives (strings and numbers).The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context
inoption or the first encountered argument object type. TheInterval'sstartandendwill be considered separately, starting fromstart.In the given example, the result will be in the
TZDateas the first argument is a number, and thestarttakes precedence over theend.BREAKING: This release contains a bunch of types changes that should not affect the library's expected usage. The changes are primarily internal and nuanced, so rather than listing them here, I recommend you running the type checker after the upgrade. If there are unfixable problems, please open an issue.
BREAKING: The package now is ESM-first. The CommonJS is still support and It should not affect most users, but it might break in certains environments. If you encounter any issues, please report them.
Fixed
$by properly wrapping the code in an IIFE.v3.6.0Compare Source
On this release worked @kossnocorp and @world1dan. Also, thanks to @seated for sponsoring me.
Fixed
formatDistance.Added
v3.5.0Compare Source
Kudos to @fturmel, @kossnocorp, @makstyle119, @tan75, @marcreichel, @tareknatsheh and @audunru for working on the release. Also, thanks to @seated for sponsoring me.
Fixed
Fixed functions that use current date internally and made them work with date extensions like
UTCDate.Fixed
daysToWeeksreturning negative 0.Fixed German grammar for the "half a minute" string.
Added
Added the Northern Sámi (
se) locale.Added the
constructNowfunction that creates the current date using the passed reference date's constructor.v3.4.0Compare Source
Kudos to @kossnocorp, @sakamossan and @Revan99 for working on the release. Also, thanks to @seated for sponsoring me.
Added
Added
roundToNearestHoursfunction.Added Central Kurdish (
ckb) locale.v3.3.1Compare Source
Kudos to @kossnocorp and @fturmel for working on the release.
Fixed
Fixed DST issue in
getOverlappingDaysInIntervals, resulting in an inconsistent number of days returned for intervals starting and ending in different DST periods.Fixed functions incorrectly using
truncinstead ofround. The bug was introduced in v3.3.0. The affected functions:differenceInCalendarDays,differenceInCalendarISOWeeks,differenceInCalendarWeeks,getISOWeek,getWeek, andgetISOWeeksInYear.v3.3.0Compare Source
On this release worked @kossnocorp, @TheKvikk, @fturmel and @ckcherry23.
Fixed
Fixed the bug in
getOverlappingDaysInIntervalscaused by incorrect sorting of interval components that led to 0 for timestamps of different lengths.Fixed bugs when working with negative numbers caused by using
Math.floor(-1.1→-2) instead ofMath.trunc(-1.1→-1). Most of the conversion functions (i.e.,hoursToMinutes) were affected when passing some negative fractional input. Also, some other functions that could be possibly affected by unfortunate timezone/date combinations were fixed.The functions that were affected:
format,parse,getUnixTime,daysToWeeks,hoursToMilliseconds,hoursToMinutes,hoursToSeconds,milliseconds,minutesToMilliseconds,millisecondsToMinutes,monthsToYears,millisecondsToHours,millisecondsToSeconds,minutesToHours,minutesToSeconds,yearsToQuarters,yearsToMonths,yearsToDays,weeksToDays,secondsToMinutes,secondsToHours,quartersToYears,quartersToMonthsandmonthsToQuarters.Fixed the Czech locale's
formatDistanceto include1informatDistance.Fixed
differenceInSecondsand other functions relying on rounding options that can produce a negative 0.Added a preprocessor to the locales API, enabling fixing a long-standing bug in the French locale. (#1391)
Added missing
yearsToDaysto the FP submodule.Made functions using rounding methods always return
0instead of-0.Added
formataliasformatDatewith correspondingFormatDateOptionsinterface.v3.2.0Compare Source
This release is brought to you by @kossnocorp, @fturmel, @grossbart, @MelvinVermeer, and @jcarstairs-scottlogic.
Fixed
Fixed types compatibility with Lodash's
flowand fp-ts'spipe. (#3641)Fixed inconsistent behavior of
roundToNearestMinutes.Added
format,lightFormat, andparseinternals that enable 3rd-parties to consume those.v3.1.0Compare Source
This release is brought to you by @kossnocorp, @makstyle119 and @dmgawel.
Fixed
Added
Added
yearsToDaysfunction.Added warning about using protected tokens like
YorDwithout passing a corresponding option. See #2950.v3.0.6Compare Source
On this release worked @imwh0im, @jamcry and @tyrw.
Fixed
areIntervalsOverlappingcaused by incorrect sorting (#3614)v3.0.5Compare Source
This release is brought to you by @goku4199.
Fixed
toDatenot processing string arguments properlyv3.0.4Compare Source
This release is brought to you by @kossnocorp.
Fixed
v3.0.3Compare Source
Fixed
d.tsfiles. Instead now it copies the content to avoid the Masquerading as CJS problem reported by "Are the types wrong?".v3.0.2Compare Source
Fixed
Fixed yet another issue caused by ESM types by pointing to the same
d.tsfiles.Added
package.jsonto exports to provide access to tooling.Fixed TypeScript 5.4 build break by using the latest type names.
v3.0.1Compare Source
Fixed
d.mtsfiles exporting only types.v3.0.0Compare Source
Changed
BREAKING: date-fns is now a dual-package with the support of both ESM and CommonJS. The files exports are now explicitly in the
package.json. The ESM files now have.mjsextension.BREAKING: The package now has a flat structure, meaning functions are now named
node_modules/date-fns/add.mjs, locales arenode_modules/date-fns/locale/enUS.mjs, etc.BREAKING: Now all file content’s exported via named exports instead of
export default, which will require change direct imports i.e.const addDays = require(‘date-fns/addDays’)toconst { addDays } = require(‘date-fns/addDays’).BREAKING: TypeScript types are now completely rewritten, check out the
d.tsfiles for more information.BREAKING:
constantsnow is not exported via the index, so to import one useimport { daysInYear } from "date-fns/constants";. It improves compatibility with setups that modularize imports like Next.js.BREAKING: Functions now don’t check the number of passed arguments, delegating this task to type checkers. The functions are now slimmer because of this.
BREAKING The arguments are not explicitly converted to the target types. Instead, they are passed as is, delegating this task to type checkers.
BREAKING: Functions that accept
Intervalarguments now do not throw an error if the start is before the end and handle it as a negative interval. If one of the properties in anInvalid Date, these functions also do not throw and handle them as invalid intervals.areIntervalsOverlappingnormalize intervals before comparison, so{ start: a, end: b }is practically equivalent to{ start: b, end: a }. When comparing intervals with one of the properties beingInvalid Date, the function will return false unless the others are valid and equal, given theinclusiveoption is passed. Otherwise, and when even one of the intervals has both properties invalid, the function will always returnfalse.getOverlappingDaysInIntervalsnow normalizes intervals before comparison, so{ start: a, end: b }is practically equivalent to{ start: b, end: a }. If any of the intervals’ properties is anInvalid Date, the function will always return 0.isWithinIntervalnow normalizes intervals before comparison, so{ start: a, end: b }is practically equivalent to{ start: b, end: a }. If any of the intervals’ properties is anInvalid Date, the function will always return false.intervalToDurationnow returns negative durations for negative intervals. If one or both of the interval properties are invalid, the function will return an empty object.The eachXOfInterval functions (
eachDayOfInterval,eachHourOfInterval,eachMinuteOfInterval,eachMonthOfInterval,eachWeekendOfInterval,eachWeekendOfMonth,eachWeekendOfYear,eachWeekOfInterval,eachYearOfInterval) now return a reversed array if the passed interval’s start is after the end. Invalid properties will result in an empty array. Functions that accept thestepoption now also allow negative, 0, and NaN values and return reversed results if the step is negative and an empty array otherwise.BREAKING:
intervalToDurationnow skips 0 values in the resulting duration, resulting in more compact objects with only relevant properties.BREAKING:
roundToNearestMinutesnow returnsInvalid Dateinstead of throwing an error whennearestTooption is less than 1 or more than 30.BREAKING: IE is no longer supported.
BREAKING: Now all functions use
Math.truncrounding method where rounding is required. The behavior is configurable on a per-function basis.BREAKING: Undocumented
onlyNumericoption was removed fromnnandsvlocales. If you relied on it, please contact me.BREAKING: Flow is not supported anymore. If you relied on it, please contact me.
BREAKING: The locales now use regular functions instead of the UTC version, which should not break any code unless you used locales directly.
Added
All functions that accept date arguments now also accept strings.
All functions now export options interfaces.
Now functions allow passing custom Date extensions like UTCDate. They will detect and use the arguments constructor to generate the result of the same class.
eachMonthOfInterval,eachQuarterOfInterval,eachWeekOfInterval, andeachYearOfIntervalnow accept thestepoption like most of the eachXOfInterval functions.A new
intervalfunction that validates interval, emulating the v2 interval functions behavior.differenceInXfunctions now accept options and allow setting uproundingMethodthat configures how the result is rounded.Math.truncis the default method.v2.30.0Compare Source
Kudos to @kossnocorp and @Andarist for working on the release.
Changes
v2.29.3Compare Source
This release is prepared by our own @leshakoss.
Fixed
Fixed Ukrainian (
uk) locale grammar forformatDistance.Improved browser compatibility by transforming the code with
@babel/preset-env.v2.29.2Compare Source
This release is brought to you by @nopears, @vadimpopa and @leshakoss.
Fixed
Fixed
svlocale abbreviated months matcher.Fixed
uklocale abbreviated months matcher.Fixed a breaking change in
intervalToDurationby removing a recently introduced RangeError.v2.29.1Compare Source
Thanks to @fturmel for working on the release.
Fixed
v2.29.0Compare Source
On this release worked @tan75, @kossnocorp, @nopears, @Balastrong, @cpapazoglou, @dovca, @aliasgar55, @tomchentw, @JuanM04, @alexandresaura, @fturmel, @aezell, @andersravn, @TiagoPortfolio, @SukkaW, @Zebreus, @aviskarkc10, @maic66, @a-korzun, @Mejans, @davidspiess, @alexgul1, @matroskin062, @undecaf, @mprovenc, @jooola and @leshakoss.
Added
Added
intlFormatDistancefunction`.Added
setDefaultOptionsandgetDefaultOptionsfunctions that allow you to set default default locale,weekStartsOnandfirstWeekContainsDate.Added
roundingMethodoption toroundToNearestMinutes.Added Swiss Italian locale (
it-CH).Added Occitan (
oc) locale. (#2061)Added Belarusian Classic (
be-tarask) locale.Fixed
Fixed Azerbaijani (
az) locale forformatDistance.Fixed Czech (
cs) locale forparse.Fixed TypeScript types for constants.
Fixed long formatters in the South African English locale (
en-ZA).Fixed a typo in the Icelandic locale (
is) forformat.Fixed weekday format for
formatRelativein the Portuguese locale (pt).Fixed
intervalToDurationbeing off by 1 day sometimes.Fixed ordinal number formatting in Italian locale (
it).Fixed issue parsing months in Croatian (
hr), Georgian (ka) and Serbian (srandsr-Latn) locales.Changed
Replaced
git.iolinks with full URLs in error messages.Internal: removed "v2.0.0 breaking changes" section from individual function docs
v2.28.0Compare Source
Kudos to @tan75, @fturmel, @arcanar7, @jeffjose, @helmut-lang, @zrev2220, @jooola, @minitesh, @cowboy-bebug, @mesqueeb, @JuanM04, @zhirzh, @damon02 and @leshakoss for working on the release.
Added
Added West Frisian (
fy) locale.Added Uzbek Cyrillic locale (
uz-Cyrl).Fixed
add the missing accent mark for Saturday in Spanish locale (
es) forformat.allowed
Ktoken to be used withaorbinparse.gpbl/react-day-picker (react-day-picker)
v9.14.0Compare Source
Release date: 2026-02-26
This release introduces a new
resetOnSelectprop and adds support for the Hijri calendar.Resetting Selections in Range Mode
When in range selection mode, use the
resetOnSelectprop to start a new range when a full range is already selected.Hijri Calendar
To use the Hijri (Umm al-Qura) calendar, import
DayPickerfromreact-day-picker/hijri:Read more in the documentation and play with it in playground.
What's Changed
resetOnSelectprop to reset date range when selecting date with completed range by @rodgobbi in #2906langprop toDayPickerroot element by @gpbl in #2907v9.13.2Compare Source
What's Changed
New Contributors
Full Changelog: gpbl/react-day-picker@v9.13.1...v9.13.2
v9.13.1Compare Source
Persian calendar improvements.
What's Changed
New Contributors
Full Changelog: gpbl/react-day-picker@v9.13.0...v9.13.1
v9.13.0Compare Source
This release introduces an experimental
noonSafeprop to help deal with historical time zones with second offsets. See https://daypicker.dev/localization/setting-time-zone#noonsafe for more details.What's Changed
noonSafeprop for timezone offsets by @gpbl in #2879Full Changelog: gpbl/react-day-picker@v9.12.0...v9.13.0
v9.12.0Compare Source
This release adds translated labels to built-in locales and fixes issues with array modifiers and the Hebrew calendar.
Translated Locales
DayPicker locales now ship with localized labels (e.g., “Go to next month”, “Today”), so you no longer need to supply them via
labels. To use a locale:If you previously set the
labelsprop for translations, you can remove it. For details on switching locales, see https://daypicker.dev/localization/changing-locale.What's Changed
Date[]modifiers by day by @gpbl in #2865Full Changelog: gpbl/react-day-picker@v9.11.3...v9.12.0
v9.11.3Compare Source
Rendered HTML now includes empty cells in grids when
endMonthis set, and fixes the v9.11.2 regression where JSDOM tests could fail when focusing disabled days.Possible low impact breaking change: The grid markup changed, so brittle snapshot tests or custom CSS that depended on the old structure may need updates. Adjust snapshots/CSS accordingly.
What's Changed
endMonthclips the calendar by @gpbl in #2856Full Changelog: gpbl/react-day-picker@v9.11.2...v9.11.3
v9.11.2Compare Source
What's Changed
timeZoneprop by @gpbl in #2849Full Changelog: gpbl/react-day-picker@v9.11.1...v9.11.2
v9.11.1Compare Source
What's Changed
Full Changelog: gpbl/react-day-picker@v9.11.0...v9.11.1
v9.11.0Compare Source
This release adds support for Buddhist and Hebrew calendars, introduces new Southeast Asian numeral systems, adds the
aria-labelledbyprop, and improves month/year formatting for specific locales. It also includes fixes for the recently added Ethiopic calendar.Buddhist Calendar
To use the Buddhist calendar, import
DayPickerfromreact-day-picker/buddhist.Read more in the documentation and play with it in playground.
Hebrew Calendar
To switch to the Hebrew calendar, import
DayPickerfromreact-day-picker/hebrew.Read more in the documentation and play with it in playground.
What's Changed
aria-labelledbyprop by @gpbl in #2828Full Changelog: gpbl/react-day-picker@v9.10.0...v9.11.0
v9.10.0Compare Source
This release adds support for the Ethiopic calendar.
Ethiopic calendar
To use the Ethiopic calendar, import
DayPickerfromreact-day-picker/ethiopic.Read more in the documentation and play with it in playground.
What's Changed
Full Changelog: gpbl/react-day-picker@v9.9.0...v9.10.0
v9.9.0Compare Source
This release includes a new
reverseYearsprop, a range selection fix, and a build update to fix issues with source maps.Reversing the Years in the Dropdown
When using
captionLayout='dropdown', setreverseYearsto reverse the years listed in the dropdown: the most recent year will appear first.See it in action in the playground.
What's Changed
reverseYearsprop by @gpbl in #2822srcdirectory from package by @gpbl in #2812date-fns/tzdependency by @gpbl in #2823Full Changelog: gpbl/react-day-picker@v9.8.1...v9.9.0
v9.8.1Compare Source
Improved
captionLayoutdocumentation and build process.What's Changed
captionLayoutprop by @rodgobbi in #2788 and @haecheonlee in #2787New Contributors
Full Changelog: gpbl/react-day-picker@v9.8.0...v9.8.1
v9.8.0Compare Source
DayPicker 9.8 includes better keyboard navigation and resolves edge cases with month and year rendering.
What's Changed
defaultMonthto the next year with the dropdown navigation layout no longer prevents the calendar from rendering by @rodgobbi in #2783numberOfMonthsandendMonthare set by @gpbl in #2784New Contributors
Full Changelog: gpbl/react-day-picker@v9.7.0...v9.8.0
v9.7.0Compare Source
DayPicker 9.7 introduces a new
navLayoutprop to customize the layout of the navigation and includes improvements for time zones and localization.Navigation Layouts
The
navLayoutprop allows you to change the layout of the navigation buttons in the calendar:navLayout="around", navigation buttons are displayed on either side of the caption.navLayout="after", navigation buttons are displayed after the caption. This layout ensures that the focus order respects the visual order, conforming to the WCAG 2.2 guidelines for accessibility.For more details, see the Navigation Layouts section in the documentation.
What's Changed
navLayoutprop by @gphttps://github.com/gpbl/react-day-picker/pull/2755l/2755Dateprops by @gphttps://github.com/gpbl/react-day-picker/pull/2750l/2750useGetModifierstocreateGetModifiersby @gphttps://github.com/gpbl/react-day-picker/pull/2751l/2751Full Changelog: gpbl/react-day-picker@v9.6.7...v9.7.0
v9.6.7Compare Source
Improved handling of timezones, fixed alignment with the Left/Right navigation icons.
What's Changed
initialMonthisDatetype by @lovebuizel in #2737New Contributors
Full Changelog: gpbl/react-day-picker@v9.6.6...v9.6.7
v9.6.6Compare Source
Includes a fix for
autoFocusprop not correctly autofocusing the selected day.What's Changed
Full Changelog: gpbl/react-day-picker@v9.6.5...v9.6.6
v9.6.5Compare Source
Fixed an issue with the Persian calendar.
What's Changed
enUSlocale displaying empty week by @gpbl in #2723Full Changelog: gpbl/react-day-picker@v9.6.4...v9.6.5
v9.6.4Compare Source
What's Changed
Full Changelog: gpbl/react-day-picker@v9.6.3...v9.6.4
v9.6.3Compare Source
Improved accessibility, fixed the default locale imports, and added missing files for source maps.
What's Changed
date-fnsby @binhpv in #2717srcto package.json by @gpbl in #2718New Contributors
Full Changelog: gpbl/react-day-picker@v9.6.2...v9.6.3
v9.6.2Compare Source
Fix issues when importing the Persian calendar or the CSS types declaration.
What's Changed
New Contributors
Full Changelog: gpbl/react-day-picker@v9.6.1...v9.6.2
v9.6.1Compare Source
This release addresses an accessibility issue, adds a new
animateprop and fixes other minor bugs.Possible Breaking Change in Custom Styles
To address a focus lost bug affecting navigation buttons, we updated the buttons to use
aria-disabledinstead of thedisabledattribute.This change may cause custom styles for those disabled buttons to break. To fix it in your code, update the CSS selector to target
[aria-disabled="true"]:Animating Month Transitions
Thanks to the work by @rodgobbi, we have added animations to DayPicker. The new
animateprop enables CSS transitions for captions and weeks when navigating between months:Customizing the animation style can be challenging due to the HTML table structure of the grid. We may address this in the future. Please leave your feedback in DayPicker Discussions.
What's Changed
animateprop by @rodgobbi in #2684sideEffectsproperty to package.json by @rodgobbi in #2673selectedmodifier when disabled by @rodgobbi in #2700v9.6.1
New Contributors
**Full Ch
Configuration
📅 Schedule: Branch creation - "after 12am every weekday" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.