AO SQL FailFast Changelog

ao-sql-failfast-2.0.0

Release Notes

  • Minimum Java version changed from 1.8 to 11.
  • Now supports Java 9+ modules with included module-info.class.
  • Maven artifact relocated from com.aoindustries:ao-sql-failfast to com.aoapps:ao-sql-failfast.
  • Package renamed from com.aoindustries.sql.failfast to com.aoapps.sql.failfast.

ao-sql-failfast-1.0.1

Release Notes

ao-sql-failfast-1.0.0

Release Notes

  • New project for fail-fast JDBC wrapper that makes a Connection perform in a fail-fast manner. All access to the connection will fail once a Throwable has been thrown by the underlying driver, with this state only being cleared by rollback.
  • Registered JDBC driver for default failfast implementation. This is activated by including a prefix in the JDBC URL, and may be combined.

    For example, the following JDBC URL will perform fail-fast on top of the PostgreSQL JDBC Driver: jdbc:failfast:postgresql://host/database.

    Finally, the following JDBC URL will perform fail-fast on top of tracking: jdbc:failfast:tracker:postgresql://host/database.