Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING(datetime): replace utc with timeZone option #5647

Merged
merged 2 commits into from
Aug 8, 2024

Conversation

timreichen
Copy link
Contributor

Changes
This PR changes the utc boolean option to timeZone with explicit "UTC" value option.

Reasoning
This makes the option extendable if needed and aligns the api to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString#using_options

@timreichen timreichen requested a review from kt3k as a code owner August 7, 2024 08:34
Copy link

codecov bot commented Aug 7, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 96.21%. Comparing base (4432ba1) to head (e94d96e).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5647      +/-   ##
==========================================
- Coverage   96.21%   96.21%   -0.01%     
==========================================
  Files         469      469              
  Lines       38181    38179       -2     
  Branches     5539     5538       -1     
==========================================
- Hits        36735    36733       -2     
  Misses       1404     1404              
  Partials       42       42              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Verified

This commit was signed with the committer’s verified signature.
ruyadorno Ruy Adorno
Copy link
Contributor

@iuioiua iuioiua left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems fine to me.

@kt3k
Copy link
Member

kt3k commented Aug 8, 2024

Our formatter seems only supporting utc and local timezones? (because we use Date under the hood). ref.

const utc = options.timeZone === "UTC";

Doesn't this give the false sense of other timezones being supported?

@timreichen
Copy link
Contributor Author

Our formatter seems only supporting utc and local timezones? (because we use Date under the hood). ref.

const utc = options.timeZone === "UTC";

Doesn't this give the false sense of other timezones being supported?

I think it is clear that only UTC is supported, because it is the only valid value. If you want we can add a check and throw an error for invalid timezone values (other than UTC here, or maybe even better case insensitive) like in Intl.DateTimeFormat.

@iuioiua
Copy link
Contributor

iuioiua commented Aug 8, 2024

My take: it doesn't matter too much, either way.

Copy link
Member

@kt3k kt3k left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@iuioiua iuioiua merged commit 4ec7dd4 into denoland:main Aug 8, 2024
13 checks passed
@timreichen timreichen deleted the datetime-timeZone-option branch August 17, 2024 23:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants