mod_swift v0.7.6 Release Notes

Release Date: 2017-04-21 // almost 7 years ago
  • Minor adjustments, the main feature being a demo of a typesafe-select in
    mods_baredemo.

    dbd.select("SELECT \* FROM pets") { (name : String, count : Int?) in req.puts("\<tr\>\<td\>\(name)\</td\>\<td\>\(count)\</td\>\</tr\>") }
    

    No manual mapping required, the required static Swift types are the closure types.


Previous changes from v0.7.5

  • As part of mod_swift we have been shipping mods_todomvc. Which is an implementation of a Todo-Backend, a simple JSON API to access and modify a list of todos. This release takes Todo-Backend one step further: Access the todos using CalDAV!

    That's it. Demos how to implement a basic CalDAV/CardDAV server using Swift.