Skip to content

Commit

Permalink
Merge pull request #338 from jasta/release-v1.3.0
Browse files Browse the repository at this point in the history
Release v1.3.0
  • Loading branch information
jasta committed Jan 21, 2016
2 parents c17c900 + 7d2ce3d commit fe9caee
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 8 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
```

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/).

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION_NAME=1.2.1-SNAPSHOT
VERSION_NAME=1.3.0
GROUP=com.facebook.stetho
4 changes: 2 additions & 2 deletions stetho-js-rhino/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho-js-rhino</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
```

Expand Down

0 comments on commit fe9caee

Please sign in to comment.