akka-http

The Streaming-first HTTP server/module of Akka

OTHER License

Stars
1.3K

Bot releases are hidden (Show)

akka-http - 10.2.4

Published by jrudolph over 3 years ago

See the announcement, release notes and the 10.2.4 milestone for more information.

akka-http - 10.1.14

Published by jrudolph over 3 years ago

See the announcement, release notes and the 10.1.14 milestone for more information.

akka-http - 10.2.3

Published by johanandren over 3 years ago

See the announcement, release notes and the 10.2.3 milestone for more information.

akka-http - 10.2.2

Published by raboof almost 4 years ago

See the announcement, release notes and the 10.2.2 milestone for more information.

akka-http - 10.1.13

Published by jrudolph almost 4 years ago

See the announcement, release notes and the 10.1.13 milestone for more information.

akka-http - 10.2.1

Published by raboof about 4 years ago

See the announcement, release notes and the milestone for more information.

akka-http - 10.2.0

Published by jrudolph about 4 years ago

See the announcement, release notes and the migration guide and milestone for more information.

akka-http - 10.2.0-RC2

Published by jrudolph about 4 years ago

See the announcement, release notes and the migration guide for more information.

akka-http - 10.2.0-RC1

Published by raboof over 4 years ago

See the announcement, release notes and the migration guide for more information.

akka-http - v10.1.12

Published by raboof over 4 years ago

See the announcement, release notes and the 10.1.12 milestone for more information.

akka-http - 10.2.0-M1

Published by raboof over 4 years ago

See the announcement, release notes and the 10.2.0-M1 milestone for more information.

akka-http - v10.1.11

Published by raboof almost 5 years ago

See the announcement, release notes and the 10.1.11 milestone for more information.

akka-http - v10.1.10

Published by raboof about 5 years ago

See the announcement, release notes and the 10.1.10 milestone for more information.

akka-http - v10.1.9

Published by raboof over 5 years ago

See the announcement, release notes and the 10.1.9 milestone for more information.

akka-http - v10.1.8

Published by raboof over 5 years ago

See the announcement, release notes and the 10.1.8 milestone for more information.

akka-http - v10.1.7

Published by raboof almost 6 years ago

See the announcement, release notes and the 10.1.7 milestone for more information.

akka-http - v10.0.15

Published by raboof almost 6 years ago

See the announcement, release notes and the 10.0.15 milestone for more information.

akka-http - v10.1.6

Published by jrudolph almost 6 years ago

See the announcement, release notes and the 10.1.6 milestone for more information.

akka-http - v10.0.14

Published by jrudolph about 6 years ago

10.0.14 is security patch release in the 10.0.x series of Akka HTTP.

It is mainly a mitigation for the DoS vulnerability when using decodeRequest

Migration Notes

To avoid excessive memory usage we introduced two new limits that apply per default:

  • akka.http.routing.decode-max-size: This limit applies when you use decodeRequest to limit the amount of decompressed data. The default limit is 8 megabytes.
  • akka.http.parsing.max-to-strict-bytes: This limit applies when you use HttpEntity.toStrict or the toStrictEntity directive (and related directives). It will only collect up to the given amount data and fail otherwise. The default limit is 8 megabytes.

Depending on your application requirements, you may want to change these settings.

Changes since 10.0.13

For a full overview you can also see the 10.0.14 milestone:

  • Restrict the maximum size of a request entity after uncompressing it with decodeRequest #2137
  • Restrict the maximum size of a request entity when reading it into memory with toStrict #2186
  • Support parameters for custom media types (#2005)
akka-http - v10.1.5

Published by raboof about 6 years ago

10.1.5 is the sixth release in the 10.1.x series of Akka HTTP.

It is mainly a mitigation for the DoS vulnerability when using decodeRequest

Migration Notes

To avoid excessive memory usage we introduced two new limits that apply per default:

  • akka.http.routing.decode-max-size: This limit applies when you use decodeRequest to limit the amount of decompressed data. The default limit is 8 megabytes.
  • akka.http.parsing.max-to-strict-bytes: This limit applies when you use HttpEntity.toStrict or the toStrictEntity directive (and related directives). It will only collect up to the given amount data and fail otherwise. The default limit is 8 megabytes.

Depending on your application requirements, you may want to change these settings.

Changes since 10.1.4

For a full overview you can also see the 10.1.5 milestone:

  • Restrict the maximum size of a request entity after uncompressing it with decodeRequest #2137
  • Restrict the maximum size of a request entity when reading it into memory with toStrict #2186
  • Correctly set a default parallelism value when none is specified for HTTP/2 #2165
  • Avoid matching an empty pattern when using PathMatcher.repeat #2097
  • Add ServerSentEvent.heartbeat() to the Java DSL #2187