Skip to content

Releases: vapor/postgres-kit

PostgreSQL 1.5.0

14 Oct 23:34
69ccf32

Choose a tag to compare

  • Fixed PostgresError.stackTrace conformance to Debuggable. (#146, #147)

⚠️ This is technically a breaking change if you use PostgresError.stackTrace directly. However, this is normally accessed via Debuggable conformance so most users should not be affected.

PostgresKit 2.0.0 Alpha 2.1

23 Sep 21:55
2cdd00a

Choose a tag to compare

Pre-release
  • Connections from PostgresConnectionSource are now closed properly if authentication fails. (#144)

PostgreSQL 1.4.2

08 Sep 09:07
561fa79

Choose a tag to compare

Fixed:

  • Decoding an array with a NULL value in it no longer crashes (#141 - #142).

PostgresKit 2.0.0 Alpha 2

02 Aug 18:38

Choose a tag to compare

Pre-release
  • Implemented missing methods in PostgresDataDecoder and PostgresDataEncoder.

PostgresKit 2.0.0 Alpha 1

06 Jun 20:20
4b25340

Choose a tag to compare

PostgreSQL 1.4.1

14 Mar 18:19
41cec28

Choose a tag to compare

Fixed:

  • Improved row decoding performance. (#134)

PostgreSQL 1.4.0

01 Mar 02:46

Choose a tag to compare

New:

  • Added a new PostgreSQLPolygon type for interacting with POLYGON columns. (#129)

PostgreSQL 1.3.0

26 Feb 19:54

Choose a tag to compare

Fixed:

  • PostgreSQLPoint now encodes and decodes endianness correctly. (#125, #126)

⚠️ If you were using 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

19 Feb 15:58

Choose a tag to compare

Fixed:

  • Fixed keyed PostgreSQLData encoding for empty containers. (#123)
  • Fixed a reference cycle in PostgreSQLConnection. (#116)

PostgreSQL 1.2.1

12 Feb 20:52
cbe5505

Choose a tag to compare

Fixed:

  • Added swift-nio-ssl as an explicit dependency. (#121)