Unclaimed project
Are you a maintainer of colossus? Claim this project to take control of your public changelog and roadmap.
Changelog
I/O and Microservice library for Scala
To migration from 0.9.x to 0.10.x:
Package namespace changes, a non-exhausted list:
colossus.protocols.http.server.HttpServer => colossus.protocols.http.HttpServercolossus.protocols.http.server.Initializer => colossus.protocols.http.Initializercolossus.protocols.http.server.RequestHandler => colossus.protocols.http.RequestHandlercolosuss.metrics.LoggerSender => colosuss.metrics.senders.LoggerSendercolosuss.metrics.OpenTsdbSender => colosuss.metrics.senders.OpenTsdbSenderContent type removed from HttpBody and is now correctly accessible as a HttpHeader. For example:
request.ok(HttpBody("text", HttpHeader("content-type", "application/json")))
Becomes
request.ok(HttpBody("text")).withContentType(ContentType.ApplicationJson)