diff mbox series

[yocto-autobuilder-helper] bugtriage: consider more point releases as in the future

Message ID 20250619151038.1773147-1-ross.burton@arm.com
State New
Headers show
Series [yocto-autobuilder-helper] bugtriage: consider more point releases as in the future | expand

Commit Message

Ross Burton June 19, 2025, 3:10 p.m. UTC
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 <ross.burton@arm.com>
---
 scripts/dashboard/bugtriage/index.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/scripts/dashboard/bugtriage/index.html b/scripts/dashboard/bugtriage/index.html
index 19f66759..1cca4928 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("."));