mikehardy / google-analytics-java

Open Source license compatible Java API for Google Analytics
9 stars 3 forks source link

Bump okhttp from 3.12.1 to 3.14.0 #41

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps okhttp from 3.12.1 to 3.14.0.

Changelog *Sourced from [okhttp's changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md).* > ## Version 3.14.0 > > _2019-03-14_ > > * **This release deletes the long-deprecated `OkUrlFactory` and `OkApacheClient` APIs.** These > facades hide OkHttp's implementation behind another client's API. If you still need this please > copy and paste [ObsoleteUrlFactory.java][obsolete_url_factory] or > [ObsoleteApacheClient.java][obsolete_apache_client] into your project. > > * **OkHttp now supports duplex calls over HTTP/2.** With normal HTTP calls the request must finish > before the response starts. With duplex, request and response bodies are transmitted > simultaneously. This can be used to implement interactive conversations within a single HTTP > call. > > Create duplex calls by overriding the new `RequestBody.isDuplex()` method to return true. > This simple option dramatically changes the behavior of the request body and of the entire > call. > > The `RequestBody.writeTo()` method may now retain a reference to the provided sink and > hand it off to another thread to write to it after `writeTo` returns. > > The `EventListener` may now see requests and responses interleaved in ways not previously > permitted. For example, a listener may receive `responseHeadersStart()` followed by > `requestBodyEnd()`, both on the same call. Such events may be triggered by different threads > even for a single call. > > Interceptors that rewrite or replace the request body may now inadvertently interfere with > duplex request bodies. Such interceptors should check `RequestBody.isDuplex()` and avoid > accessing the request body when it is. > > Duplex calls require HTTP/2. If HTTP/1 is established instead the duplex call will fail. The > most common use of duplex calls is [gRPC][grpc_http2]. > > * New: Prevent OkHttp from retransmitting a request body by overriding `RequestBody.isOneShot()`. > This is most useful when writing the request body is destructive. > > * New: We've added `requestFailed()` and `responseFailed()` methods to `EventListener`. These > are called instead of `requestBodyEnd()` and `responseBodyEnd()` in some failure situations. > They may also be fired in cases where no event was published previously. In this release we did > an internal rewrite of our event code to fix problems where events were lost or unbalanced. > > * Fix: Don't leak a connection when a call is canceled immediately preceding the `onFailure()` > callback. > > * Fix: Apply call timeouts when connecting duplex calls, web sockets, and server-sent events. > Once the streams are established no further timeout is enforced. > > * Fix: Retain the `Route` when a connection is reused on a redirect or other follow-up. This was > causing some `Authenticator` calls to see a null route when non-null was expected. > > ... (truncated)
Commits - [`44d51d0`](https://github.com/square/okhttp/commit/44d51d0cebea7d2c69f293e2fb2a7e97e7984bcc) [maven-release-plugin] prepare release parent-3.14.0 - [`b5dc314`](https://github.com/square/okhttp/commit/b5dc31409ff55465efe091b9476b0af75fbd678b) Merge pull request [#4708](https://github-redirect.dependabot.com/square/okhttp/issues/4708) from amirlivneh/fail-when-not-canceled - [`6c4855a`](https://github.com/square/okhttp/commit/6c4855a7c7f1bfd8838bfaa54640d68b60697c0d) Use AssertJ in tests ([#4713](https://github-redirect.dependabot.com/square/okhttp/issues/4713)) - [`a217a39`](https://github.com/square/okhttp/commit/a217a390ee2e37dbfa6210a8df032f69b51e2816) Merge pull request [#4714](https://github-redirect.dependabot.com/square/okhttp/issues/4714) from amirlivneh/travis-verify - [`d4afa4b`](https://github.com/square/okhttp/commit/d4afa4b9a43e21441bc063f9cca315f0ae7e9053) Run style check in Travis CI - [`66ce793`](https://github.com/square/okhttp/commit/66ce79306b151fc1e7cc51bb8a79af15dd8d3e8f) Merge pull request [#4711](https://github-redirect.dependabot.com/square/okhttp/issues/4711) from amirlivneh/fix-style - [`f830f64`](https://github.com/square/okhttp/commit/f830f64916ec0a4bb249353eb967a19c359afb7d) Unbreak 'mvn verify' - [`829cd9c`](https://github.com/square/okhttp/commit/829cd9c07f9f78ace6ab552ee0f79ed5b40b7e34) Fail recoverFromCancelReusesConnection() on unexpected response - [`292764b`](https://github.com/square/okhttp/commit/292764b1568557402cf86e2b5c0f1ec05deab67d) Merge pull request [#4705](https://github-redirect.dependabot.com/square/okhttp/issues/4705) from square/jwilson.0310.better_exceptions - [`1a68cf1`](https://github.com/square/okhttp/commit/1a68cf15af40729702949c43c74dd8c8f847c364) Provide better exceptions when the shared HTTP/2 stream fails - Additional commits viewable in [compare view](https://github.com/square/okhttp/compare/parent-3.12.1...parent-3.14.0)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
mikehardy commented 5 years ago

@dependabot ignore this minor

dependabot-preview[bot] commented 5 years ago

OK, I won't notify you about version 3.14.x again, unless you re-open this PR or update to a 3.14.x release yourself.