* Get the path for the cached changelog file. * The changelog is stored at ~/.claude/cache/changelog.md
()
| 35 | * The changelog is stored at ~/.claude/cache/changelog.md |
| 36 | */ |
| 37 | function getChangelogCachePath(): string { |
| 38 | return join(getClaudeConfigHomeDir(), 'cache', 'changelog.md') |
| 39 | } |
| 40 | |
| 41 | // In-memory cache populated by async reads. Sync callers (React render, sync |
| 42 | // helpers) read from this cache after setup.ts awaits checkForReleaseNotes(). |
no outgoing calls
no test coverage detected