rxjava-jdbc

Efficient execution and functional composition of database calls using jdbc and RxJava Observables

APACHE-2.0 License

Stars
807
rxjava-jdbc - 0.7.19 Latest Release

Published by davidmoten almost 2 years ago

Enhancements

Full Changelog: https://github.com/davidmoten/rxjava-jdbc/compare/0.7.18...0.7.19

rxjava-jdbc - 0.7.18

Published by davidmoten over 2 years ago

Bug fix

  • use getColumnLabel instead of getColumnName to support As clauses #101

Enhancements

  • bump mockito-core from 1.10.19 to 4.3.1
  • upgrade checkstyle checks.xml
  • bump maven-project-info-reports-plugin from 2.4 to 3.1.1
  • remove obsolete cobertura plugin
  • Bump slf4j.version from 1.7.34 to 1.7.35
  • Bump junit-extras from 0.3 to 0.4
  • Bump taglist-maven-plugin from 2.4 to 3.0.0
  • Bump maven-pmd-plugin from 3.0.1 to 3.15.0
  • update lint option in javadoc plugin
  • Bump jdepend-maven-plugin from 2.0-beta-2 to 2.0
  • Bump derby from 10.12.1.1 to 10.15.2.0
  • bump javadoc plugin, add javadoc
  • fix deprecated method use in RxUtil
  • Bump maven-compiler-plugin from 3.5.1 to 3.9.0
  • Bump junit from 4.13.1 to 4.13.2
  • Bump maven-site-plugin from 3.4 to 3.10.0
  • Bump javancss-maven-plugin from 2.0 to 2.1
  • Bump exec-maven-plugin from 1.5.0 to 3.0.0
  • Bump easymock from 3.4 to 4.3
  • Bump maven-jxr-plugin from 2.4 to 3.1.1
  • Bump guava-mini from 0.1.1 to 0.1.4
  • Bump maven-checkstyle-plugin from 2.11 to 3.1.2
  • Bump jmh.version from 1.15 to 1.34
  • bump h2 from 1.4.192 to 2.1.210, fix tests
  • Bump findbugs-maven-plugin from 3.0.1 to 3.0.5
  • Bump slf4j.version from 1.7.21 to 1.7.34
  • Bump commons-io from 2.4 to 2.11.0
  • migrate CI from Travis to GitHub Actions, add dependabot
  • Bump junit from 4.12 to 4.13.1

New Contributors

Full Changelog: https://github.com/davidmoten/rxjava-jdbc/compare/0.7.17...0.7.18

rxjava-jdbc - 0.7.17

Published by davidmoten over 2 years ago

Enhancements

  • upgrade to rxjava-extras 0.8.0.18

Full Changelog: https://github.com/davidmoten/rxjava-jdbc/compare/0.7.16...0.7.17

rxjava-jdbc - 0.7.16

Published by davidmoten over 6 years ago

  • upgrade to rxjava 1.3.8 and rxjava-extras 0.8.0.15
rxjava-jdbc - 0.7.15

Published by davidmoten over 6 years ago

  • upgrade rxjava to 1.3.7 and rxjava-extras to 0.8.0.14
rxjava-jdbc - 0.7.13

Published by davidmoten almost 7 years ago

  • upgrade to rxjava 1.3.3
rxjava-jdbc - 0.7.11

Published by davidmoten about 7 years ago

  • upgrade to rxjava 1.3.2
rxjava-jdbc - 0.7.9

Published by davidmoten about 7 years ago

  • upgrade to rxjava 1.3.1, rxjava-extras 0.8.0.9
rxjava-jdbc - 0.7.7

Published by davidmoten over 7 years ago

  • #79 Allow setting of arbitrary integer values to fetchSize especially Integer.MIN_VALUE which is used by mysql driver for a backpressured streaming resultset. Thanks @michele-mancioppi!
rxjava-jdbc - 0.7.6

Published by davidmoten over 7 years ago

  • #75 make fetchSize configurable in select queries . Thanks @michele-mancioppi!
rxjava-jdbc - 0.7.5

Published by davidmoten over 7 years ago

  • upgraded to rxjava 1.2.10
rxjava-jdbc - 0.7.3

Published by davidmoten almost 8 years ago

  • 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
rxjava-jdbc - 0.7.3-RC1

Published by davidmoten about 8 years ago

  • #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
rxjava-jdbc - 0.7.2

Published by davidmoten over 8 years ago

  • add scala-style accessor methods to tuples: tuple._1(), tuple._2(), etc
  • upgrade to rxjava 1.1.5
rxjava-jdbc - 0.7.1

Published by davidmoten over 8 years ago

  • #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
rxjava-jdbc - 0.6.8

Published by davidmoten about 9 years ago

  • #44 fix for Postgres double colons in sql that should not be interpreted as named parameters. Thanks @usultis!
  • improved test coverage of NamedParameters
rxjava-jdbc - 0.6.7

Published by davidmoten about 9 years ago

  • updated to rxjava-extras 0.6.5 which includes a backpressure fix for OperatorFromTransformer and hopefully fixes backpressure issues with parameterOperator and dependsOperator.
rxjava-jdbc - 0.6.5

Published by davidmoten about 9 years ago

  • #41 fix to autoMap, thanks @vtsyryuk!
  • added blocking execute method to update queries
rxjava-jdbc - 0.6.3

Published by davidmoten about 9 years ago

  • #35 add resultSetTransform(Func1<ResultSet, ? extends ResultSet>) to database and select query builders
rxjava-jdbc - 0.6.1

Published by davidmoten over 9 years ago

  • 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