From e566408baf1f5240149e1b101e528a367b7502c5 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Sun, 27 Oct 2024 00:01:56 -0700 Subject: [PATCH] Update CHANGELOG Note that the main reason for this is to allow the constants to to be loaded in separate classloaders. However, it also has the benefit of making the constant path look more like Ruby, though jamming multiple names together in one module (e.g. Java::ComIbmDb2Jcc::DB2Driver for com.ibm.db2.jcc.DB2Driver) looks odd. --- CHANGELOG | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 66d79e27d..3feaba486 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,7 @@ === master +* Use Ruby module naming instead of Java package naming for access to Java libraries in the jdbc adapters (kalenp) (#2235, #2236) + * Make schema_dumper extension format options similar to Hash#inspect on Ruby 3.4+ (jeremyevans) * Avoid deprecation warnings on Ruby 3.4.0-preview2 (jeremyevans)