From 17e8ff4a65e93122fed032991940ff0289e592ca Mon Sep 17 00:00:00 2001 From: Josh Guilfoyle Date: Wed, 20 Jan 2016 17:31:49 -0800 Subject: [PATCH 1/2] Update CHANGELOG.md to v1.3.0 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d21bf5c..8843fc12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,38 @@ Change Log ========== +## Version 1.3.0 + +_2016-01-20_ + + * **okhttp3 support!** + A new module, stetho-okhttp3, has been added which supports the new + okhttp3 APIs. Note that stetho-okhttp is now deprecated. + + * **Removed Apache HttpClient dependency** + A new, lightweight HTTP server implementation replaces it in Stetho + and the dumpapp protocol has been modified to no longer use HTTP. + Old dumpapp scripts will still work with new clients, however the + opposite will hang! + + * **Custom database drivers** + Completely custom or ContentProvider-based database drivers are available + which allow greater inspection options with some configuration. See + `DefaultInspectorModulesBuilder#provideDatabaseDriver`. + + * New #282: Show view margins in "Styles" subtab. + * New #289: Show SQLite views as tables. + * New #294: dumpapp now responds to `STETHO_PROCESS` env variable in addition + to the `--process` flag. + * Fix #286: Minor JsConsole improvements. + * Fix #297: Sort CSS properties by name. + * Fix #292: Minor JSON serialization fixes. + * Fix #299: Memory leak fixes in view inspection (still some likely remain). + * Fix #305: Add proguard rules to stetho-js-rhino aar artifact. + * Fix #313: Work around issues formatting `Long.MIN_VALUE` and possibly others + when showing in the database view. + * Fix #332: NPE in ShadowDocument.getGarbageElements(). + ## Version 1.2.0 _2015-09-11_ From 7d2ce3d8b8080319fb55e557867c4b65102045a2 Mon Sep 17 00:00:00 2001 From: Josh Guilfoyle Date: Wed, 20 Jan 2016 17:49:37 -0800 Subject: [PATCH 2/2] Bump version to 1.3.0 --- README.md | 10 +++++----- gradle.properties | 2 +- stetho-js-rhino/README.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b052ac82..ba7742f5 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 -compile 'com.facebook.stetho:stetho:1.2.0' +compile 'com.facebook.stetho:stetho:1.3.0' ``` or Maven: ```xml com.facebook.stetho stetho - 1.2.0 + 1.3.0 ``` Only the main `stetho` dependency is strictly required; however, you may also wish to use one of the network helpers: ```groovy -compile 'com.facebook.stetho:stetho-okhttp:1.2.0' +compile 'com.facebook.stetho:stetho-okhttp:1.3.0' ``` or: ```groovy -compile 'com.facebook.stetho:stetho-urlconnection:1.2.0' +compile 'com.facebook.stetho:stetho-urlconnection:1.3.0' ``` You can also enable a JavaScript console with: ```groovy -compile 'com.facebook.stetho:stetho-js-rhino:1.2.0' +compile 'com.facebook.stetho:stetho-js-rhino:1.3.0' ``` 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 05d8bec1..e808544a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -VERSION_NAME=1.2.1-SNAPSHOT +VERSION_NAME=1.3.0 GROUP=com.facebook.stetho diff --git a/stetho-js-rhino/README.md b/stetho-js-rhino/README.md index 3b39dd41..4ae7a6d7 100644 --- a/stetho-js-rhino/README.md +++ b/stetho-js-rhino/README.md @@ -7,14 +7,14 @@ This [Stetho](https://facebook.github.io/stetho) plugin adds a JavaScript consol ### Download Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle: ```groovy -compile 'com.facebook.stetho:stetho-js-rhino:1.2.0' +compile 'com.facebook.stetho:stetho-js-rhino:1.3.0' ``` or Maven: ```xml com.facebook.stetho stetho-js-rhino - 1.2.0 + 1.3.0 ```