Releases: vapor/postgres-kit
Releases · vapor/postgres-kit
PostgreSQL 1.5.0
PostgresKit 2.0.0 Alpha 2.1
- Connections from
PostgresConnectionSourceare now closed properly if authentication fails. (#144)
PostgreSQL 1.4.2
PostgresKit 2.0.0 Alpha 2
- Implemented missing methods in
PostgresDataDecoderandPostgresDataEncoder.
PostgresKit 2.0.0 Alpha 1
More information on Vapor 4 alpha releases:
https://medium.com/@codevapor/vapor-4-alpha-1-releases-begin-94a4bc79dd9a
API Docs:
https://api.vapor.codes/postgres-kit/master/PostgresKit/index.html
PostgreSQL 1.4.1
Fixed:
- Improved row decoding performance. (#134)
PostgreSQL 1.4.0
New:
- Added a new
PostgreSQLPolygontype for interacting withPOLYGONcolumns. (#129)
PostgreSQL 1.3.0
Fixed:
PostgreSQLPoint prior to this patch, your database may be storing point columns with flipped endianness. After this patch, points will be fetched and saved using the correct format, meaning old values may now be flipped. Use the following helper method to flip PostgreSQLPoint endianness.
let x = PostgreSQLPoint(x: 3.14, y: -42).endiannessflipped()
print(x)PostgreSQL 1.2.2
PostgreSQL 1.2.1
Fixed:
- Added
swift-nio-sslas an explicit dependency. (#121)