GRDB.swift v0.18.0 Release Notes

  • 🚀 Released September 26, 2015

    🛠 Fixed

    • It is now mandatory to provide values for all arguments of an SQL statement. GRDB used to assume NULL for missing ones.

    🆕 New

    • Row.dataNoCopy(atIndex:) and Row.dataNoCopy(named:).
    • Blob.dataNoCopy
    • DatabaseValue.dataNoCopy

    💥 Breaking Changes

    • String.fetch... now returns non-optional values. Use Optional<String>.fetch... when values may be NULL.