Releases: akka/akka-http
v10.1.0
See the announcement, release notes and the 10.1.0-RC1, 10.1.0-RC2, and 10.1.0 milestones for more information.
v10.1.0-RC2
See the announcement, release notes and the 10.1.0-RC2 milestone for more information.
v10.1.0-RC1
See the announcement, Release notes and the 10.1.0-RC1 milestone for more information.
v10.0.11
See the announcement, Release notes and the
10.0.11 milestone for more information.
v10.0.10
v10.0.9
v10.0.8
v10.0.7
See full annoucement here: http://akka.io/blog/news/2017/05/25/akka-http-10.0.7-released
All changes: https://github.com/akka/akka-http/milestone/25?closed=1
Notable changes:
10.0.7
New Seed Templates for Akka HTTP Apps
We prepared new seed templates for starting out with Akka HTTP using the Java DSL as well as Scala DSL. By using the sbt new
command one can now easily get a small sample project to easily get started with your first Akka HTTP app. More instructions on the seed template pages.
New Path Directive ignoreTrailingSlash
Akka HTTP treats differently by default a route that ends with slash (/
) than one that doesn't. From this version on, users who don't want to have this distinction, can use a new Path Directive called ignoreTrailingSlash
. This route, will retry its inner route with and without a trailing slash. If you want to know more about this feature, please check the documentation pages for Scala and Java API.
List of Changes
Improvements
akka-http
- Added new Path Directive
ignoreTrailingSlash
(#880) - Prepared new seed templates for Akka HTTP apps (for both Java DSL and Scala DSL) (1137 & 1055)
- Migrated to the new docs theme (same as Akka) (#1129)
- (ApiMayChange)
HttpApp#route
method was renamed toroutes
to highlight it is "all the routes" (#953)
akka-http2-support
- Synthetic Remote-Address header setting is now honored in HTTP2 server blueprint (#1088)
Bug Fixes
General
- OSGi Import-Package ranges have been fixed to allow Akka 2.5.x (#1097)
akka-http-core
- Dates in RFC1123 format with single-digit-day are now properly parsed (#1110)