From 963d9b7ba32cba536186b16e0dd8ddbc7a6801ed Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Sun, 22 Oct 2023 15:52:39 -0400 Subject: [PATCH] Add "firstRelDate" to versions.json We have this info available in the Version field and on the website, so making it available in a machine-readably way simplifies allowing people to access this data in a scriptable way. Author: Corey Huinker --- pgweb/core/json.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pgweb/core/json.py b/pgweb/core/json.py index 842dc529..1d0fa180 100644 --- a/pgweb/core/json.py +++ b/pgweb/core/json.py @@ -8,6 +8,7 @@ def version_to_json(version): 'major': str(version.numtree), 'latestMinor': str(version.latestminor), 'relDate': version.reldate, + 'firstRelDate': version.firstreldate, 'eolDate': version.eoldate, 'current': version.current, 'supported': version.supported,