0.8.2 : Http breaking changes
Maintenance release introducing a couple of syntax breaking changes which can be fixed mechanically.
- Http Dsl
post(url, payload)
is nowpost(url).withBody(body)
- Http Service
- methods are not capitalized anymore
payload: String
argument is replaced bybody: Option[String]
As a side effect, all http verbs in the DSL have a similar builder, that means it is now possible to have a request body in http GET, HEAD and DELETE.