This is an automated email from the ASF dual-hosted git repository.
borinquenkid pushed a change to branch 8.0.x-hibernate7
in repository https://gitbox.apache.org/repos/asf/grails-core.git
from 7600f5d133 cleanup
new df955a6117 progress
new 1cfbaae8d1 progress
new 32cf7a022b progress
new b192f1259b progress
new 9870809c01 progress
new 2991673c71 progress
new 578fc1bcf5 progress
The 7 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:
.../orm/hibernate/cfg/GrailsDomainBinder.java | 105 +------------
.../orm/hibernate/cfg/GrailsDomainBinder.java | 107 +------------
grails-data-hibernate7/core/01.txt | 10 --
.../orm/hibernate/cfg/GrailsDomainBinder.java | 175 +++++----------------
.../orm/hibernate/cfg/MappingCacheHolder.java | 4 +-
.../collectionType/BagCollectionType.java | 28 ++++
.../collectionType/CollectionHolder.java | 27 ++++
.../collectionType/CollectionType.java | 82 ++++++++++
.../collectionType/ListCollectionType.java | 29 ++++
.../collectionType/MapCollectionType.java | 28 ++++
.../collectionType/SetCollectionType.java | 29 ++++
.../collectionType/SortedSetCollectionType.java | 30 ++++
.../gorm/specs/HibernateGormDatastoreSpec.groovy | 5 +-
.../grails/gorm/specs/perf/JoinPerfSpec.groovy | 26 ++-
.../cfg/domainbinding/TypeNameProviderSpec.groovy | 3 +-
...intWorksWithTargetProxiesConstraintsSpec.groovy | 4 +-
.../testing/tck/tests/DirtyCheckingSpec.groovy | 1 +
.../data/testing/tck/tests/QueryEventsSpec.groovy | 41 ++---
.../tck/tests/SessionCreationEventSpec.groovy | 18 ++-
19 files changed, 358 insertions(+), 394 deletions(-)
create mode 100644
grails-data-hibernate7/core/src/main/groovy/org/grails/orm/hibernate/cfg/domainbinding/collectionType/BagCollectionType.java
create mode 100644
grails-data-hibernate7/core/src/main/groovy/org/grails/orm/hibernate/cfg/domainbinding/collectionType/CollectionHolder.java
create mode 100644
grails-data-hibernate7/core/src/main/groovy/org/grails/orm/hibernate/cfg/domainbinding/collectionType/CollectionType.java
create mode 100644
grails-data-hibernate7/core/src/main/groovy/org/grails/orm/hibernate/cfg/domainbinding/collectionType/ListCollectionType.java
create mode 100644
grails-data-hibernate7/core/src/main/groovy/org/grails/orm/hibernate/cfg/domainbinding/collectionType/MapCollectionType.java
create mode 100644
grails-data-hibernate7/core/src/main/groovy/org/grails/orm/hibernate/cfg/domainbinding/collectionType/SetCollectionType.java
create mode 100644
grails-data-hibernate7/core/src/main/groovy/org/grails/orm/hibernate/cfg/domainbinding/collectionType/SortedSetCollectionType.java