From 213d40954ef956b28a3ecd13782615b0ff451985 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Thu, 23 Jul 2020 13:44:21 +0200 Subject: [PATCH] add a few more links --- .../main/paradox/migration-guide/migration-guide-10.2.x.md | 2 +- docs/src/main/paradox/release-notes/10.2.x.md | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/src/main/paradox/migration-guide/migration-guide-10.2.x.md b/docs/src/main/paradox/migration-guide/migration-guide-10.2.x.md index 2bed3195ade..dd2ebc0080d 100644 --- a/docs/src/main/paradox/migration-guide/migration-guide-10.2.x.md +++ b/docs/src/main/paradox/migration-guide/migration-guide-10.2.x.md @@ -73,7 +73,7 @@ not allowed according to RFC 3986, even when `parsing.uri-parsing-mode` was set to the default value of `strict`. Parsing such URIs will now fail in `strict` mode. If you want to allow such characters in incoming URIs, set `parsing.uri-parsing-mode` to `relaxed`, in which case these characters will be percent-encoded automatically. -### 'Transparent HEAD requests' now disabled by default +### Transparent HEAD requests now disabled by default Prior to 10.2.0, when a client would perform a `HEAD` request, by default Akka HTTP would call the `GET` route but discard the body. This can save bandwidth in some cases, but is also counter-intuitive when you actually want to explicitly handle `HEAD` requests, diff --git a/docs/src/main/paradox/release-notes/10.2.x.md b/docs/src/main/paradox/release-notes/10.2.x.md index 3ac0d7e0cc3..7b6d56cbfcc 100644 --- a/docs/src/main/paradox/release-notes/10.2.x.md +++ b/docs/src/main/paradox/release-notes/10.2.x.md @@ -63,9 +63,9 @@ See @ref[Attributes](../common/http-model.md#attributes) for more information. Seldom used features have now been turned off by default: - * Transparent HEAD support was disabled, see [#2088](https://github.com/akka/akka-http/issues/2088) and the migration notes for information about the rationale. + * Transparent HEAD support was disabled, see [#2088](https://github.com/akka/akka-http/issues/2088) and the @ref[migration notes](../migration-guide/migration-guide-10.2.x.md#transparent-head-requests-now-disabled-by-default) for information about the rationale. * Server-side HTTP pipelining was disabled by default. Common HTTP clients do not support it by default or have it disabled, so to reduce complexity in the common code paths - in was disabled by changing the `akka.http.server.pipelining-limit` to `1`. + the default `akka.http.server.pipelining-limit` was changed to `1`. See the @ref[migration notes](../migration-guide/migration-guide-10.2.x.md#server-side-http-pipelining-now-disabled-by-default) for more information. ### Better support for upcoming Scala versions @@ -74,6 +74,8 @@ take any number of arguments in a typesafe fashion by relying on the Scala compi of implicits and the magnet pattern to avoid complex compile error messages, long compile times, and complexity. With Akka Http 10.2 we made another effort to reduce our dependency on that language feature by providing a set of code-generated overloads for the methods in question to pave our way for upcoming Scala versions. +See the @ref[migration guide](../migration-guide/migration-guide-10.2.x.md#parameters-formfields-scaladsl-) for more information. + ### Client: configurable setting overrides per target host It is now possible to set overrides for client settings per target host @ref[via configuration](../client-side/configuration.md#per-host-overrides). For example, if you use Akka HTTP client