Skip to content

Releases: vapor/fluent-postgres-driver

Fluent PostgreSQL 1.0.0 RC 1.1

27 Feb 23:18
006386a
Compare
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
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare
Pre-release

Fixed:

Fluent PostgreSQL 1.0.0 Beta 1

10 Feb 03:23
4ffaf9b
Compare
Choose a tag to compare
Pre-release
Merge pull request #11 from siemensikkema/feature/fix-dependencies

Fix dependency versions