Skip to content

Commit 0300bb9

Browse files
committed
fix: address PR review comments on roadmap documentation
- Remove hard-coded test counts from architecture tree to avoid doc drift - Clarify layered caching (server TTL + HTTP Cache-Control) and worst-case staleness of ~10-11 minutes in the intro Signed-off-by: Asitha De Silva <asithade@gmail.com> Signed-off-by: Asitha de Silva <asithade@gmail.com>
1 parent d573ce6 commit 0300bb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/public-roadmap.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Public Product Roadmap
55

6-
The LFX Changelog includes a public-facing product roadmap that displays ideas from Jira in a kanban board layout. Roadmap data is **fetched from Jira and cached server-side** (no database persistence) with a 5-minute TTL, so displayed data may lag behind Jira by several minutes.
6+
The LFX Changelog includes a public-facing product roadmap that displays ideas from Jira in a kanban board layout. Roadmap data is **fetched from Jira and cached server-side** (no database persistence) with a 5-minute TTL and is also cacheable by browsers and intermediaries via HTTP `Cache-Control` headers (`max-age=300`, `stale-while-revalidate=60`). In edge cases, this layered caching can cause the displayed data to lag behind Jira by up to roughly 10--11 minutes.
77

88
## Overview
99

@@ -260,7 +260,7 @@ apps/lfx-changelog/e2e/
260260
│ └── roadmap-board.page.ts # Playwright page object
261261
└── specs/
262262
├── public/
263-
│ └── roadmap-board.spec.ts # UI tests (24 tests)
263+
│ └── roadmap-board.spec.ts # UI tests
264264
└── api/
265-
└── public-roadmap.api.spec.ts # API contract tests (18 tests)
265+
└── public-roadmap.api.spec.ts # API contract tests
266266
```

0 commit comments

Comments
 (0)