This repository was archived by the owner on Feb 4, 2026. It is now read-only.
1.2.0
This release includes improvements to logging functionality and fixes for database property parsing.
Key changes:
- Fixed database property parsing in connection URLs to properly handle the database parameter with consistent semantics across all properties
- Corrected logger package names to use the published package name (
software.amazon.dsql.jdbc) consistently throughout the project. If you were previously configuring log levels usingcom.amazon.jdbc, you can now remove that configuration assoftware.amazon.dsql.jdbcis the only package name needed. - Removed the
LazyLoggerclass in favor of the standardjava.util.logging.Loggerwhich already provides equivalent functionality. If you were usingLazyLoggerdirectly, please usejava.util.logging.Loggerinstead, which already includes built-in lazy evaluation for disabled log levels.
What's Changed
- Remove LazyLogger class by @danielfrankcom in #28
- Fix database property parsing by @danielfrankcom in #27
- Fix logger package names by @danielfrankcom in #29
- Avoid unnecessary operations for disabled log levels by @danielfrankcom in #30
Full Changelog: 1.1.2...1.2.0