Skip to content

0.13.1

Compare
Choose a tag to compare
@agourlay agourlay released this 02 Nov 16:12
· 2162 commits to master since this release
  • extraction of Json from the Session now requires an additional import
session.getJson("myKey")

becomes

import com.github.agourlay.cornichon.json.CornichonJson._
session.getJson("myKey")
  • HttpService.requestEffect can now ignore headers coming from the with-headers session key
http.requestEffect(
  request = HttpRequest.post("/oauth/token")
  ignoreFromWithHeaders = ByNames("Authorization" :: Nil)
)
  • @OlegIlyenko added the ability to focus on specific scenario during testing #158