You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -156,7 +156,7 @@ The documentation is typechecked using [mdoc](https://scalameta.org/mdoc/). The
156
156
157
157
When generating documentation, it's best to set the version to the current one, so that the generated doc files don't include modifications with the current snapshot version.
158
158
159
-
That is, in sbt run: `set ThisBuild/version := "4.0.24"`, before running `mdoc` in `docs`.
159
+
That is, in sbt run: `set ThisBuild/version := "4.0.25"`, before running `mdoc` in `docs`.
A fully **asynchronous** backend. Uses the `Future` effect to return responses. There are also [other `Future`-based backends](future.md), which don't depend on Akka.
The `Network[IO]` instance is provided automatically when extending `cats.effect.IOApp` or can be summoned explicitly using `Network[IO]` where needed. This constraint is specific to Scala Native; on the JVM, only the `Async[F]` constraint is required.
47
+
48
+
Note that the Blaze client is JVM-only and not available on Scala Native.
49
+
50
+
## Notes
32
51
33
52
* the backend contains **optional** dependencies on `http4s-ember-client` and `http4s-blaze-client`, to provide the `Http4sBackend.usingEmberClientBuilder`, `Http4sBackend.usingBlazeClientBuilder`, `Http4sBackend.usingDefaultEmberClientBuilder` and `Http4sBackend.usingDefaultBlazeClientBuilder` methods. This makes the client usable with other http4s client implementations, without the need to depend on ember or blaze.
34
53
* the backend does not support `SttpBackendOptions`, that is specifying proxy settings (proxies are not implemented in http4s, see [this issue](https://github.com/http4s/http4s/issues/251)), as well as configuring the connect timeout
0 commit comments