You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Daylight saving times are extremly complex, and should probably be handled only with IANA Timezones (see (like Europe/Paris). They are supported by the Intl library and by the dayjs module. To get a glimpse of this complexity, one can check How to Read the tz Database Source Files
The text was updated successfully, but these errors were encountered:
In timezone.ts, CET is defined as mixed timezone, with daylight saving time, like PT (Pacific Time) or some others.
This is not the case. CET is the standard time in Europe, used during the winter. It should just be defined
This introduces confusion and unexpected results when using date/time with explicit mention of CET.
This can be verified for example here.
Daylight saving times are extremly complex, and should probably be handled only with IANA Timezones (see (like
Europe/Paris
). They are supported by the Intl library and by the dayjs module. To get a glimpse of this complexity, one can check How to Read the tz Database Source FilesThe text was updated successfully, but these errors were encountered: