Skip to content

Commit

Permalink
Merge pull request #639 from jasta/release-v1.5.1
Browse files Browse the repository at this point in the history
Release v1.5.1
  • Loading branch information
jasta authored Mar 18, 2019
2 parents 194bda3 + 86e78c2 commit 8d17427
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_

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
implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'com.facebook.stetho:stetho:1.5.1'
```
or Maven:
```xml
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho</artifactId>
<version>1.5.0</version>
<version>1.5.1</version>
</dependency>
```

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

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.5.1-SNAPSHOT
VERSION_NAME=1.5.1
GROUP=com.facebook.stetho

0 comments on commit 8d17427

Please sign in to comment.