Skip to content

Breaking Change: move SQL approvals to SqlApprovals

Choose a tag to compare

@JayBazuzi JayBazuzi released this 26 Feb 21:45
· 31 commits to master since this release

We have moved SQL-specific APIs from Approvals to a separate class, SqlApprovals.

This will break the following calls:

- Approvals.verify(ResultSet)
+ SqlApprovals.verify(ResultSet)
- Approvals.verify(SqlLoader)
+ SqlApprovals.verify(SqlLoader)

No behavior change; only the entry point moved.

We did this for compatibility with Java Modules (JPMS).