GRDB.swift v0.25.0 Release Notes

  • ๐Ÿš€ Released October 29, 2015

    ๐Ÿ›  Fixed

    • Record.reload(_) is no longer a final method.
    • GRDB always crashes when you try to convert a database NULL to a non-optional value.

    ๐Ÿ†• New

    • CGFloat can be stored and read from the database.
    • Person.fetch(_:primaryKeys:) returns a sequence of objects with matching primary keys.
    • Person.fetchAll(_:primaryKeys:) returns an array of objects with matching primary keys.
    • Person.fetch(_:keys:) returns a sequence of objects with matching keys.
    • Person.fetchAll(_:keys:) returns an array of objects with matching keys.