Skip to content

v10.0.7

Compare
Choose a tag to compare
@ktoso ktoso released this 25 May 16:44
· 2598 commits to main since this release

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 to routes 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)