Releases: vapor/fluent-postgres-driver
Releases · vapor/fluent-postgres-driver
Fluent PostgreSQL 1.0.0 RC 2.1
1.0.0-rc.2.1 codablekit updates
Fluent PostgreSQL 1.0.0 RC 2
New:
- Vapor is now running on Swift NIO!
- Table names are now returned alongside column names, allowing for better join support.
- Improved timestamp precision.
- Server version is now automatically checked during provider boot.
Fluent PostgreSQL 1.0.0 RC 1.1
New:
- Support for
DEFAULT ...values on PostgreSQL columns.
Fixed:
- Fixed an issue where nested structs would not be properly added in migrations.
Breaking changes:
- Due to limitations with Swift 4.1 (dynamic casting) nested dictionaries will not be supported on PostgreSQL models. This compiled previously but didn't work. The free conformance to
PostgreSQLTypeon dictionary has been removed now to minimize confusion. Workaround: Use a struct instead.
Fluent PostgreSQL 1.0.0 RC 1
Merge pull request #1 from vapor/beta fluent psql beta
Fluent PostgreSQL 1.0.0 Beta 3
New:
enableIdentityColumns: Bool?parameter onFluentPostgreSQLProvider. Iffalse, the identity columns will not be used (suitable for PostgreSQL < 10).
try services.register(FluentPostgreSQLProvider(enableIdentityColumns: false))PostgreSQLModelenforcesid: Int?, use newPostgreSQLUUIDModelforid: UUID?. UseModelmanually for customization.
Fixed:
- Fixed an issue where using the
RequestasDatabaseConnectablecould result in hanging queries.
Fluent PostgreSQL 1.0.0 Beta 2.1
1.0.0-beta.2.1 prerelease version updates
Fluent PostgreSQL 1.0.0 Beta 2
Fixed:
- Updated to Fluent 3.0.0 Beta 2
Fluent PostgreSQL 1.0.0 Beta 1
Merge pull request #11 from siemensikkema/feature/fix-dependencies Fix dependency versions