GRDB.swift v0.66.0 Release Notes

  • ๐Ÿš€ Released May 21, 2016

    ๐Ÿ›  Fixed

    • ๐Ÿ›  The Record class no longer adopts the CustomStringConvertible protocol. This frees the description identifier for your record properties. Fixes #58.

    • ๐Ÿšš Several database connections can now be used at the same time: you can move values from one database to another. Fixes #55.

    ๐Ÿ’ฅ Breaking Changes

    • ๐Ÿ”ง The maximum number of reader connections in a database pool is now configured in a Configuration object.

       final class DatabasePool {
      -    init(path: String, configuration: Configuration = default, maximumReaderCount: Int = default) throws
      +    init(path: String, configuration: Configuration = default) throws
       }
       struct Configuration {
      +    var maximumReaderCount: Int = default
       }