Skip to content

Releases: vapor/postgres-kit

2.13.4 - Update required versions of dependencies

16 May 20:03
75004d9
Compare
Choose a tag to compare

What's Changed

Update required versions of dependencies by @gwynne in #265

Also removes the now unneeded dependency on SwiftAtomics.

This patch was released by @gwynne

Full Changelog: 2.13.3...2.13.4

2.13.3 - Override SQLDataType.blob to BYTEA for SQLKit users

02 May 08:53
ad8ae1e
Compare
Choose a tag to compare

What's Changed

Override SQLDataType.blob to BYTEA for SQLKit users by @gwynne in #264

Fluent already does this for users of FluentPostgresDriver, this just adds the same behavior to the equivalent data type at the SQLKit layer.

This patch was released by @gwynne

Full Changelog: 2.13.2...2.13.3

2.13.2 - Fix package manifest

26 Apr 22:09
3d34228
Compare
Choose a tag to compare

What's Changed

Fix package manifest by @gwynne in #262

The Package.swift for PostgresKit incorrectly specified the ExistentialAny feature with Swift 5.8. Add a 5.9 manifest to specify it for 5.9 and later.

This patch was released by @gwynne

Full Changelog: 2.13.1...2.13.2

2.13.1 - Add missing Sendable annotations

02 Apr 15:51
e26763a
Compare
Choose a tag to compare

What's Changed

Add missing Sendable annotations by @gwynne in #260

Adds two Sendable annotations that were missed in the previous update.

This patch was released by @gwynne

Full Changelog: 2.13.0...2.13.1

2.13.0 - Apply updates for improved interop with SQLKit

25 Mar 05:36
f6c1bff
Compare
Choose a tag to compare

What's Changed

Apply updates for improved interop with SQLKit by @gwynne in #259

These changes bump the minimum Swift version to 5.8 and prepare PostgresKit for SQLKit鈥檚 overhaul PR. The SQLKit changes are NOT required by this update.

Reviewers

Thanks to the reviewers for their help:

This patch was released by @gwynne

Full Changelog: 2.12.3...2.13.0

2.12.3 - Fix mishandling of URL

31 Jan 08:25
475bf6f
Compare
Choose a tag to compare

What's Changed

Fix mishandling of URL by @gwynne in #257

We have for some time now been incorrectly encoding URLs in an incorrect format that fails to trivially round-trip back through decoding. This is now fixed. Any previously broken data stored in a database affected by this issue will now be correctly read back and will have the correct format when next written.

[!NOTE]
This is not related in any way to the recent issues with Vapor鈥檚 URI type; it is a separate concern affecting the URL type that comes from Foundation.

Also incidentally fixes #255

Reviewers

Thanks to the reviewers for their help:

This patch was released by @gwynne

Full Changelog: 2.12.2...2.12.3

2.12.2 - Enable libpq-compatible "postgresql" URL schemes

14 Aug 15:54
80ab773
Compare
Choose a tag to compare

What's Changed

Enable libpq-compatible "postgresql" URL schemes by @gwynne in #251

For libpq compatibility, the following additional schemes are now accepted in database URLs:

  • "postgresql"
  • "postgresql+tcp"
  • "postgresql+uds"

Reviewers

Thanks to the reviewers for their help:

This patch was released by @gwynne

Full Changelog: 2.12.1...2.12.2

2.12.1 - Remove use of legacy codepath when establishing Postgres connections

11 Aug 02:27
81d1106
Compare
Choose a tag to compare

What's Changed

Remove use of legacy codepath when establishing Postgres connections by @gwynne in #249

Also tidies CI as usual.

Reviewers

Thanks to the reviewers for their help:

This patch was released by @gwynne

Full Changelog: 2.12.0...2.12.1

2.12.0 - Support the sslmode URL query parameter and UDS URLs

27 Jul 19:07
e0f6bc9
Compare
Choose a tag to compare

What's Changed

Support the sslmode URL query parameter and UDS URLs by @gwynne in #248

Overhauls the URL parser for connection configurations to accept considerably more flexible syntax. See the documentation for details of the new syntax. (A screenshot of the new documentation is included below in case the website doesn鈥檛 update immediately.)

Reviewers

Thanks to the reviewers for their help:

This patch was released by @gwynne.

Full Changelog: 2.11.4...2.12.0

2.11.4 - Add Postgres support for nested subpath (JSON) expressions

11 Jul 06:25
b69f427
Compare
Choose a tag to compare
This patch was authored and released by @gwynne.

Implements SQLKit's new SQLDialect.nestedSubpathExpression(in:for:) method. #246