sql

seancorfield 2025-01-28T21:04:27.732769Z

If you're using HikariCP and either next.jdbc 1.3.967 or 1.3.981, you should upgrade to 1.3.994.

👍 4
kulminaator 2025-02-02T18:21:58.103809Z

checking the change there from github ... i always try to avoid locking resources that i get from secondary libraries. it's always just asking for trouble when the "other guys" start to lock the same thing without a warning. sometimes i just use wrappers around them for that sole reason.

seancorfield 2025-02-02T18:37:44.653089Z

The original locking was added for Connection to address a specific bug some folks ran into. It then was transitively applied on DataSource by accident when that code was refactored, so this is just a fix for that. The underlying lock has been in place for a long time.

👍 1