You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Close connection if requestTLS fails (vapor#134)
* Close connection if requestTLS fails
* Add test to ensure we don't hit assert from leaking connection
Support custom JSON coders (vapor#127)
* Support non Foundation JSON coders
* add a `PostgresJSONEncoder` protocol with an API that mirrors the Foundation `JSONEncoder`'s decoding function
* add global `_defaultJSONEncoder` variable used in the JSON and JSONB type and that is defaulted to a Foundation `JSONEncoder`
* add a `PostgresJSONDecoder` protocol with an API that mirrors the Foundation `JSONDecoder`'s decoding function
* add global `_defaultJSONDecoder` variable used in the JSON and JSONB type and that is defaulted to a Foundation `JSONDecoder`
* Add docblocks for _defaultJSON{encoder,decoder} and their respective unit tests
Fix prepare(query:) when no data returned (vapor#123)
* Updated prepared query handling to work when no results are returned
* Added test for issue 122