Skip to content

Commit

Permalink
Merge pull request #526 from jasta/release-v1.5.0
Browse files Browse the repository at this point in the history
Release v1.5.0
  • Loading branch information
jasta authored Apr 13, 2017
2 parents d94f5cf + 8a9fb55 commit c15b552
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Change Log
==========

## Version 1.5.0
_2017_04_13_

* **Generic socket support**
Added the ability to inspect arbitrary sockets via Chrome devtools'
WebSocket APIs. This support is integrated into stetho-sample
as a demo, and in future releases we'd like to make it available
generically for at least okhttp customers.

* **Major Elements tab extensibility points**
Significant expansion to AndroidDocumentProviderFactory which allows
for a much greater degree of customization, including the
ability to have editable styles. Over time we'd like to incorporate
this support into native Android UI but also to make it even
easier to unlock powerful new customizations for custom view or
entire rendering systems.

* Fix #392: Fix database id mapping for multiple database providers
* Fix #521: Fix hit testing for empty view groups
* Fix #513: Fix LeakCanary false positive
* Fix #514: Handle runtime exceptions from database drivers
* Fix #511: Remove accidental hard dependency on support library
* Fix #406: Fix stetho-rhino importClass/Package not working properly
* Fix #499: Treat HttpURLConnection headers as case insensitive
* Fix #512: Fix severe stdin issue in dumpapp script
* Fix #486: Fix TextViewDescriptor NPE when text is null

## Version 1.4.2
_2016_12_14_

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.4.2'
compile 'com.facebook.stetho:stetho:1.5.0'
```
or Maven:
```xml
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho</artifactId>
<version>1.4.2</version>
<version>1.5.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-okhttp3:1.4.2'
compile 'com.facebook.stetho:stetho-okhttp3:1.5.0'
```
or:
```groovy
compile 'com.facebook.stetho:stetho-urlconnection:1.4.2'
compile 'com.facebook.stetho:stetho-urlconnection:1.5.0'
```

You can also enable a JavaScript console with:

```groovy
compile 'com.facebook.stetho:stetho-js-rhino:1.4.2'
compile 'com.facebook.stetho:stetho-js-rhino:1.5.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
Expand Up @@ -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.4.3-SNAPSHOT
VERSION_NAME=1.5.0
GROUP=com.facebook.stetho

0 comments on commit c15b552

Please sign in to comment.