Skip to content

Releases: vapor/postgres-kit

PostgreSQL 1.1.0

05 Nov 20:23
c8b01a3
Compare
Choose a tag to compare
Merge pull request #89 from vapor/refresh-table-names

allow table name refresh

PostgreSQL 1.0.2

17 Sep 10:50
dffb708
Compare
Choose a tag to compare

Fixed:

  • Adds support for decoding integers from numeric data. (#102)

PostgreSQL 1.0.1

26 Jul 17:03
3fcc626
Compare
Choose a tag to compare
  • Fixes OID decoding as UInt32 where Int32 didn’t have sufficient space for some values

PostgreSQL 1.0.0

26 Jul 00:14
a4c205a
Compare
Choose a tag to compare

PostgreSQL 1.0 is here 🎉
🐘 Non-blocking, event-driven Swift client for PostgreSQL.

Docs:
docs.vapor.codes/3.0/postgresql/getting-started
API Docs:
api.vapor.codes/postgresql/latest/PostgreSQL


Changes since last RC:

Fixed:

  • Updated doc blocks and made some unnecessary APIs internal (#94).

PostgreSQL 1.0.0 RC 4.4

17 Jul 00:05
7659f62
Compare
Choose a tag to compare
Pre-release

New:

  • Update to vapor/sql 2.0.0 release (#93).

Fixed:

  • Regexp now uses correct operator (#90).

PostgreSQL 1.0.0 RC 4.3

06 Jul 19:41
7d87337
Compare
Choose a tag to compare
Pre-release

New:

  • Added support for DROP COLUMN and DROP CONSTRAINT (#88).

PostgreSQL 1.0.0 RC 4.2.1

23 Jun 06:23
c34533e
Compare
Choose a tag to compare
Pre-release

Fixed:

  • Fixes an issue that caused arrays with non-primitive types to serialize incorrect (#86).
  • Fixes an issue that caused upsert clauses to incorrectly serialize table names.

PostgreSQL 1.0.0 RC 4.2

22 Jun 22:23
Compare
Choose a tag to compare
Pre-release

New:

  • New methods for creating and dropping indexes (#84).
conn.create(index: "test_idx", on: \Planet.name).unique.run()
conn.drop(index: "test_idx").run()

Fixed:

  • Upsert clause now correctly allows columns to be passed through (#81).

PostgreSQL 1.0.0 RC 4.1

21 Jun 22:53
Compare
Choose a tag to compare
Pre-release

Fixed:

  • UInt8 and Int8 now default to using SMALLINT data type (#82).

PostgreSQL 1.0.0 RC 4

19 Jun 23:07
d67f6a5
Compare
Choose a tag to compare
PostgreSQL 1.0.0 RC 4 Pre-release
Pre-release

New:

  • Upgrade to vapor/sql 2.0 protocols.