From 05ef192168b673c097547996f82597bcd41d19d1 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 19 Jun 2025 16:10:38 +0100 Subject: [PATCH] bugtriage: consider more point releases as in the future There is a bug which has the Target Milestone of 5.0.15 and appears in the Old Milestone list despite the latest 5.0.x release being 5.0.10. This happened because we only considered the next three point releases, so extend the list of future point releases to ten to ensure that we include all realistic versions. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- scripts/dashboard/bugtriage/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dashboard/bugtriage/index.html b/scripts/dashboard/bugtriage/index.html index 19f6675..1cca492 100644 --- a/scripts/dashboard/bugtriage/index.html +++ b/scripts/dashboard/bugtriage/index.html @@ -318,8 +318,8 @@ parts.length = 3; parts.fill(0, origlen); - // Add the next three point releases - for (let i = 0; i < 3; i++) { + // Add the next ten point releases to be sure we cover all the future releases. + for (let i = 0; i < 10; i++) { // Let JavaScript so-called-typing ignore the fact that we're incrementing a string parts[parts.length - 1]++; active.push(parts.join("."));