Skip to content

Commit

Permalink
Upgrade OkHttp library to fix HTTP2 issue
Browse files Browse the repository at this point in the history
Issue: #4078
PiperOrigin-RevId: 288651166
  • Loading branch information
ojw28 committed Jan 17, 2020
1 parent eb0acb4 commit bf9a61d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
* Improve support for G.711 A-law and mu-law encoded data.
* Fix MKV subtitles to disappear when intended instead of lasting until the
next cue ([#6833](https://github.com/google/ExoPlayer/issues/6833)).
* OkHttp extension: Upgrade OkHttp dependency to 3.12.7, which fixes a class of
`SocketTimeoutException` issues when using HTTP/2
([#4078](https://github.com/google/ExoPlayer/issues/4078)).

### 2.11.1 (2019-12-20) ###

Expand Down
2 changes: 1 addition & 1 deletion extensions/okhttp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
// https://cashapp.github.io/2019-02-05/okhttp-3-13-requires-android-5
// Since OkHttp is distributed as a jar rather than an aar, Gradle won't
// stop us from making this mistake!
api 'com.squareup.okhttp3:okhttp:3.12.5'
api 'com.squareup.okhttp3:okhttp:3.12.7'
}

ext {
Expand Down

1 comment on commit bf9a61d

@Redirion
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider upgrading to 3.12.8 before releasing 2.11.2 as that fixed a regression introduced in 3.11.7

Please sign in to comment.