11 lines
1.2 KiB
Markdown
11 lines
1.2 KiB
Markdown
# 2026-02-23 Session Notes
|
|
|
|
## Changelog + Public Roadmap Implementation
|
|
|
|
Session began with detailed plan delivery for implementing automated changelog generation and public roadmap visibility for Signet. The plan spans five tasks: creating a changelog script, modifying CI workflow, creating roadmap file, bootstrapping changelog with historical releases, and adding npm script.
|
|
|
|
The changelog script should parse conventional commits between git tags, group by type (Features, Bug Fixes, Performance, Refactoring, Docs), and omit chore/ci/test/style commits. It follows patterns from existing `version-sync.ts` script using execSync and fs utilities with strict TypeScript.
|
|
|
|
Roadmap file will track current focus (0.2.x procedural memory work), planned items (0.3.x wallet auth), exploring ideas, and recently shipped releases. CHANGELOG.md gets bootstrapped with historical releases 0.1.70-0.1.80 to seed the file before CI automation takes over.
|
|
|
|
CI workflow modification adds changelog generation to release process, appending CHANGELOG.md to the release commit alongside version bumps. Implementation strategy involves parallelizing work: changelog script + bootstrap vs roadmap creation, with workflow and package.json modifications as quick follow-ups. |