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
Further improve the nil value handling in arrays (vapor#280)
Revise nil handling to work properly with types which don't accidentally get the old Array: PostgresDataConvertible conformance.
Fix handling of array bindings containing optional values (vapor#279)
* Update package
* Use SQLKit's SomeCodingKey instead of another copy of it. Handle nil values on an extreme fast-path instead of the slowest path. Support values conforming to Postgres[Throwing]DynamicTypeEncodable but not PostgresEncodable. Correctly handle nil values in arrays with optional element types.
Ensure error messages thrown by data decoding provide useful informat…
…ion (vapor#277)
* Ensure that error messages thrown by PostgresDataTranslation contain all of the useful information
* Add some docs notes about use with PostgresClient. Also bump CI.
* Fixup docs a bit more
Bump Swift minimum to 6.0 (vapor#275)
* Bump Swift minimum to 6.0, update CI, convert tests to SwiftTesting
* Update test.yml
* Update test.yml
* Update test.yml
* 6.0 seems to have trouble with InternalImportsByDefault, or else the others aren't honoring it
Minor cleanups (vapor#273)
* Bump Swift min to 5.10, update README and API docs, clean up some doc comments, run swift-format, fix warning about retroactive conformance in 6.2.
* Apply PR feedback
* Fixup those darn docs
Sendable cleanup (vapor#271)
* Update minimum Swift to 5.9
* Silence retroactive conformance warnings
* Fix Sendable warnings in withSession(_:) and make SQLPostgresConfiguration Sendable
* Minimal swift-format pass
* Make SQLBenchmark test async. Disable questionably-useful performance test
* Update DocC theme settings
* Update CI
Update required versions of dependencies (vapor#265)
Update required versions of dependencies. Remove unneeded dependency on SwiftAtomics. Tiny bit of cleanup.