Releases: vapor/postgres-kit
Releases · vapor/postgres-kit
Improved PostgresConfiguration(url:) support
- Adds support for URLs with scheme
postgres://
andpostgresql://
- Adds support for
sslmode=require
query string - TLS certificate verification is now enabled by default
PostgresKit 2.0.0 Beta 3.1
- Fix a bug decoding nil values (#162)
PostgresKit 2.0.0 Beta 3
Refactors PostgresDataEncoder
to be more flexible. There are now three distinct paths for encoding:
- Single value: Cast to
PostgresDataConvertible
, if fail, unwrap and try again - Unkeyed value: Convert to
JSONB[]
- Keyed value: Convert to
JSONB
Refactors PostgresDataDecoder
to operate similarly.
Also updates PostgresRow
's SQLRow
conformance to latest changes.
PostgresKit 2.0.0 Beta 2.2
- Support custom JSON coders in
PostgresDataEncoder
andPostgresDataDecoder
(#159)
PostgresKit 2.0.0 Beta 2.1
PostgresDataEncoder/Decoder
now support arrays (#160)
PostgresKit 2.0.0 Beta 2
PostgresKit 2.0.0 Beta 1
Update to AsyncKit 1.0.0 Beta 1.
PostgreSQL 1.5.0
PostgresKit 2.0.0 Alpha 2.1
- Connections from
PostgresConnectionSource
are now closed properly if authentication fails. (#144)