GRDB.swift v0.73.0 Release Notes

  • ๐Ÿš€ Released June 20, 2016

    ๐Ÿ‘Œ Improved

    • FetchedRecordsController doesn't check for changes when a database transaction modifies columns that are not present in the request it tracks.

    ๐Ÿ†• New

    • ๐Ÿ“š The query interface lets you provide arguments to your sql snippets (documentation):

      let wines = Wine.filter(sql: "origin = ?", arguments: ["Burgundy"]).fetchAll(db)
      
    • ๐Ÿ“š Transaction observers can efficiently filter the database changes they are interested in (documentation).

    • ๐Ÿ‘Œ Support for NSUUID (documentation)