Skip to content

Releases: vapor/fluent-postgres-driver

Fluent PostgreSQL 1.0.0 RC 2.1

11 May 00:31

Choose a tag to compare

Pre-release
1.0.0-rc.2.1

codablekit updates

Fluent PostgreSQL 1.0.0 RC 2

21 Mar 22:24
41832e0

Choose a tag to compare

Pre-release

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.

Milestone

Fluent PostgreSQL 1.0.0 RC 1.1

27 Feb 23:18
006386a

Choose a tag to compare

Pre-release

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 PostgreSQLType on dictionary has been removed now to minimize confusion. Workaround: Use a struct instead.

Fluent PostgreSQL 1.0.0 RC 1

24 Feb 01:32
8e9bb22

Choose a tag to compare

Pre-release
Merge pull request #1 from vapor/beta

fluent psql beta

Fluent PostgreSQL 1.0.0 Beta 3

19 Feb 20:10

Choose a tag to compare

Pre-release

New:

  • enableIdentityColumns: Bool? parameter on FluentPostgreSQLProvider. If false, the identity columns will not be used (suitable for PostgreSQL < 10).
try services.register(FluentPostgreSQLProvider(enableIdentityColumns: false))
  • PostgreSQLModel enforces id: Int?, use new PostgreSQLUUIDModel for id: UUID?. Use Model manually for customization.

Fixed:

  • Fixed an issue where using the Request as DatabaseConnectable could result in hanging queries.

Milestone

Fluent PostgreSQL 1.0.0 Beta 2.1

15 Feb 02:51

Choose a tag to compare

Pre-release
1.0.0-beta.2.1

prerelease version updates

Fluent PostgreSQL 1.0.0 Beta 2

14 Feb 18:56
94fe741

Choose a tag to compare

Pre-release

Fixed:

Fluent PostgreSQL 1.0.0 Beta 1

10 Feb 03:23
4ffaf9b

Choose a tag to compare

Pre-release
Merge pull request #11 from siemensikkema/feature/fix-dependencies

Fix dependency versions