GRDB.swift v0.63.0 Release Notes

  • ๐Ÿš€ Released May 17, 2016

    ๐Ÿ›  Fixed

    • โช Restored support for iOS before 8.2 and OS X before 10.10. Fixes #51.

    ๐Ÿ’ฅ Breaking Changes

    • ๐Ÿ‘Œ Support for advanced migrations is not available until iOS 8.2 and OS X 10.10:

       struct DatabaseMigrator {
      -    mutating func registerMigration(identifier: String, withDisabledForeignKeyChecks disabledForeignKeyChecks: Bool = false, migrate: (Database) throws -> Void)
      +    mutating func registerMigration(identifier: String, migrate: (Database) throws -> Void)
      +    @available(iOS 8.2, OSX 10.10, *)
      +    mutating func registerMigrationWithDisabledForeignKeyChecks(identifier: String, migrate: (Database) throws -> Void)