------------------------------------------------------------------- Sat Sep 20 15:54:47 UTC 2025 - Fridrich Strba - Modified patch: * no-script-in-comment.patch + modify to actually produce useful javadoc ------------------------------------------------------------------- Thu Sep 18 12:39:34 UTC 2025 - Fridrich Strba - Version update to 3.5.7 * Bug fixes: + Improved performance under JDK 8. #2223 - Version update to 3.5.8 * List of changes: + Avoid NullPointerException when mapping an empty string to java.lang.Character. #2368 + Fixed an incorrect argument when initializing static object. This resolves a compatibility issue with quarkus-mybatis. #2284 + Performance improvements. #2297 #2335 #2340 - Version update to 3.5.9 * List of changes: + Add nullable to . If enabled, it skips the iteration when the collection is null instead of throwing an exception. To enable this feature globally, set nullableOnForEach=true in the config. #1883 - Version update to 3.5.10 * Bug fixes: + Unexpected illegal reflective access warning (or InaccessibleObjectException on Java 16+) when calling method in OGNL expression. #2392 + IllegalAccessException when auto-mapping Records (JEP-359) #2195 ° 'interrupted' status is not set when PooledConnection#getConnection() is interrupted. #2503 * Enhancements: + A new option argNameBasedConstructorAutoMapping is added. If enabled, constructor argument names are used to look up columns when auto-mapping. #2192 + Added a new property skipSetAutoCommitOnClose to JdbcTransactionFactory. Skipping setAutoCommit() call could improve performance with some drivers. #2426 + can now be listed after in . #2541 - Version update to 3.5.11 * Bug fixes: + OGNL could throw IllegalArgumentException when invoking inherited method. #2609 + returnInstanceForEmptyRow is not applied to constructor auto-mapping. #2665 - Version update to 3.5.12 * User impactful changes + #2703 Referencing collection parameter by name fails fixing #2693 + #2709 Fix a race condition caused by other threads calling mapper methods while mapped tables are being constructed + #2727 Enable ability to provide custom configuration to XMLConfigBuilder + #2731 Adding mapper could fail under JPMS + #2741 Add 'affectedData' attribute to @select, @SelectProvider, and