Vapor v4.23.0 Release Notes

Release Date: 2020-07-16 // almost 4 years ago
  • 🚀 ###### This patch was authored by @dimitribouniol and released by @tanner0101.

    Enables call sites that use URIs to allow for string literals that make use of interpolation (#2442).

    app.get("hello") { req -\> EventLoopFuture\<String\> inreturn req.client.get("\(Constants.basePath)/status") .flatMapThrowing { res throws inreturn "Hello, world!" } }