Releases: finagle/finagle-postgres
Releases · finagle/finagle-postgres
0.4.3
- Finagle 6.44
- SSL host verification
Thanks @dangerousben for both changes!
0.4.2
- Support Scala 2.12. updated dependencies (thanks @crispywalrus and @golem131!)
- Expose service availability in client (thanks @clhodapp!)
- Releasing savepoints and more DDL statements (thanks @dangerousben!)
0.4.1
- Fixes connection hangs in certain cases
- Supports patchless for Updates DSL
0.4.0
Breaking API changes:
- There is no more Value wrapper
- Decoding a column value is based on the requested type - this means that there is no more row.get(Int) method (without type arguments). Instead, there is getAnyOption which returns an Option[Any] of the default type for that column's OID.
- Added a new subproject finagle-postgres-shapeless, which supports shapeless for boilerplate elimination
- Added a new query DSL under the finagle-postgres-shapeless module
- Started an effort for some decent documentation
Version 0.2.0
This version includes a reworking of the type conversion between postgres and JVM, and supports binary mode parameters and results.
0.1.0
This is the first public release that enables basic functionality.
libraryDependencies ++= Seq(
"com.github.finagle" %% "finagle-postgres" % "0.1.0"
)