diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cad381..64bf50e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## Version 0.0.15 + +* Harden chunked stat loading so incomplete chunked reports fail visibly instead of falling back to empty legacy stats. +* Add per-request timeouts and retries for manifest/chunk JSON loading, while preserving legacy loading when chunk transport is unavailable. +* Route chunk, timeout, and decode failures through report load-failure state and show stat load failures on stat detail pages. + +**Full Changelog**: https://github.com/square/invert/compare/0.0.14...0.0.15 + ## Version 0.0.14 * Add chunked JSON transport for large stat payloads. Stats exceeding 2 MB are split into parallel-fetchable chunks alongside the legacy single-file JS. The runtime tries chunked loading first and falls back to legacy if no manifest is found. diff --git a/README.md b/README.md index 877d9bc..07009d9 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ Invert is a Gradle Plugin with a dynamic web report that lets you gain insights ``` // Root build.gradle plugins { - id("com.squareup.invert") version "0.0.14" + id("com.squareup.invert") version "0.0.15" } repositories { mavenCentral() // Released Versions diff --git a/gradle.properties b/gradle.properties index 7306563..2d696c8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx16g kotlin.code.style=official android.useAndroidX=true group=com.squareup.invert -version=0.0.15-SNAPSHOT +version=0.0.15 # https://kotlinlang.org/docs/dokka-migration.html#enable-migration-helpers org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled