Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[1.0.1] - 2023-01-30
🪄 Added
- Read / Write Splitting and Load Balancing (Experimental). Ongoing changes are being implemented to mirror behaviour of the community MySQL JDBC driver. We do not recommend using this in production until an official release.
- The Aurora Stale DNS Plugin to prevent the user application from incorrectly opening a new connection to an old writer node when DNS records have not yet updated after a recent failover event. For more details, see here.
- FailoverSQLException classes for easier error handling. See example here.
- OSGi compatibility (PR #270).
- AwsCredentialsManager to customize credentials providers used in
IamAuthenticationPluginandAwsSecretsManagerPlugin. For more information, see the documentation.
🐛 Fixed
DataSourceConnectionProviderno longer removes user/password properties on connect (Issue #288 and Issue #305).- Runtime exceptions thrown as reported in issue #284.
- Incorrect log message in
PluginServiceImpl#setAvailabilitythat says host alias not found instead of empty hosts change list. - FailoverTimeoutMS not being obeyed during failover, causing failover to take twice as long (PR #244).
- Reader failover sometimes reconnect to writer instances as reported by Issue #233. Applications can now set the
failoverStrictReaderparameter to only allow failover to reader nodes during the reader failover process. See more details here. - AWS Secrets Manager Plugin leaking PoolingHttpClientConnectionManager (PR #321).
- Internal
inTransactionflag not being updated whenautocommitstatus changes (PR #282). - Incorrect wrapper version returned from
getDriverVersioncalls (PR #319). - Incorrect
setReadOnlybehaviour when the method is called on a closed connection (Issue #311). isCurrentHostWriterincorrectly return false during writer failover (PR #323).