Releases: davidmoten/rxjava-jdbc
Releases · davidmoten/rxjava-jdbc
0.7.5
- upgraded to rxjava 1.2.10
0.7.3
- API changes (use
compose
instead of lift
) #70
- emit error if batching used outside of a transaction
- get
Preconditions
from guava-mini dependency
- update rxjava to 1.2.1 and rxjava-extras to 0.8.0.4
0.7.3-RC1
- #67 implement batch updates
- rxjava-string dropped as compile/runtime dependency
- rxjava-math scoped as test dependency (was runtime dependency)
- update optional hikaricp dependency to latest version
- update rxjava to 1.2.0
0.7.2
- add scala-style accessor methods to tuples:
tuple._1()
, tuple._2()
, etc
- upgrade to rxjava 1.1.5
0.7.1
- #55 handle exceptions using
Exceptions.throwOrReport
so that onErrorNotImplementedException
gets thrown
- avoid string concatenation in
log.debug
call (minor perf improvement)
- update to rxjava-extras 0.7.7
- upgrade to rxjava 1.1.1
0.6.8
- #44 fix for Postgres double colons in sql that should not be interpreted as named parameters. Thanks @usultis!
- improved test coverage of
NamedParameters
0.6.7
- updated to rxjava-extras 0.6.5 which includes a backpressure fix for
OperatorFromTransformer
and hopefully fixes backpressure issues with parameterOperator
and dependsOperator
.
0.6.5
- #41 fix to autoMap, thanks @vtsyryuk!
- added blocking
execute
method to update queries
0.6.3
- #35 add
resultSetTransform(Func1<ResultSet, ? extends ResultSet>)
to database and select query builders
0.6.1
- Named parameters support (see documentation)
- automap should throw exception if mapped interface column method has parameters
- ensure count of question marks in sql ignores question marks in quotes
- upgrade rxjava dependency to 1.0.12