What's New With 4.12.0
What's new in CBOrm 4.12.0
Added
CI/CD Enhancements
BoxLang Runtime Compatibility
Code Quality
Fixed
Critical Bug Fixes
// Before (broken):
try {
var entityName = getSession(...).getEntityName(entity);
} catch (org.hibernate.TransientObjectException e) {
// Falls through without returning entityName
}
// After (fixed):
try {
return getSession(...).getEntityName(entity);
} catch (org.hibernate.TransientObjectException e) {
// Falls through to metadata discovery
}BoxLang Prime Compatibility
Testing Infrastructure
Release Date
Last updated
Was this helpful?