(deps: LatestReleaseFetcherDeps)
| 269 | } |
| 270 | |
| 271 | function defaultFetchLatestRelease(deps: LatestReleaseFetcherDeps): Promise<LatestRelease> { |
| 272 | return fetchLatestReleaseFromGitHub( |
| 273 | deps.repositoryOwner, |
| 274 | deps.repositoryName, |
| 275 | deps.currentVersion, |
| 276 | ); |
| 277 | } |
| 278 | |
| 279 | // --- Release notes fetch --- |
| 280 |
no test coverage detected