chore(deps): update dependency com.squareup.okio:okio to v2.10.0 #786
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.8.0->2.10.0Release Notes
square/okio (com.squareup.okio:okio)
v2.10.02021-01-07
HashingSource,HashingSink, buffer hash functions, andUnsafeCursoron non-JVMplatforms. Previously these were all JVM-only.
CloseableonSinkandSourceon non-JVM platforms. Okio now includes amultiplatform
okio.Closeableinterface and correspondinguse {}extension. Closing resourceswhen you're done with them shouldn't be JVM-only!
Sink.hashingSinkandSource.hashingSourcefunctions that acceptjava.security.MessageDigestandjavax.crypto.Macinstances. Use these when your hash functionisn't built-in.
ShortBufferExceptioninCipherSinkandCipherSourceon Android.(Android may throw a
ShortBufferExceptioneven if the buffer is not too short. We nowavoid this problem!)
v2.9.02020-10-04
Bufferwhen writing a slice of a segmentedByteString. We had a severebug where
ByteStringinstances created withsnapshot()andreadByteString()incorrectlyadjusted the buffer's size by their full length, not the length of the slice. This would have
caused buffer reads to crash! We do not believe data was silently corrupted.
CipherSinkandCipherSource. Use these withjavax.crypto.Cipherto encrypt and decryptstreams of data. This is a low-level encryption API; most applications should use higher-level
APIs like TLS when available.
md5,sha1(),sha512(), andsha256()to common Kotlin. Theseare currently only available on
ByteString, multiplatform support forHashingSource,HashingSink, andBuffershould come in a follow-up release. We wrote and optimized our ownimplementations of these hash functions in Kotlin. On JVM and Android platforms Okio still uses
the platform's built-in hash functions.
Configuration
📅 Schedule: Branch creation - "after 10pm" in timezone Europe/Prague, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.