Releases: vapor/postgres-kit
Releases · vapor/postgres-kit
PostgresKit 2.0.0 Alpha 2
- Implemented missing methods in
PostgresDataDecoder
andPostgresDataEncoder
.
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
PostgreSQLPolygon
type for interacting withPOLYGON
columns. (#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-ssl
as an explicit dependency. (#121)
PostgreSQL 1.2.0
New:
- Adds three new binary operators for working with arrays. (#119)
PostgreSQLBinaryOperator.contains // "@>"
PostgreSQLBinaryOperator.isContainedBy // "<@"
PostgreSQLBinaryOperator.overlap // "&&"
PostgreSQL 1.1.2
Fixed:
- Fixed a bug where zeroes could be missing from decoded numeric values. (#111)