File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ ## Version 3.4.0
5+
6+ _ 2023-07-07_
7+
8+ * New: Adapt a Java NIO FileSystem (` java.nio.file.FileSystem ` ) as an Okio FileSystem using
9+ ` fileSystem.asOkioFileSystem() ` .
10+ * New: Adapt Android’s ` AssetManager ` as an Okio FileSystem using ` AssetFileSystem ` . This is in the
11+ new ` okio-assetfilesystem ` module. Android applications should prefer this over
12+ ` FileSystem.RESOURCES ` as it’s faster to load.
13+ * Fix: Don't crash decoding GZIP files when the optional extra data (` XLEN ` ) is 32 KiB or larger.
14+ * Fix: Resolve symlinks in ` FakeFileSystem.canonicalize() ` .
15+ * Fix: Report the correct ` createdAtMillis ` in ` NodeJsFileSystem ` file metadata. We were
16+ incorrectly using ` ctimeMs ` , where ` c ` means _ changed_ , not _ created_ .
17+ * Fix: ` UnsafeCursor ` is now ` Closeable ` .
18+
19+
420## Version 3.3.0
521
622_ 2023-01-07_
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ Releases
9595Our [ change log] [ changelog ] has release history.
9696
9797``` kotlin
98- implementation(" com.squareup.okio:okio:3.3 .0" )
98+ implementation(" com.squareup.okio:okio:3.4 .0" )
9999```
100100
101101<details >
@@ -107,7 +107,7 @@ repositories {
107107}
108108
109109dependencies {
110- implementation(" com.squareup.okio:okio:3.3 .0" )
110+ implementation(" com.squareup.okio:okio:3.4 .0" )
111111}
112112```
113113
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ kotlin.mpp.stability.nowarn=true
1616kotlin.mpp.enableCompatibilityMetadataVariant =true
1717
1818GROUP =com.squareup.okio
19- VERSION_NAME =3.4.0-SNAPSHOT
19+ VERSION_NAME =3.4.0
2020kotlin.mpp.commonizerLogLevel =info
You can’t perform that action at this time.
0 commit comments