Fix RFC 3339 date-time validation with high-precision fractional seconds - #940
Open
UmairRathore wants to merge 1 commit into
Open
Fix RFC 3339 date-time validation with high-precision fractional seconds#940UmairRathore wants to merge 1 commit into
UmairRathore wants to merge 1 commit into
Conversation
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.
Description
Fix RFC 3339
date-timevalidation for timestamps containing more than six fractional-second digits.RFC 3339 allows one or more digits in the fractional-second component, but PHP's
DateTimeImmutable::createFromFormat()only accepts up to six microsecond digits.The full input continues to be validated by the existing RFC 3339 pattern. Only the fractional component passed internally to
DateTimeImmutableis truncated to six digits, avoiding PHP's parser limitation without rejecting otherwise valid RFC 3339 timestamps.Regression tests have been added for fractional seconds beyond six digits, including timezone offsets.
Related Issue
Fixes #929
Type of Change
Checklist
Additional Notes
Tested with:
The existing PHPUnit warning is unchanged from the pre-change baseline.