Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump okhttp from 4.5.0 to 4.6.0 #2641

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Apr 29, 2020

Bumps okhttp from 4.5.0 to 4.6.0.

Changelog

Sourced from okhttp's changelog.

Version 4.6.0

2020-04-28

  • Fix: Follow HTTP 307 and 308 redirects on methods other than GET and POST. We're reluctant to change OkHttp's behavior in handling common HTTP status codes, but this fix is overdue! The new behavior is now consistent with [RFC 7231][rfc_7231_647], which is newer than OkHttp itself. If you want this update with the old behavior use [this interceptor][legacy_interceptor].

  • Fix: Don't crash decompressing web sockets messages. We had a bug where we assumed deflated bytes in would always yield deflated bytes out and this isn't always the case!

  • Fix: Reliably update and invalidate the disk cache on windows. As originally designed our internal DiskLruCache assumes an inode-like file system, where it's fine to delete files that are currently being read or written. On Windows the file system forbids this so we must be more careful when deleting and renaming files.

  • Fix: Don't crash on Java 8u252 which introduces an API previously found only on Java 9 and above. See [Jetty's overview][jetty_8_252] of the API change and its consequences.

  • New: MultipartReader is a streaming decoder for [MIME multipart (RFC 2045)][rfc_2045] messages. It complements MultipartBody which is our streaming encoder.

    val response: Response = call.execute()
    val multipartReader = MultipartReader(response.body!!)
    multipartReader.use {
    while (true) {
    val part = multipartReader.nextPart() ?: break
    process(part.headers, part.body)
    }
    }

  • New: MediaType.parameter() gets a parameter like boundary from a media type like multipart/mixed; boundary="abc".

  • New: Authenticator.JAVA_NET_AUTHENTICATOR forwards authentication requests to java.net.Authenticator. This obsoletes JavaNetAuthenticator in the okhttp-urlconnection module.

  • New: CertificatePinner now offers an API for inspecting the configured pins.

  • Upgrade: [Okio 2.6.0][okio_2_6_0].

    implementation("com.squareup.okio:okio:2.6.0")
... (truncated)
Commits
  • 0deadd5 Prepare for release 4.6.0.
  • 0cc3aef Complies with rfc7231 about statuses 307 and 308 (#5990)
  • 269f556 Confirm MultipartBody and MultipartReader can work together (#5999)
  • 4295403 Merge pull request #5998 from square/jwilson.0427.fresh_public_suffixes
  • 16ca1d4 Update the public suffixes DB
  • 8036ad4 Check in the old public suffix DB
  • a1bc5c6 Merge pull request #5996 from square/jwilson.0427.response_body
  • 9d3eb93 Parse response bodies as multipart
  • f7c66ed Merge pull request #5993 from square/jwilson.0426.multipart_reader
  • 37a7e7e Multipart reader first steps
  • 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 will merge this PR once it's up-to-date and CI passes on it, as requested by @MysterAitch.


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:

  • 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)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Apr 29, 2020
@dependabot-preview dependabot-preview bot force-pushed the dependabot/maven/com.squareup.okhttp3-okhttp-4.6.0 branch 6 times, most recently from efb5dc5 to 6abebac Compare May 11, 2020 13:06
Bumps [okhttp](https://github.com/square/okhttp) from 4.5.0 to 4.6.0.
- [Release notes](https://github.com/square/okhttp/releases)
- [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md)
- [Commits](square/okhttp@parent-4.5.0...parent-4.6.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot force-pushed the dependabot/maven/com.squareup.okhttp3-okhttp-4.6.0 branch from 6abebac to f1ec286 Compare May 17, 2020 17:13
@MysterAitch
Copy link
Member

@dependabot merge

@dependabot-preview
Copy link
Contributor Author

Superseded by #2680.

@dependabot-preview dependabot-preview bot deleted the dependabot/maven/com.squareup.okhttp3-okhttp-4.6.0 branch May 17, 2020 18:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant