fetch Changelog
Fetches published changelog entries and release notes from GET /api/v1/public/apps/{appKey}/changelog.
Entries are returned in descending chronological order by ChangelogEntry.publishedAt (newest first).
Return
List of published ChangelogEntry objects.
Throws
on HTTP errors.
on network or parsing errors.
Example:
val changelog = client.fetchChangelog()
changelog.forEach { entry ->
println("${entry.versionLabel ?: "Release"}: ${entry.title}")
println(entry.body)
}Content copied to clipboard