From ee914e729c0e29a9b915842a6450dea603503bfe Mon Sep 17 00:00:00 2001 From: Cam Saul <1455846+camsaul@users.noreply.github.com> Date: Fri, 10 Jan 2020 17:38:20 -0800 Subject: [PATCH] core(pulse): fix year format (year-of-era vs week-based-year) (#11692) Related Documentation of date format: https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html In pulse notification I found out (works since yesterday until tonight) that a timetamp formatted by a Pulse would output "Dec 31, 2020" for today's date (instead of "Dec 31, 2019"). This is because of the confusion between "YYYY" (the week based year, this week is the 1st week of 2020) and "yyyy" formatting (the era based year - thus the commonly expected year for a single day format). Co-authored-by: Paul B. <paul+gh@bonaud.fr> --- src/metabase/pulse/render/datetime.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/metabase/pulse/render/datetime.clj b/src/metabase/pulse/render/datetime.clj index 25e664a6b28..7f5ff516641 100644 --- a/src/metabase/pulse/render/datetime.clj +++ b/src/metabase/pulse/render/datetime.clj @@ -19,10 +19,10 @@ [timezone-id s col] (case (:unit col) ;; these types have special formatting - :hour (reformat-temporal-str timezone-id s "h a - MMM YYYY") + :hour (reformat-temporal-str timezone-id s "h a - MMM yyyy") :week (str "Week " (reformat-temporal-str timezone-id s "w - YYYY")) - :month (reformat-temporal-str timezone-id s "MMMM YYYY") - :quarter (reformat-temporal-str timezone-id s "QQQ - YYYY") + :month (reformat-temporal-str timezone-id s "MMMM yyyy") + :quarter (reformat-temporal-str timezone-id s "QQQ - yyyy") ;; no special formatting here : return as ISO-8601 ;; TODO: probably shouldn't even be showing sparkline for x-of-y groupings? @@ -30,7 +30,7 @@ s ;; for everything else return in this format - (reformat-temporal-str timezone-id s "MMM d, YYYY"))) + (reformat-temporal-str timezone-id s "MMM d, yyyy"))) (def ^:private RenderableInterval {:interval-start Temporal -- GitLab