Skip to content

Commit

Permalink
Akka HTTP 10.1.11 release notes (#2839)
Browse files Browse the repository at this point in the history
  • Loading branch information
raboof committed Nov 29, 2019
1 parent fe7f5f5 commit 6de639f
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 17 deletions.
41 changes: 41 additions & 0 deletions docs/src/main/paradox/release-notes/10.1.x.md
@@ -1,5 +1,46 @@
# 10.1.x Release Notes

## 10.1.11

### Changes since 10.1.10

#### akka-http-core

* Hide body data from `Http.Strict#toString` [#2737](https://github.com/akka/akka-http/pull/2737)
* Support chunked trailing headers in `transformDataBytes` [#2748](https://github.com/akka/akka-http/pull/2748)
* Fix race condition in ConnectionPoolSpec, [#2796](https://github.com/akka/akka-http/pull/2796)
* Improve WS masking performance [#2801](https://github.com/akka/akka-http/pull/2801)
* Update naming for status codes 413, 414, 416 and 505 [#2808](https://github.com/akka/akka-http/pull/2808)
* Improve "Entity stream truncation" error message [#2789](https://github.com/akka/akka-http/pull/2789)
* Silence noisy pool idle timeout messages [#2816](https://github.com/akka/akka-http/pull/2816)
* Improve `EntityStreamSizeException` message [#2823](https://github.com/akka/akka-http/pull/2823)
* Tone down the connection failure warning [#2837](https://github.com/akka/akka-http/pull/2837)

#### akka-http

* fix default rejection message for unsupported content type [#2804](https://github.com/akka/akka-http/pull/2804)

#### akka-http2-support

* Allow sending an ack SETTINGS frame immediately [#2735](https://github.com/akka/akka-http/pull/2735)
* Make sure all substreams are closed when connection is torn down[#2777](https://github.com/akka/akka-http/pull/2777)
* Fix HTTP/1.1 ALPN negotiation [#2791](https://github.com/akka/akka-http/pull/2791)

#### docs

* Fix `authorizeAsync` documentation [#2746](https://github.com/akka/akka-http/pull/2746)
* Doc fix for regex paths from Java [#2749](https://github.com/akka/akka-http/pull/2749)
* Fix/amend 10.1.10 release notes formatting[#](https://github.com/akka/akka-http/pull/)
* Typed sample polish [#2784](https://github.com/akka/akka-http/pull/2784)

#### build

* Collapse PR validation report for less clutter [#2707](https://github.com/akka/akka-http/pull/2707)
* Update to latest Scala versions [#2756](https://github.com/akka/akka-http/pull/2756)
* Allow deployRsync for publishing snapshot docs [#2821](https://github.com/akka/akka-http/pull/2821)
* Use more resilient checking for Scala 2.13 in Mima [#2820](https://github.com/akka/akka-http/pull/2820)
* Enable coursier [#2835](https://github.com/akka/akka-http/pull/2835)

## 10.1.10

### Migration notes
Expand Down
36 changes: 19 additions & 17 deletions scripts/commits-for-release-notes.sh
@@ -1,47 +1,49 @@
#!/bin/sh
#!/bin/bash

set -e

ROOT_DIR=$(dirname $(readlink -f $0))/..

LAST_VERSION=$1

echo "Changes in akka-http-core"
REPLACEMENT="perl -pe s|(.*?)(\(?#(\d+)\)?(\s\(#\d+\))?)?$|\*\1\[#\3\]\(https://github.com/akka/akka-http/pull/\3\)|"

echo "#### akka-http-core"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-core
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-core | $REPLACEMENT

echo
echo "Changes in akka-http"
echo "#### akka-http"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http | $REPLACEMENT

echo
echo "Changes in akka-http-marshallers"
echo "#### akka-http-marshallers"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-marshallers*
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-marshallers* | $REPLACEMENT

echo
echo "Changes in akka-http-testkit"
echo "#### akka-http-testkit"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-testkit
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-testkit | $REPLACEMENT

echo
echo "Changes in docs"
echo "#### docs"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/docs
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/docs | $REPLACEMENT

echo
echo "Changes in akka-http2-support"
echo "#### akka-http2-support"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http2-support
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http2-support | $REPLACEMENT

echo
echo "Changes in akka-http-caching"
echo "#### akka-http-caching"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-caching
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/akka-http-caching | $REPLACEMENT

echo
echo "Changes in build"
echo "#### build"
echo
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/project $ROOT_DIR/*.sbt
git log --no-merges --reverse --oneline ${LAST_VERSION}.. -- $ROOT_DIR/project $ROOT_DIR/*.sbt | $REPLACEMENT | grep -v Update

0 comments on commit 6de639f

Please sign in to comment.