:mega: `1.0.0-beta-4` has been published - kotlin...
# ktor
c
📣
1.0.0-beta-4
has been published - kotlinx.coroutines 1.0.1 - ktor client improvements - per-call memory consumption optimizations - eliminated I/O errors logging in Netty - fixed hanging compression feature with HTML/writeTo - MockEngine improvements, moved to
ktor-client-mock
- cookies handling fixes - other minor bugfixes and improvements
🎉 14
l
Under which package is MockEngine now?
c
io.ktor.client.engine.mock
of
ktor-client-mock
Unforuntately there is no way to make automatic migration
will add to notes
l
Thank you. Interestingly I receive an unresolved reference for
mock
when doing:
import io.ktor.client.engine.mock
Maven dep:
Copy code
<dependency>
            <groupId>io.ktor</groupId>
            <artifactId>ktor-client-mock</artifactId>
            <version>1.0.0-beta-4</version>
            <scope>test</scope>
        </dependency>
e
MockEngine
is multiplatform now. Could you try using it from
ktor-client-mock-jvm
artifact?
l
Ah got it, I didn’t know that, thanks a lot 🙂
😉 1
c
// cc @Deactivated User perhaps we need to notice it in docs, now I see we have just`ktor-client-mock` in 1.0.0 branch
In fact it's not just about this particular module but all of them. This need to be resolved somehow