-
Notifications
You must be signed in to change notification settings - Fork 1
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
refactor: Remove Temporal and only use date-fns #317
Conversation
Check out the recent updates to your Headless Platform preview environment:
Learn more about preview environments in our documentation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR refactors the code to remove the dependency on Temporal in favor of date-fns and date-fns-tz.
- Removed Temporal imports and related calls in favor of date-fns/date-fns-tz functions
- Updated date handling in both feed generation and API response headers to use standard Date objects and date-fns functions
Reviewed Changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
File | Description |
---|---|
src/lib/feed.js | Replaced Temporal with date-fns-tz for generating formatted dates in the feed |
src/pages/api/feeds/[feed-type].js | Removed Temporal usage and updated date parsing and header formatting with date-fns functions |
Files not reviewed (1)
- package.json: Language not supported
Comments suppressed due to low confidence (2)
src/lib/feed.js:59
- Ensure that using new Date() together with the provided timeZone option in date-fns-tz produces the exact behavior previously achieved by Temporal.Now.plainDateISO; verify that the current date used here aligns correctly with the intended timezone.
copyright: format(new Date(), "yyyy", {
src/pages/api/feeds/[feed-type].js:82
- Verify that new Date(if_modified_since) reliably creates a valid Date object from the header value; consider adding error handling or validation if there's a risk of an invalid date causing unexpected comparisons.
compareAsc(last_modified, new Date(if_modified_since)) < 0) // Replaced Temporal.PlainDateTime.compare
Check out the recent updates to your Headless Platform preview environment:
Learn more about preview environments in our documentation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀 🚀 🚀
That looks like a really good library too for dates.
I also manually reviewed and validated the sitemap using - https://www.xml-sitemaps.com/validate-xml-sitemap.html


We were using both. Switched to date-fns only