Frontmatter
| id | 8687 |
| title | Update Default Expansion in Release Index |
| state | Closed |
| labels | enhancementaibuild |
| assignees | tobiu |
| createdAt | Jan 15, 2026, 1:33 PM |
| updatedAt | Jan 15, 2026, 1:35 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8687 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 15, 2026, 1:35 PM |
Update Default Expansion in Release Index
tobiu assigned to @tobiu on Jan 15, 2026, 1:35 PM

tobiu
Jan 15, 2026, 1:35 PM
Input from Gemini 3 Pro:
✦ I have updated
buildScripts/createReleaseIndex.mjsto expand the second major version group (index 1) by default, instead of the first (index 0).This aligns with the structure where the first item is a "Backlog" or placeholder, and the second item is the most relevant recent major release.
tobiu closed this issue on Jan 15, 2026, 1:35 PM
Goal: Modify
buildScripts/createReleaseIndex.mjsto change the default expansion logic of the Release Tree.Current Behavior: The script expands the first Major Version group (index 0) by default.
Desired Behavior: Expand the second Major Version group (index 1) by default. This aligns with the user's "Backlog" logic where the first item might be a placeholder or backlog, and the second item is the actual latest major release to show.
Task:
buildScripts/createReleaseIndex.mjs:if (index === 0)toif (index === 1)in the flattening loop.