This is an automated email from the ASF dual-hosted git repository.
borinquenkid pushed a change to branch 8.0.x-hibernate7-dev
in repository https://gitbox.apache.org/repos/asf/grails-core.git
from 54ad6b0604 hibernate 7: refactor BindCollectionElementBinder
new 01e532c240 hibernate 7: refactor BindCollectionElementBinder to
EnumTypeBinder
new c82b88776b hibernate 7: ### Build issue **Issue** misconfiguration of
grails-data-tck-config.gradle and core build.gradle
new a10ab1f03f hibernate 7:
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
gradle/grails-data-tck-config.gradle | 8 +-
grails-data-hibernate7/core/build.gradle | 5 +
.../grails/orm/hibernate/HibernateDatastore.java | 2 +-
.../grails/orm/hibernate/cfg/ColumnConfig.groovy | 82 +-
.../orm/hibernate/cfg/HibernateMappingContext.java | 5 +
.../cfg/HibernateMappingContextConfiguration.java | 21 +-
.../orm/hibernate/cfg/MappingCacheHolder.java | 8 +-
.../cfg/PropertyDefinitionDelegate.groovy | 4 +-
.../binder/ColumnConfigToColumnBinder.java | 2 +-
.../cfg/domainbinding/binder/EnumTypeBinder.java | 13 +-
.../domainbinding/binder/GrailsDomainBinder.java | 49 +-
.../hibernate/HibernateMappingBuilder.groovy | 4 +-
.../hibernate/HibernateToManyProperty.java | 98 ++-
.../secondpass/BasicCollectionElementBinder.java | 9 +-
.../secondpass/CollectionSecondPassBinder.java | 59 +-
.../secondpass/CollectionWithJoinTableBinder.java | 5 +-
.../domainbinding/util/CascadeBehaviorFetcher.java | 95 ++-
.../HibernateConnectionSourceFactory.java | 10 +-
.../orm/hibernate/query/HibernateHqlQuery.java | 3 +-
.../orm/hibernate/query/HqlListQueryBuilder.java | 4 +-
.../mapping/HibernateMappingBuilderSpec.groovy | 458 +++++++++++
.../mapping/HibernateMappingBuilderTests.groovy | 902 ---------------------
.../gorm/specs/HibernateGormDatastoreSpec.groovy | 13 +-
.../orm/hibernate/cfg/ColumnConfigSpec.groovy | 155 ++++
.../cfg/PropertyDefinitionDelegateSpec.groovy | 61 ++
.../CascadeBehaviorFetcherSpec.groovy | 258 +++---
.../cfg/domainbinding/CollectionBinderSpec.groovy | 2 +-
.../ColumnConfigToColumnBinderSpec.groovy | 48 ++
.../cfg/domainbinding/EnumTypeBinderSpec.groovy | 2 +-
.../domainbinding/GrailsPropertyBinderSpec.groovy | 2 +-
.../hibernate/HibernateToManyPropertySpec.groovy | 131 ++-
.../CollectionSecondPassBinderSpec.groovy | 48 +-
.../secondpass/ListSecondPassBinderSpec.groovy | 2 +-
.../secondpass/MapSecondPassBinderSpec.groovy | 40 +-
.../UnidirectionalOneToManyBinderSpec.groovy | 2 +-
35 files changed, 1408 insertions(+), 1202 deletions(-)
delete mode 100644
grails-data-hibernate7/core/src/test/groovy/grails/gorm/hibernate/mapping/HibernateMappingBuilderTests.groovy
create mode 100644
grails-data-hibernate7/core/src/test/groovy/org/grails/orm/hibernate/cfg/ColumnConfigSpec.groovy
create mode 100644
grails-data-hibernate7/core/src/test/groovy/org/grails/orm/hibernate/cfg/PropertyDefinitionDelegateSpec.groovy