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