rewe-digital / composer

Dynamically composes markup generated by microservices. Based on Java8, reactive patterns and Spotify Apollo. Made with 💙 in cologne.
Apache License 2.0
10 stars 2 forks source link

Bump mockwebserver from 2.5.0 to 2.6.0 #51

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps mockwebserver from 2.5.0 to 2.6.0.

Changelog

Sourced from mockwebserver's changelog.

Version 2.6.0

2015-11-22

  • New Logging Interceptor. The logging-interceptor subproject offers simple request and response logging. It may be configured to log headers and bodies for debugging. It requires this Maven dependency:

    <dependency>
      <groupId>com.squareup.okhttp</groupId>
      <artifactId>logging-interceptor</artifactId>
      <version>2.6.0</version>
    </dependency>
    

    Configure basic logging like this:

    HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();
    loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BASIC);
    client.networkInterceptors().add(loggingInterceptor);
    

    Warning: Avoid Level.HEADERS and Level.BODY in production because they could leak passwords and other authentication credentials to insecure logs.

  • WebSocket API now uses RequestBody and ResponseBody for messages. This is a backwards-incompatible API change.

  • The DNS service is now pluggable. In some situations this may be useful to manually prioritize specific IP addresses.

  • Fix: Don't throw when converting an HttpUrl to a java.net.URI. Previously URLs with special characters like | and [ would break when subjected to URI’s overly-strict validation.

  • Fix: Don't re-encode + as %20 in encoded URL query strings. OkHttp prefers %20 when doing its own encoding, but will retain + when that is provided.

  • Fix: Enforce that callers call WebSocket.close() on IO errors. Error handling in WebSockets is significantly improved.

  • Fix: Don't use SPDY/3 style header concatenation for HTTP/2 request headers. This could have corrupted requests where multiple headers had the same name, as in cookies.

  • Fix: Reject bad characters in the URL hostname. Previously characters like \0 would cause a late crash when building the request.

  • Fix: Allow interceptors to change the request method.

  • Fix: Don’t use the request's User-Agent or Proxy-Authorization when connecting to an HTTPS server via an HTTP tunnel. The Proxy-Authorization

... (truncated)
Commits
  • d0a381e [maven-release-plugin] prepare release parent-2.6.0
  • 8724227 Changelog for OkHttp 2.6.0.
  • ae7c732 Merge pull request #2020 from square/jwilson_1121_http2_no_nulls
  • bf560c1 Fix HTTP/2 bug where we were using SPDY/3 style header concatenation.
  • 85310b1 Merge pull request #2013 from square/jwilson_1118_less_flaky
  • e36d7ec Fix flakiness in CallTest.cancelTagImmediatelyAfterEnqueue()
  • f2cf770 Merge pull request #2008 from square/jwilson_1117_more_connections
  • 529c4a3 Stop returning HTTP/1.0 from Connection.getProtocol().
  • 3edddd1 Merge pull request #2004 from square/jw/options-allows-body
  • 607f4f4 OPTIONS allows body.
  • Additional commits viewable in compare view


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 close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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) - 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)
codecov[bot] commented 4 years ago

Codecov Report

Merging #51 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##             master      #51   +/-   ##
=========================================
  Coverage     91.37%   91.37%           
  Complexity      469      469           
=========================================
  Files            51       51           
  Lines          1043     1043           
  Branches         65       65           
=========================================
  Hits            953      953           
  Misses           67       67           
  Partials         23       23

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 3bdb22a...62d4c1b. Read the comment docs.

dependabot-preview[bot] commented 4 years ago

Looks like com.squareup.okhttp:mockwebserver is up-to-date now, so this is no longer needed.