Releases: codewinsdotcom/PostgresClientKit
Releases · codewinsdotcom/PostgresClientKit
v1.5.0
Breaking
Enhancements
- #39 Support for
Decodable
: see Row.decodeByColumnName(_:defaultTimeZone:)
and Row.decodeByColumnIndex(_:defaultTimeZone:)
(thanks to @khanlou for the idea and initial code)
Bug fixes
- #44: Don't buffer log output
v1.4.4
Breaking
Enhancements
Bug fixes
- #42 : Incompatible with swift-argument-parser v1.0.0+
- #43: Replace references to IBM-Swift with Kitura
v1.4.3
Breaking
Enhancements
Bug fixes
- Fix
spec.version
in PostgresClientKit.podspec
v1.4.2
Breaking
Enhancements
Bug fixes
- #38: Dependency warnings on build
v1.4.1
Breaking
Enhancements
Bug fixes
- #35: SECURITY - PostgresClientKit processes unencrypted bytes from man-in-the-middle
v1.4.0
Breaking
Enhancements
- #31: Allow
TIMEZONE
to be set to any valid time zone (overriding GMT/UTC default)
Bug fixes
v1.3.2
Breaking
Enhancements
Bug fixes
- #26: Improve performance of date/time processing, especially conversion from
String
to Date
v1.3.1
Breaking
Enhancements
- Allow Postgres
DateStyle
parameter to be ISO, MDY
, ISO, DMY
, or ISO, YMD
(#30).
Bug fixes
v1.3.0
Breaking
Enhancements
- Support for SCRAM-SHA-256 authentication (#5 )
Bug fixes
v1.2.0
Breaking
Enhancements
-
New applicationName
property on ConnectionConfiguration
to set the Postgres application_name
included in the pg_stat_activity
view and displayed by pgAdmin (#21)
-
New retrieveColumnMetadata
parameter on Statement.execute(...)
and new columns
property on Cursor
to optionally retrieve metadata about the columns in the result of executing a Statement
(#12, #18)
Bug fixes