Bump date-fns and date-fns-tz in /graph-tutorial
Bumps date-fns and date-fns-tz. These dependencies needed to be updated together.
Updates date-fns from 2.30.0 to 4.1.0
Release notes
Sourced from date-fns's releases.
v4.1.0
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
- Fixed internal
constructFromthrowing an exception onnullarguments. Whilenullisn't allowed, the functions should rather returnInvalid DateorNaNin such cases. See #3885.Added
- Added missing time zone support to
format,formatISO,formatISO9075,formatRelativeandformatRFC3339. See #3886.v4.0.0
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.
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:import { addDays, startOfDay } from "date-fns"; import { tz } from "@date-fns/tz";startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
//=> "2024-09-16T00:00:00.000+08:00"
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.clamp(Date.now(), { start: new TZDate(start, "Asia/Singapore"), end: new UTCDate(),
... (truncated)
Changelog
Sourced from date-fns's changelog.
v4.1.0 - 2024-09-17
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
- Fixed internal
constructFromthrowing an exception onnullarguments. Whilenullisn't allowed, the functions should rather returnInvalid DateorNaNin such cases. See #3885.Added
- Added missing time zone support to
format,formatISO,formatISO9075,formatRelativeandformatRFC3339. See #3886.v4.0.0 - 2024-09-16
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.
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:import { addDays, startOfDay } from "date-fns"; import { tz } from "@date-fns/tz";startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
//=> "2024-09-16T00:00:00.000+08:00"
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.clamp(Date.now(), {
... (truncated)
Commits
313b902Fix v4.1.0 change log entry26cd336Promote to v4.1.097b53b9Cover time zone edge cases59b7563Add missing time zone support to format, formatISO, formatISO9075, formatRela...0121164Prevent constructFrom from throwing an error on nullbd87ef5Update@date-fns/docs99b4e67Prepare v4.08df1706Rewrite the time zones doce351977Promote to v4.0.0-beta.18523656Fix scripts/test/types.sh- Additional commits viewable in compare view
Updates date-fns-tz from 2.0.1 to 3.2.0
Release notes
Sourced from date-fns-tz's releases.
v3.0.0
This release adds support for
date-fnsv3. Thank you@christopherklint97(#265) and everyone who helped test and fix the beta releases.BREAKING CHANGES
date-fnsv2 is no longer supported- Renamed
utcToZonedTimetotoZonedTimeto make the name less confusing, just search & replace- Renamed
zonedTimeToUtctofromZonedTimeto make the name less confusing, just search & replace- All functions are now exported using named exports, this requires changing direct imports from
import formatInTimeZone from 'date-fns-tz/formatInTimeZone'toimport { formatInTimeZone } from 'date-fns-tz/formatInTimeZone'- Functions now don’t check the number of passed arguments, delegating this task to type checkers similar to
date-fnsv3- Arguments are not explicitly converted to the target types; instead, they are passed as is, delegating this task to type checkers similar to
date-fnsv3- IE is no longer supported since
date-fnsno longer supports it- Removed
flowsupport sincedate-fnsalso removed it
Changelog
Sourced from date-fns-tz's changelog.
v3.2.0 (27 September 2024)
- [DEPS]
[email protected]supported (#301)- [PERFORMANCE] Make testDateFormatted static to avoid re-initialising it on every call (#297)
@hurali97- [ENHANCEMENT] Compatibility with
date-fnssetDefaultOptions(#286)@yangchristina- [DOCS] Fixed table of contents links (#284)
v3.1.3 (17 April 2024)
- [BUGFIX] Make
getTimeZoneOffset's 2nd arg optionalv3.1.2 (16 April 2024)
- [BUGFIX] Fix
formatInTimeZoneuse oftimeZonestring (#280)v3.1.1 (16 April 2024)
- [BUGFIX]
getTimeZoneOffset's 2nd arg should be optional (#281)v3.1.0 (15 April 2024)
- [REFACTOR] Full rewrite in TypeScript (#278) Thank you,
@brettwillis- [BREAKING CHANGE]
OptionsWithTZis now eitherFormatOptionsWithTZorToDateOptionsWithTZ, matchingdate-fnsv3.0.1 (10 April 2024)
- [BUGFIX] Fix named export typings (#277)
v3.0.0 (6 April 2024)
- [UPGRADE] Support
date-fnsv3 (#265) Thank you,@christopherklint97- [BUGFIX] Correct import of
date-fns@v3format and use Babel Webpack loader for mjs files (#271)- [BREAKING CHANGE]
date-fnsv2 is no longer supported- [BREAKING CHANGE] Renamed
utcToZonedTimetotoZonedTimeto make the name less confusing, just search & replace- [BREAKING CHANGE] Renamed
zonedTimeToUtctofromZonedTimeto make the name less confusing, just search & replace- [BREAKING CHANGE] All functions are now exported using named exports, this requires changing direct imports from
import formatInTimeZone from 'date-fns-tz/formatInTimeZone'toimport { formatInTimeZone } from 'date-fns-tz/formatInTimeZone'- [BREAKING CHANGE] Functions now don’t check the number of passed arguments, delegating this task to type checkers (This isn't fully implemented yet, but it should be the assumption moving forward, as it is in
date-fns)- [BREAKING CHANGE] Arguments are not explicitly converted to the target types. Instead, they are passed as is, delegating this task to type checkers (This isn't fully implemented yet, but it should be the assumption moving forward, as it is in
date-fns)- [BREAKING CHANGE] IE is no longer supported since
date-fnsno longer supports it- [BREAKING CHANGE] Removed
flowsupport sincedate-fnsalso removed it
Commits
b8820903.2.062b11e3Peer dep date-fns ^3.0.0 || ^4.0.0142a409Merge pull request #286 from yangchristina/get-default-options9877487Merge pull request #297 from callstack-internal/hur/perf/extract-testDateForm...772f07cMerge pull request #284 from yangchristina/docse7a6122Merge pull request #301 from eshimischi/master16a355bYarn: upgrade7ecd332Merge pull request #1 from eshimischi/eshimischi-patch-1a70c07adate-fns v4.1.079bb229perf: extract testDateFormatted to avoid re-initialising each time getDateTie...- Additional commits viewable in compare view
You can trigger a rebase of this PR 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 this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.