fix(deps): update all non-major dependencies #36
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:
9.1.0->9.2.12.3->2.57.0.0->7.0.133.9.1->3.16.43.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.33.0.0->3.3.30.5.4->0.6.00.5.4->0.6.02.20.0->2.22.02.20.0->2.22.00.15.0->0.17.00.15.0->0.17.00.15.0->0.17.00.15.0->0.17.00.15.0->0.17.03.0.1->3.0.40.3.3->0.5.02.0.21->2.2.21Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
gradle/gradle (gradle)
v9.2.1: 9.2.1Compare Source
The Gradle team is excited to announce Gradle 9.2.1.
Here are the highlights of this release:
Read the Release Notes
We would like to thank the following community members for their contributions to this release of Gradle:
Adam,
Björn Kautler,
hasunzo,
HYEON,
Hyunjoon Park,
HYUNJUN SON,
Jendrik Johannes,
Kirill Gavrilov,
Madalin Valceleanu,
Martin Bonnin,
Matthew Haughton,
Mikhail Polivakha,
Na Minhyeok,
Philip Wedemann,
Philipp Schneider,
Róbert Papp,
Simon Marquis,
TheGoesen,
Vincent Potucek,
Xin Wang.
Upgrade instructions
Switch your build to use Gradle 9.2.1 by updating your wrapper:
See the Gradle 9.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.
For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.
Reporting problems
If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.
We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.
v9.2.0Compare Source
oshai/kotlin-logging (io.github.oshai:kotlin-logging-jvm)
v7.0.13Compare Source
What's Changed
Full Changelog: oshai/kotlin-logging@7.0.12...7.0.13
v7.0.12Compare Source
What's Changed
Full Changelog: oshai/kotlin-logging@7.0.11...7.0.12
v7.0.11Compare Source
What's Changed
Full Changelog: oshai/kotlin-logging@7.0.10...7.0.11
v7.0.10Compare Source
Full Changelog: oshai/kotlin-logging@7.0.9...7.0.10
v7.0.7Compare Source
What's Changed
New Contributors
Full Changelog: oshai/kotlin-logging@7.0.6...7.0.7
v7.0.6Compare Source
What's Changed
New Contributors
Full Changelog: oshai/kotlin-logging@7.0.5...7.0.6
v7.0.5Compare Source
What's Changed
Full Changelog: oshai/kotlin-logging@7.0.4...7.0.5
v7.0.4Compare Source
What's Changed
Full Changelog: oshai/kotlin-logging@7.0.3...7.0.4
v7.0.3Compare Source
What's Changed
New Contributors
Full Changelog: oshai/kotlin-logging@7.0.0...7.0.1
square/okio (com.squareup.okio:okio)
v3.16.42025-11-17
to fire later than they were supposed to.
v3.16.32025-11-14
This release is the same as 3.16.2. We forgot to cherry-pick a commit before we released!
v3.16.22025-10-14
okio-assetfilesystemAPIs now correctly restored as visible to Kotlin.v3.16.12025-10-09
Socket.shutdownOutput()orshutdownInput()on anSSLSocketonAndroid API 21. This method throws an
UnsupportedOperationException, so we now catch that andclose the underlying stream instead.
v3.16.02025-07-29
Fix: Change
Socket.asOkioSocket()to resolve its sourceInputStreamandOutputStreameagerly. This will throw a
SocketExceptionimmediately if the socket isn’t connected.This behavior is consistent with our similar APIs,
Socket.source()andSocket.sink().Fix: Optimize
AsyncTimeouton systems with a very large number of active timeouts. This classoriginally 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.02025-07-01
Upgrade: [kotlinx-datetime 0.7.0-0.6.x-compat][datetime_0_7_0_compat]. The previous 3.14.0
release,
FakeFileSystembroke binary-compatibility for calls toFakeFileSystem(). Thisrestores that compatibility.
Breaking: Change
FakeFileSystem.clockfrom a JVM field to a property. This avoids a crashrunning Okio in a Gradle 8.x plugin. This change is not binary-compatible.
v3.14.02025-06-28
okio-fakefilesystemartifact only. This is a binary-incompatible backwards-incompatible change that cannot co-exist
with previous releases of
okio-fakefilesystem! If you observe aNoSuchMethodErrorcallingFakeFileSystem.init, update the calling code to this release (or newer) and recompile. We don'tlike imposing backwards-incompatible changes like this on you and do so regretfully.
v3.13.02025-06-13
okio.Socketinterface. This is a first step towards low-level streaming networking supportfor Kotlin/Multiplatform. This release provides two JVM-only implementations:
asOkioSocket()adapts a
java.net.Socketto our new interface, andinMemorySocketPair()returns a pair ofmutually-connected sockets. We also anticipate that this interface will be a useful abstraction
for proxies and tunnels.
v3.12.02025-05-27
BufferedSource.indexOf().BufferedSource.rangeEquals().v3.11.02025-04-09
String.decodeHex()on Kotlin/JS.EXACTLY_ONCEexecution for blocks likeCloseable.use {}andFileSystem.read {}.v3.10.2Compare Source
2025-01-08
okio-nodefilesystemartifact is no longer empty.v3.10.1Compare Source
2025-01-07
FileSystem.close()may prevent future access and/or clean up associated resources depending on the backing implementation.FakeFileSystemwill prevent future operations once closed.InputStreams created fromBufferedSource.inputStream()now have a more efficient version ofInputStream.transferTo()which reduces memory copies.okio-nodefilesystemis no longer publised as a JS project, but a Kotlin multiplatform project with only a JS target.This change should not affect consumers in any way, and is motivated by the Kotlin Gradle plugin deprecating the JS-only plugin.Please use 3.10.2 to ensure this change actually does not affect your builds.v3.10.0Compare Source
2025-01-06
This version is equivalent to the subsequent 3.10.1, but it did not fully publish to Maven Central due to infrastructure problems.
ktorio/ktor (io.ktor:ktor-websockets-jvm)
v3.3.3Compare Source
Improvements
Bugfixes
v3.3.2Compare Source
Improvements
Bugfixes
maxFrameSizeoption has no effect (KTOR-6963)v3.3.1Compare Source
Improvements
Bugfixes
v3.3.0Compare Source
Features
Improvements
var Route.staticRootFolder: File?should be deprecated (KTOR-5836)image/bmpto the ContentType (KTOR-8735)Bugfixes
v3.2.3Compare Source
Improvements
yamlas the configuration file suffix (KTOR-8712)Bugfixes
\r\n(KTOR-8687)v3.2.2Compare Source
Improvements
eventbeforedata(KTOR-8627)Bugfixes
client.sse()acts like a REST call and not a stream in test environment (KTOR-7910)v3.2.1Compare Source
Improvements
Bugfixes
socket.awaitClosed(hangs indefinitely) since 3.2.0 (KTOR-8618)v3.2.0Compare Source
Features
Improvements
wrapWithContentandwrap(KTOR-8378)ApplicationCallfor testing (KTOR-7607)io.ktor.network.sockets.InetSocketAddress(KTOR-8490)acceptshould return 406 if theAcceptheader isn't matched (KTOR-8416)routelabel can exceed length limit (KTOR-7274)Bugfixes
testApplicationenvironment (KTOR-8436)v3.1.3Compare Source
Improvements
Bugfixes
v3.1.2Compare Source
Improvements
Bugfixes
v3.1.1Compare Source
Improvements
Bugfixes
staticResources(KTOR-6671)v3.1.0Compare Source
Features
Configuration
📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.