Frontmatter
| id | 8454 |
| title | Update release index generation to use correct path in resources/content |
| state | Closed |
| labels | airefactoring |
| assignees | tobiu |
| createdAt | Jan 9, 2026, 10:28 AM |
| updatedAt | Jan 9, 2026, 10:30 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8454 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 9, 2026, 10:30 AM |
Update release index generation to use correct path in resources/content
tobiu assigned to @tobiu on Jan 9, 2026, 10:28 AM

tobiu
Jan 9, 2026, 10:30 AM
Input from Gemini 3 Pro:
✦ Successfully updated
buildScripts/createReleaseIndex.mjsto read fromresources/content/release-notesand generate paths starting withresources/content/release-notes/.Regenerated
apps/portal/resources/data/releases.jsonwith the new path structure. Example entry:{ "date": "2026-01-09T01:06:42Z", "title": "Neo.mjs v11.19.0 Release Notes", "path": "resources/content/release-notes/v11.19.0.md", "id": "11.19.0", "parentId": "v11" }
tobiu closed this issue on Jan 9, 2026, 10:30 AM
The
buildScripts/createReleaseIndex.mjsscript currently points to the old release notes location (.github/RELEASE_NOTES).Since release notes have been moved to
resources/content/release-notes, the script needs to be updated to:resources/content/release-notes.resources/content/release-notes/${filename}.This ensures the Portal app can correctly load the release notes.