Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Update dependency com.squareup.okio:okio to v3.17.0#53

Closed
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/okio_version
Closed

Update dependency com.squareup.okio:okio to v3.17.0#53
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/okio_version

Conversation

@renovate

@renovate renovate Bot commented May 28, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
com.squareup.okio:okio 3.11.03.17.0 age confidence

Release Notes

square/okio (com.squareup.okio:okio)

v3.17.0

2026-03-11

  • New: Adjust down the Kotlin stdlib dependency to [Kotlin 2.1.21][kotlin_2_1_21]. Okio is built
    with an up-to-date Kotlin compiler (2.2.21), but depends on an older kotlin-stdlib. We're doing
    this so you can update Okio and Kotlin independently.

  • Fix: Return the correct timestamp in FileMetadata.createdAtMillis on Kotlin/Native on UNIX
    platforms. We were incorrectly using the POSIX ctime (change time) instead of the
    birthtime. With this fix Okio now prefers statx() over stat() on native platforms. This
    API first appeared in Linux in 4.11 (2017) and Android in API 30 (2020).

v3.16.4

2025-11-17

  • Fix: Don't delay triggering timeouts. In 3.16.0 we introduced a regression that caused timeouts
    to fire later than they were supposed to.

v3.16.3

2025-11-14

This release is the same as 3.16.2. We forgot to cherry-pick a commit before we released!

v3.16.2

2025-10-14

  • Fix: okio-assetfilesystem APIs now correctly restored as visible to Kotlin.

v3.16.1

2025-10-09

  • Fix: Don't crash when calling Socket.shutdownOutput() or shutdownInput() on an SSLSocket on
    Android API 21. This method throws an UnsupportedOperationException, so we now catch that and
    close the underlying stream instead.

v3.16.0

2025-07-29

  • Fix: Change Socket.asOkioSocket() to resolve its source InputStream and OutputStream
    eagerly. This will throw a SocketException immediately if the socket isn’t connected.
    This behavior is consistent with our similar APIs, Socket.source() and Socket.sink().

  • Fix: Optimize AsyncTimeout on systems with a very large number of active timeouts. This class
    originally kept active timeouts in a linked list; with this update the internal data structure is
    a binary heap. The old runtime was 𝑂(𝑛²) to activate 𝑛 timeouts; with this optimization the
    runtime is 𝑂(𝑛 log 𝑛).

  • Upgrade: [Kotlin 2.2.0][kotlin_2_2_0].

v3.15.0

2025-07-01

  • Upgrade: [kotlinx-datetime 0.7.0-0.6.x-compat][datetime_0_7_0_compat]. The previous 3.14.0
    release, FakeFileSystem broke binary-compatibility for calls to FakeFileSystem(). This
    restores that compatibility.

  • Breaking: Change FakeFileSystem.clock from a JVM field to a property. This avoids a crash
    running Okio in a Gradle 8.x plugin. This change is not binary-compatible.

v3.14.0

2025-06-28

  • Upgrade: [kotlinx-datetime 0.7.0][datetime_0_7_0]. This impacts the okio-fakefilesystem
    artifact only. This is a binary-incompatible backwards-incompatible change that cannot co-exist
    with previous releases of okio-fakefilesystem! If you observe a NoSuchMethodError calling
    FakeFileSystem.init, update the calling code to this release (or newer) and recompile. We don't
    like imposing backwards-incompatible changes like this on you and do so regretfully.

v3.13.0

2025-06-13

  • New: okio.Socket interface. This is a first step towards low-level streaming networking support
    for Kotlin/Multiplatform. This release provides two JVM-only implementations: asOkioSocket()
    adapts a java.net.Socket to our new interface, and inMemorySocketPair() returns a pair of
    mutually-connected sockets. We also anticipate that this interface will be a useful abstraction
    for proxies and tunnels.
  • New: In-development snapshots are now published to the [Central Portal Snapshots repository].

v3.12.0

2025-05-27

  • New: Support an optional end index when searching with BufferedSource.indexOf().
  • Fix: Don't do unnecessary work in BufferedSource.rangeEquals().
  • Upgrade: [Kotlin 2.1.21][kotlin_2_1_21].

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.12.0 Update dependency com.squareup.okio:okio to v3.13.0 Jun 13, 2025
@renovate
renovate Bot force-pushed the renovate/okio_version branch from f9fc770 to 5902251 Compare June 13, 2025 15:46
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.13.0 Update dependency com.squareup.okio:okio to v3.14.0 Jun 28, 2025
@renovate
renovate Bot force-pushed the renovate/okio_version branch from 5902251 to 16e2629 Compare June 28, 2025 16:25
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.14.0 Update dependency com.squareup.okio:okio to v3.15.0 Jul 2, 2025
@renovate
renovate Bot force-pushed the renovate/okio_version branch from 16e2629 to d150665 Compare July 2, 2025 03:02
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.15.0 Update dependency com.squareup.okio:okio to v3.16.0 Jul 30, 2025
@renovate
renovate Bot force-pushed the renovate/okio_version branch from d150665 to 862d5cd Compare July 30, 2025 01:00
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.16.0 Update dependency com.squareup.okio:okio to v3.16.1 Oct 10, 2025
@renovate
renovate Bot force-pushed the renovate/okio_version branch from 862d5cd to 7cfd50b Compare October 10, 2025 02:13
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.16.1 Update dependency com.squareup.okio:okio to v3.16.2 Oct 14, 2025
@renovate
renovate Bot force-pushed the renovate/okio_version branch from 7cfd50b to cbaf0ca Compare October 14, 2025 18:52
@renovate
renovate Bot force-pushed the renovate/okio_version branch from cbaf0ca to ca4e401 Compare November 11, 2025 02:04
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.16.2 Update dependency com.squareup.okio:okio to v3.16.3 Nov 15, 2025
@renovate
renovate Bot force-pushed the renovate/okio_version branch 2 times, most recently from 29c4f1c to 25ec776 Compare November 18, 2025 03:04
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.16.3 Update dependency com.squareup.okio:okio to v3.16.4 Nov 18, 2025
@renovate renovate Bot changed the title Update dependency com.squareup.okio:okio to v3.16.4 Update dependency com.squareup.okio:okio to v3.17.0 Mar 12, 2026
@renovate
renovate Bot force-pushed the renovate/okio_version branch from 25ec776 to 0c92078 Compare March 12, 2026 01:00
@xBaank xBaank closed this Mar 20, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant