fix(deps): update dependency date-fns to v3 #1136
Open
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:
1.30.1
->3.6.0
Release Notes
date-fns/date-fns (date-fns)
v3.6.0
Compare Source
On this release worked @kossnocorp and @world1dan. Also, thanks to @seated for sponsoring me.
Fixed
formatDistance
.Added
v3.5.0
Compare 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
daysToWeeks
returning negative 0.Fixed German grammar for the "half a minute" string.
Added
constructNow
function that creates the current date using the passed reference date's constructor.v3.4.0
Compare Source
Kudos to @kossnocorp, @sakamossan and @Revan99 for working on the release. Also thanks to @seated for sponsoring me.
Added
Added
roundToNearestHours
function.Added Central Kurdish (
ckb
) locale.v3.3.1
Compare 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
trunc
instead ofround
. The bug was introduced in v3.3.0. The affected functions:differenceInCalendarDays
,differenceInCalendarISOWeeks
,differenceInCalendarWeeks
,getISOWeek
,getWeek
, andgetISOWeeksInYear
.v3.3.0
Compare Source
On this release worked @kossnocorp, @TheKvikk, @fturmel and @ckcherry23.
Fixed
Fixed the bug in
getOverlappingDaysInIntervals
caused 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
,quartersToMonths
andmonthsToQuarters
.Fixed the Czech locale's
formatDistance
to include1
informatDistance
.Fixed
differenceInSeconds
and 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
yearsToDays
to the FP submodule.Made functions using rounding methods always return
0
instead of-0
.Added
format
aliasformatDate
with correspondingFormatDateOptions
interface.v3.2.0
Compare Source
This release is brought to you by @kossnocorp, @fturmel, @grossbart, @MelvinVermeer, and @jcarstairs-scottlogic.
Fixed
Fixed types compatability with Lodash's
flow
and fp-ts'spipe
. (#3641)Fixed inconsistent behavior of
roundToNearestMinutes
.Added
format
,lightFormat
, andparse
internals that enable 3rd-parties to consume those.v3.1.0
Compare Source
This release is brought to you by @kossnocorp, @makstyle119 and @dmgawel.
Fixed
Added
Added
yearsToDays
function.Added warning about using protected tokens like
Y
orD
without passing a corresponding option. See #2950.v3.0.6
Compare Source
On this release worked @imwh0im, @jamcry and @tyrw.
Fixed
areIntervalsOverlapping
caused by incorrect sorting (#3614)v3.0.5
Compare Source
This release is brought to you by @goku4199.
Fixed
toDate
not processing string arguments properlyv3.0.4
Compare Source
This release is brought to you by @kossnocorp.
Fixed
v3.0.3
Compare Source
Fixed
d.ts
files. Instead now it copies the content to avoid the Masquerading as CJS problem reported by "Are the types wrong?".v3.0.2
Compare Source
Fixed
Fixed yet another issue caused by ESM types by pointing to the same
d.ts
files.Added
package.json
to exports to provide access to tooling.Fixed TypeScript 5.4 build break by using the latest type names.
v3.0.1
Compare Source
Fixed
d.mts
files exporting only types.v3.0.0
Compare 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.mjs
extension.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.ts
files for more information.BREAKING:
constants
now 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
Interval
arguments 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.areIntervalsOverlapping
normalize 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 theinclusive
option is passed. Otherwise, and when even one of the intervals has both properties invalid, the function will always returnfalse
.getOverlappingDaysInIntervals
now 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.isWithinInterval
now 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.intervalToDuration
now 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 thestep
option now also allow negative, 0, and NaN values and return reversed results if the step is negative and an empty array otherwise.BREAKING:
intervalToDuration
now skips 0 values in the resulting duration, resulting in more compact objects with only relevant properties.BREAKING:
roundToNearestMinutes
now returnsInvalid Date
instead of throwing an error whennearestTo
option is less than 1 or more than 30.BREAKING: IE is no longer supported.
BREAKING: Now all functions use
Math.trunc
rounding method where rounding is required. The behavior is configurable on a per-function basis.BREAKING: Undocumented
onlyNumeric
option was removed fromnn
andsv
locales. 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
, andeachYearOfInterval
now accept thestep
option like most of the eachXOfInterval functions.A new
interval
function that validates interval, emulating the v2 interval functions behavior.differenceInX
functions now accept options and allow setting uproundingMethod
that configures how the result is rounded.Math.trunc
is the default method.v2.30.0
Compare Source
Kudos to @kossnocorp and @Andarist for working on the release.
Changes
v2.29.3
Compare 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.2
Compare Source
This release is brought to you by @nopears, @vadimpopa and @leshakoss.
Fixed
Fixed
sv
locale abbreviated months matcher.Fixed
uk
locale abbreviated months matcher.Fixed a breaking change in
intervalToDuration
by removing a recently introduced RangeError.v2.29.1
Compare Source
Thanks to @fturmel for working on the release.
Fixed
v2.29.0
Compare 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
intlFormatDistance
function`.Added
setDefaultOptions
andgetDefaultOptions
functions that allow you to set default default locale,weekStartsOn
andfirstWeekContainsDate
.Added
roundingMethod
option 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
formatRelative
in the Portuguese locale (pt
).Fixed
intervalToDuration
being off by 1 day sometimes.Fixed ordinal number formatting in Italian locale (
it
).Fixed issue parsing months in Croatian (
hr
), Georgian (ka
) and Serbian (sr
andsr-Latn
) locales.Changed
Replaced
git.io
links with full URLs in error messages.Internal: removed "v2.0.0 breaking changes" section from individual function docs
v2.28.0
Compare 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
K
token to be used witha
orb
inparse
.v2.27.0
Compare Source
Kudos to @tan75, @hg-pyun, @07akioni, @razvanmitre, @Haqverdi, @pgcalixto, @janziemba, @fturmel, @JuanM04, @zhirzh, @seanghay, @bulutfatih, @nodeadtree, @cHaLkdusT, @a-korzun, @fishmandev, @wingclover, @Zacharias3690, @kossnocorp and @leshakoss for working on the release.
Fixed
Fixed translation for quarters in
format
in Chinese Simplified locale (zh-CN
).Fixed
P
token informat
for Romanian locale (ro
).Fixed era and month formatters in Azerbaijani locale (
az
).Fixed
formatRelative
patterns in Georgian locale (ka
).Fixed regular expressions for
parse
in Estonian locale (er
).Fixed the format of zeros in
formatDuration
in Czech locale (cs
).Fixed ordinal formatting for years, weeks, hours, minutes and seconds in
fr
,fr-CA
andfr-CH
locales.Fixed constants not having proper TypeScript and Flow types.
Fixed translation for Monday in Turkish locale (
tr
).Fixed
eachMinuteOfInterval
not handling intervals less than a minute correctly.Fixed flow types for
closestTo
andclosestIndexTo
.Added
km
).v2.26.0
Compare Source
Thanks to @kossnocorp, @leshakoss, @tan75, @gaplo, @AbdAllahAbdElFattah13, @fturmel, @kentaro84207, @V-Gutierrez, @atefBB, @jhonatanmacazana, @zhirzh, @Haqverdi, @mandaputtra, @micnic and @rikkalo for working on the release.
Fixed
Fixed
formatRelative
format forlastWeek
in Spanish locale.Fixed translation for October in Hindi locale.
Fixed Azerbaijani locale to use correct era matchers for
parse
.Added the functions that use
weekStartsOn
andfirstWeekContainsDate
that were missing from theLocale
documentation page.Changed
Added
Added Irish English locale (
en-IE
).Added Arabic locale (
ar
). (#1670)Added Hong Kong Traditional Chinese locale (zh-HK). (#2684)
Added Egyptian Arabic locale (ar-EG).
v2.25.0
Compare Source
This release is brought to you by @kossnocorp, @gierschv, @fturmel, @redbmk, @mprovenc, @artyom-ivanov and @tan75.
Added
Added Japanese Hiragana locale (
ja-Hira
).Added standalone months support to
de
andde-AT
locales.v2.24.0
Compare Source
Kudos to Sasha Koss, Lucas Silva, Jan Ziemba, Anastasia Kobzar, Deepak Gupta, Jonas L, Kentaro Suzuki, Koussay Haj Kacem, fturmel, Tan75 and Adriaan Callaerts for working on the release.
Fixed
Changed
Used
1
instead ofein
for GermanformatDuration
to make it consistent with other locales and formats. (#2505)Made Norwegian
formatDuration
consistent with other locales by using numeric representation instead of written. (#2469)Use the word "sekunda" instead of "vteřina" for second in the Czech locale.
Made Flemish short date format corresponds to the Flemish government.
Added
Added
roundingMethod
option todifferenceInHours
,differenceInMinutes
,differenceInQuarters
,differenceInSeconds
anddifferenceInWeeks
withtrunc
as the default method. (#2555)Added new functions:
previousDay
,previousMonday
,previousTuesday
,previousWednesday
,previousThursday
,previousFriday
,previousSaturday
andpreviousSunday
.v2.23.0
Compare Source
Thanks to Liam Tait, fturmel, Takuya Uehara, Branislav Lazic, Seyyed Morteza Moosavi, Felipe Armoni, Sasha Koss, Michael Mok, Tan75 and Maxim Topciu for working on the release.
Changed
Improved
nextDay
performance by roughly 50%.Added more ordinal formatting to the Japanese locale.
Added
Added a new
clamp
function that allows to bound a date to an interval.Added Bosnian locale (bs).
Allowed passing
undefined
in the duration to add and sub functions.v2.22.1
Compare Source
Thanks to Sasha Koss for working on the release.
Fixed
v2.22.0
Compare Source
Sasha Koss, Lucas Silva, Lay, jwbth, fturmel, Tan75 and Anastasia Kobzar worked on this release.
Fixed
Fixed Taiwanese locale to use traditional Chinese and removed unnecessary spaces.
Fixed Russian locale to use correct long formats.
Added
daysToWeeks
hoursToMilliseconds
hoursToMinutes
hoursToSeconds
millisecondsToHours
millisecondsToMinutes
millisecondsToSeconds
minutesToHours
minutesToMilliseconds
minutesToSeconds
monthsToQuarters
monthsToYears
quartersToMonths
quartersToYears
secondsToHours
secondsToMilliseconds
secondsToMinutes
weeksToDays
yearsToMonths
yearsToQuarters
v2.21.3
Compare Source
This release is brought to you by Maxim Topciu.
Fixed
v2.21.2
Compare Source
Kudos to Aleksei Korzun, Maxim Topciu, Jonas L, Mohammad ali Ali panah and Tan75 for working on the release.
Fixed
differenceInBusinessDays
now returnsNaN
instead ofInvalid Date
when an invalid argument is passed to the function.Fixed
weekStartsOn
in Persian locale.v2.21.1
Compare Source
Thanks to Sasha Koss for working on the release.
Fixed
v2.21.0
Compare Source
This release is brought to you by Aleksei Korzun, Tan75, Rubens Mariuzzo, Christoph Stenglein and Clément Tamisier.
Fixed
formatDistanceStrict
return12 months
instead of1 year
whenunit: 'month'
.Added
ht
) locale.de-AT
) locale.v2.20.3
Compare Source
Kudos to fturmel for working on the release.
Fixed
v2.20.2
Compare Source
Kudos to Maxim Topciu for working on the release.
Fixed
v2.20.1
Compare Source
This release is brought to you by Sasha Koss and Tan75.
Fixed
isDate
Flow typings that we broke inv2.20.0
.v2.20.0
Compare Source
This release is brought to you by Sasha Koss, Maxim Topciu, tu4mo, Tan75, Ardit Dine, Carl Rosell, Roman Mahotskyi, Mateusz Krzak, fgottschalk, Anastasia Kobzar, Bilguun Ochirbat, Lesha Koss, YuLe and guyroberts21.
Fixed
Made
formatDistanceStrict
andformatDistanceToNowStrict
always return1 year
instead of12 months
. (#2388)Fixed
nextDay
,nextMonday
andnextTuesday
missing in exports and type definitions. (#2325)Fixed a DST bug in
formatDistanceStrict
. (#2307)Added
Added new
eachMinuteOfInterval
function.Added Albanian (
sq
) localeAdded Mongolian (
mn
) localeAdded
nextWednesday
,nextThursday
,nextFriday
,nextSaturday
andnextSunday
.v2.19.0
Compare Source
Tan75 worked on this release.
Fixed
Assigned the correct
firstWeekContainsDate
value (4
) for the French locale. (#2148)Fixed torsdag abbreviation in the Swedish locale.
Fixed a bug in
differenceInMonths
andintervalToDuration
that occurs when dealing with the 28th of February. (#2255)Added
nextDay
,nextMonday
andnextTuesday
that allows getting the next day of the week, Monday or Tuesday respectively.v2.18.0
Compare Source
Thanks to Tan75 and Lesha Koss.
Fixed
Fixed documentation missing for
intlFormat
. (#2258)Fixed date formats in the Latvian locale. (#2202)
Added
parseJSON
. (#2149)v2.17.0
Compare Source
Kudos to @shaykav, @davidgape89, @rikkalo, @tan75, @talgautb, @owenl131, @kylesezhi, @inigoiparragirre, @gius, @Endeauvirr and @frankyston.
Fixed
Fixed Russian locale parsing issue.
Fixed
differenceInMonths
for edge cases, such as the end of February dates.Fixed suffixes for the Kazakh locale.
Fixed
formatDuration
week translation inpt
andpt-BR
locales.Made Japanese locale to use the correct value for the start of the week.
Adjusted date formats in the Basque locale.
Fixed the short and medium date formats in the Czech locale.
Adjusted the Polish translations of
formatDistance
.Fixed the week's abbreviations in the Brazilian Portuguese.
Added
Added
intlFormat
a lightweight formatting function that uses Intl API. Eventually, it will become the default formatting function, so it's highly recommended for new code.Added
en-ZA
locale.Added an ability to format lowercase am/pm with
aaa
andbbb
tokens.Added ordinal formatting for Japanese year values.
v2.16.1
Compare Source
Kudos to @aleksaps, @leedriscoll and @BanForFun for pull-requests!
Fixed
formatRelative
.v2.16.0
Compare Source
Kudos to @jvpelt, @piotrl, @yotamofek, @dwaxweiler, @leedriscoll and @bradevans for working on the release. Also thanks to @PascalHonegger, @pickfire, @TheJaredWilcurt, @SidKH and @nfantone for improving the documentation.
Fixed
1 minute
and2 days
.formatRFC3339
formatting timezone offset with minutes.formatDuration
Changed
Added
v2.15.0
Compare Source
Thanks to @belgamo, @Matsuuu, @Imballinst, @arsnyder16, @pankajupadhyay29, @DCBN, @leedriscoll, @gottsohn, @mukuljainx and @dtriana for working on the release. Also kudos to @KidkArolis, @imgx64, @fjc0k, @wmonk, @djD-REK, @dandv, @psimk and @brimworks for improving the documentation.
Fixed
addBusinessDays
when input date is a weekend day.parseISO
not returningInvalid Date
on incorrect string when there are spaces in it.es
round-tripping dates with Wednesday.d
/EEEE
ordering in tokens likePPPPP
.Changed
Added
fr-CH
locale.nl-BE
locale.gd
locale.en-NZ
locale.isMatch
function.v2.14.0
Compare Source
Kudos to @julamb, @JacobSoderblom, @justingrant, @dragunoff, @jmate0321, @gbhasha, @rasck, @AlbertoPdRF, @sebastianhaberey and @giogonzo for working on the release!
Fixed
add
,addDays
andaddMonths
.formatDistance
strings in the Hungarian locale.formatLong
in the Spanish locale.formatRelative
in the Italian locale.Added
eachQuarterOfInterval
.eu
) locale.en-IN
) locale.eachHourOfInterval
.v2.13.0
Compare Source
Thanks to @JorenVos, @developergouli, @rhlowe and @justingrant for working on the release!
Fixed
differenceInDays
DST behavior broken in 2.12.0.Added
formatISODuration
function.intervalToDuration
function.v2.12.0
Compare Source
Kudos to @leshakoss, @skyuplam, @so99ynoodles, @dkozickis, @belgamo, @akgondber, @dcousens and @BoomDev for working on the release!
Fixed
setDay
withweekStartsOn
!= 0.Added
formatDistanceToNowStrict
.v2.11.1
Compare Source
Fixed
v2.11.0
Compare Source
Kudos to @oakhan3, @Mukhammadali, @altrim, @leepowellcouk, @amatzon, @bryanMt, @kalekseev, @eugene-platov and @tjrobinson for working on the release.
Fixed
differenceInYears
causing incorrect results when the left date is a leap day.parseISO
to work correctly around time shift dates.format
to work correctly with GMT-0752/GMT-0456 and similar timezones.Changed
getDay
typings to return0|1|2|3|4|5|6
instead ofnumber
.ordinalNumber
function behavior.formatRelative
depending on if it's a current week or not.Added
uz
locale.mt
locale.v2.10.0
Compare Source
Fixed
formatISO
when formatting time with timezones with minute offsets > 0. Kudos to @dcRUSTy.Fixed
Added
weeks
toDuration
.weeks
support toadd
andsub
.throwProtectedError
.v2.9.0
Compare Source
Thanks to @mborgbrant, @saintplay, @mrenty, @kibertoad, @levibuzolic, @Anshuman71, @talgautb, @filipjuza, @tobyzerner, @emil9453, @fintara, @pascaliske, @rramiachraf, @marnusw and @Imballinst for working on the release.
Fixed
formatISO
.Added
eachMonthOfInterval
andeachYearOfInterval
.inclusive
option to `areIntervalsOverlapping.isExists
function that checks if the given date is exists.add
function to add seconds, minutes, hours, weeks, years in single call.sub
function, the opposite ofadd
.Duration
type used inadd
andsub
.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.