diff --git a/CHANGELOG.md b/CHANGELOG.md index 35bb8347..d76f52a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ Change Log ========== +## Version 1.5.1 +_2019-03-17_ + + * **Fix view inspection crash on Android P+** + View highlighting was using a legacy pre-O API which was removed in P that caused + a crash when highlighting a view in the Elements tab. This has now been fixed (#607) + and the Elements tab is expected to work normally again. + + * Fix #325/295: Add ability to track windows in Elements tab (dialog, popups, etc) + * Fix #614: Add the ability to manually control Runtime class object tracking (for + J2V8 integration) + * Fix #612/613: Fix issue subclassing Runtime class and other devtools domain modules + * Fix #602: Make it possible to change welcome banner (see Page class constructor) + * Fix #600: Actually make .remove() method work properly in DefaultDumperPluginsBuilder + * Fix #596: Sort SharedPreferences entries + * Fix #623: dumpapp now supports ADB_SERVER_SOCKET variable + * Fix #589: Fix parsing issue using dumpapp script causing failure to connect + * Fix #529: WebSocket session info now displayed correctly on upgrade + * Fix #541/580: Avoid crash when installing the Stetho interceptor in the + wrong okhttp chain (the request chain lacks a connection instance) + ## Version 1.5.0 _2017_04_13_ diff --git a/README.md b/README.md index b43c5cc3..3738cec5 100644 --- a/README.md +++ b/README.md @@ -15,31 +15,31 @@ begin. ### Download Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle: ```groovy -implementation 'com.facebook.stetho:stetho:1.5.0' +implementation 'com.facebook.stetho:stetho:1.5.1' ``` or Maven: ```xml com.facebook.stetho stetho - 1.5.0 + 1.5.1 ``` Only the main `stetho` dependency is strictly required; however, you may also wish to use one of the network helpers: ```groovy -implementation 'com.facebook.stetho:stetho-okhttp3:1.5.0' +implementation 'com.facebook.stetho:stetho-okhttp3:1.5.1' ``` or: ```groovy -implementation 'com.facebook.stetho:stetho-urlconnection:1.5.0' +implementation 'com.facebook.stetho:stetho-urlconnection:1.5.1' ``` You can also enable a JavaScript console with: ```groovy -implementation 'com.facebook.stetho:stetho-js-rhino:1.5.0' +implementation 'com.facebook.stetho:stetho-js-rhino:1.5.1' ``` For more details on how to customize the JavaScript runtime see [stetho-js-rhino](stetho-js-rhino/). diff --git a/gradle.properties b/gradle.properties index 74bca924..dc392308 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,5 +16,5 @@ org.gradle.jvmargs=-Xmx1536m # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=1.5.1-SNAPSHOT +VERSION_NAME=1.5.1 GROUP=com.facebook.stetho