fix(logger): accept resolvable IANA timezone aliases in timestamps - #5458
Merged
Conversation
…k timestamps consistent
Replace the Intl.supportedValuesOf('timeZone') membership check with
resolution-based validation via Intl.DateTimeFormat construction. The
canonical-only list rejected valid aliases such as Asia/Kolkata, causing
timestamps to mix UTC clock digits with the local offset and denote the
wrong instant. Resolution-based validation also stays correct when future
ICU versions flip the canonical list to IANA primary names.
When the timezone cannot be resolved (e.g. TZ=:/etc/localtime), fall back
to UTC for both the date digits and the offset suffix, and emit a one-time
warning instead of failing silently.
Fixes #5456
|
svozza
approved these changes
Jul 13, 2026
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.



Summary
The Logger validated the
TZtimezone againstIntl.supportedValuesOf('timeZone'), which contains canonical identifiers only. Valid IANA aliases likeAsia/Kolkata(the IANA primary name for India) were silently rejected, producing timestamps with UTC clock digits but a local offset suffix — i.e. the wrong instant. This PR switches to resolution-based validation, delegating alias knowledge entirely toIntl.DateTimeFormat, and makes the UTC fallback internally consistent and no longer silent.Changes
Intl.supportedValuesOf('timeZone')membership check inLogFormatterwith a try/catch aroundIntl.DateTimeFormatconstruction, so any timezone ICU can resolve (canonical or alias) is accepted; this also stays correct when future ICU versions flip the canonical list to IANA primary names (ECMA-402 change)+00:00when falling back to UTC, so an unresolvableTZ(e.g.:/etc/localtime, preserving the fix for Bug: logger breaks on nodejs Docker lambdas since 2.4.0 #2851) can no longer produce a timestamp mixing UTC digits with a non-zero local offsetAsia/Kolkataalias, offset consistency on fallback, and the one-time warningIssue number: closes #5456
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Disclaimer: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful.