GRDB.swift v1.2.1 Release Notes

  • 🚀 Released July 19, 2017 • diff

    🛠 Fixed

    • ⬆️ Upgrade custom SQLite builds to v3.19.3 (thanks to @swiftlyfalling).
    • The Query Interface now generates IS NULL SQL snippets for comparisons with DatabaseValue.null:

      // SELECT * FROM players WHERE email IS NULL
      Player.filter(Column("email") == DatabaseValue.null)
      

      It used to generate = NULL which would not behave as expected.