Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading