arquillian / arquillian-cube

Control (docker, kubernetes, openshift) containers in your tests with ease!
http://arquillian.org/arquillian-cube/
118 stars 98 forks source link

chore(deps): bump okhttp from 3.8.0 to 3.14.1 #1124

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps okhttp from 3.8.0 to 3.14.1.

Changelog *Sourced from [okhttp's changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md).* > ## Version 3.14.1 > > _2019-04-10_ > > * Fix: Don't crash when an interceptor retries when there are no more routes. This was an > edge-case regression introduced with the events cleanup in 3.14.0. > > * Fix: Provide actionable advice when the exchange is non-null. Prior to 3.14, OkHttp would > silently leak connections when an interceptor retries without closing the response body. With > 3.14 we detect this problem but the exception was not helpful. > > ## 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 > ... (truncated)
Commits - [`a5c4668`](https://github.com/square/okhttp/commit/a5c4668abf1c68545e2a3a6ea365cae27d5958c1) [maven-release-plugin] prepare release parent-3.14.1 - [`2dc45fe`](https://github.com/square/okhttp/commit/2dc45fe576db0fe12f840f55e1cdba9d268a95e4) Omit hpacktests from release - [`3119db0`](https://github.com/square/okhttp/commit/3119db0a7fd748783ac7012022d27e0411d25e6f) Merge pull request [#4911](https://github-redirect.dependabot.com/square/okhttp/issues/4911) from square/jwilson.0308.better_exception_stacked_calls - [`df95c77`](https://github.com/square/okhttp/commit/df95c77adfbf4f5ddd30bfc6a2bb684295d7d313) Run a minimal circleci maven build on 3.14 branch ([#4912](https://github-redirect.dependabot.com/square/okhttp/issues/4912)) - [`ca961db`](https://github.com/square/okhttp/commit/ca961db9e94209af405906b1f2ff3ca267e3a215) Provide actionable advice when the exchange is non-null (3.x branch) - [`7f9d780`](https://github.com/square/okhttp/commit/7f9d7801e1e1330dcc92ae9ffda10cffe7331ab9) Merge pull request [#4901](https://github-redirect.dependabot.com/square/okhttp/issues/4901) from square/jwilson.0407.has_next - [`33f0d02`](https://github.com/square/okhttp/commit/33f0d028a4355af49a23dfb946d87cca5c336105) Don't crash on retry when there are no more routes (3.x branch) - [`0f87d95`](https://github.com/square/okhttp/commit/0f87d95c7de96ae028fb403f57ade0c7f8fca33f) OkHttp 3.14 is out - [`695b46c`](https://github.com/square/okhttp/commit/695b46cb2e38e34b7d9e438ab259f3006fa7007a) [maven-release-plugin] prepare for next development iteration - [`44d51d0`](https://github.com/square/okhttp/commit/44d51d0cebea7d2c69f293e2fb2a7e97e7984bcc) [maven-release-plugin] prepare release parent-3.14.0 - Additional commits viewable in [compare view](https://github.com/square/okhttp/compare/parent-3.8.0...parent-3.14.1)


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.


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.
dependabot-preview[bot] commented 5 years ago

Superseded by #1129.