Skip to content

Commit

Permalink
add a few more links
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudolph committed Jul 23, 2020
1 parent b4e8fe4 commit 213d409
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 4 additions & 2 deletions docs/src/main/paradox/release-notes/10.2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 213d409

Please sign in to comment.