Branch: refs/heads/main
Home:
https://github.com/hibernate/hibernate-orm
Commit: a71ba9e3853fb943ac3301692f554684f293b09f
https://github.com/hibernate/hibernate-orm/commit/a71ba9e3853fb943ac33016...
Author: Steve Ebersole <steve(a)hibernate.org>
Date: 2022-01-05 (Wed, 05 Jan 2022)
Changed paths:
M documentation/src/main/asciidoc/userguide/chapters/domain/basic_types.adoc
M documentation/src/main/asciidoc/userguide/chapters/domain/collections.adoc
M documentation/src/main/asciidoc/userguide/chapters/domain/embeddables.adoc
R
documentation/src/main/asciidoc/userguide/chapters/domain/extras/collections/collections-value-type-collection-lifecycle-example.sql
A
documentation/src/main/asciidoc/userguide/chapters/domain/extras/collections/elemental-bag-lifecycle-example.sql
R
documentation/src/test/java/org/hibernate/userguide/collections/BasicTypeCollectionTest.java
M
documentation/src/test/java/org/hibernate/userguide/collections/BasicTypeElementCollectionTest.java
M
documentation/src/test/java/org/hibernate/userguide/collections/EmbeddableTypeElementCollectionTest.java
M documentation/src/test/java/org/hibernate/userguide/collections/QueueTest.java
R
documentation/src/test/java/org/hibernate/userguide/collections/type/CommaDelimitedStringsJavaTypeDescriptor.java
M
documentation/src/test/java/org/hibernate/userguide/collections/type/PersistentQueue.java
M hibernate-core/src/main/java/org/hibernate/Hibernate.java
M
hibernate-core/src/main/java/org/hibernate/action/internal/QueuedOperationCollectionAction.java
A hibernate-core/src/main/java/org/hibernate/annotations/CollectionSemantics.java
A
hibernate-core/src/main/java/org/hibernate/annotations/CollectionSemanticsRegistration.java
A
hibernate-core/src/main/java/org/hibernate/annotations/CollectionSemanticsRegistrations.java
M hibernate-core/src/main/java/org/hibernate/annotations/CollectionType.java
M hibernate-core/src/main/java/org/hibernate/annotations/CustomType.java
M hibernate-core/src/main/java/org/hibernate/cfg/AvailableSettings.java
M hibernate-core/src/main/java/org/hibernate/cfg/annotations/CollectionBinder.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/AbstractBagSemantics.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/AbstractMapSemantics.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/AbstractPersistentCollection.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/AbstractSetSemantics.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentArrayHolder.java
R hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentBag.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentIdentifierBag.java
R hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentList.java
R hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentMap.java
R hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentSet.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentSortedMap.java
R
hibernate-core/src/main/java/org/hibernate/collection/internal/PersistentSortedSet.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardArraySemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardBagSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardIdentifierBagSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardListSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardMapSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardOrderedMapSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardOrderedSetSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardSetSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardSortedMapSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/internal/StandardSortedSetSemantics.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/AbstractBagSemantics.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/AbstractMapSemantics.java
A
hibernate-core/src/main/java/org/hibernate/collection/spi/AbstractPersistentCollection.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/AbstractSetSemantics.java
M
hibernate-core/src/main/java/org/hibernate/collection/spi/CollectionInitializerProducer.java
M
hibernate-core/src/main/java/org/hibernate/collection/spi/CollectionSemanticsResolver.java
M
hibernate-core/src/main/java/org/hibernate/collection/spi/InitializerProducerBuilder.java
A
hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentArrayHolder.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentBag.java
M hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentCollection.java
A
hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentIdentifierBag.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentList.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentMap.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentSet.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentSortedMap.java
A hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentSortedSet.java
M hibernate-core/src/main/java/org/hibernate/engine/spi/CollectionEntry.java
M hibernate-core/src/main/java/org/hibernate/jpa/spi/JpaCompliance.java
M
hibernate-core/src/main/java/org/hibernate/sql/results/graph/collection/internal/AbstractCollectionAssembler.java
M
hibernate-core/src/main/java/org/hibernate/sql/results/graph/collection/internal/ArrayInitializer.java
M
hibernate-core/src/main/java/org/hibernate/sql/results/graph/collection/internal/BagInitializer.java
M
hibernate-core/src/main/java/org/hibernate/sql/results/graph/collection/internal/ListInitializer.java
M
hibernate-core/src/main/java/org/hibernate/sql/results/graph/collection/internal/MapInitializer.java
M
hibernate-core/src/main/java/org/hibernate/sql/results/graph/collection/internal/SetInitializer.java
M hibernate-core/src/main/java/org/hibernate/sql/results/internal/ResultsHelper.java
M hibernate-core/src/main/java/org/hibernate/type/ArrayType.java
M hibernate-core/src/main/java/org/hibernate/type/BagType.java
M hibernate-core/src/main/java/org/hibernate/type/CollectionType.java
M hibernate-core/src/main/java/org/hibernate/type/CustomType.java
M hibernate-core/src/main/java/org/hibernate/type/IdentifierBagType.java
M hibernate-core/src/main/java/org/hibernate/type/ListType.java
M hibernate-core/src/main/java/org/hibernate/type/MapType.java
M hibernate-core/src/main/java/org/hibernate/type/SetType.java
M hibernate-core/src/main/java/org/hibernate/type/SortedMapType.java
M hibernate-core/src/main/java/org/hibernate/type/SortedSetType.java
M hibernate-core/src/main/java/org/hibernate/type/descriptor/JdbcBindingLogging.java
M
hibernate-core/src/main/java/org/hibernate/type/descriptor/JdbcExtractingLogging.java
M hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc/BasicBinder.java
M hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc/BasicExtractor.java
M
hibernate-core/src/main/java/org/hibernate/type/internal/UserTypeSqlTypeAdapter.java
M hibernate-core/src/main/java/org/hibernate/usertype/UserType.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/annotations/generics/StateType.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/fetch/EnhancedFetchTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/fetch/FetchTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/bag/PersistentBagTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/delayedOperation/BagDelayedOperationNoCascadeTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/delayedOperation/BagDelayedOperationTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/delayedOperation/DetachedBagDelayedOperationTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/dereferenced/UnversionedCascadeDereferencedCollectionTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/dereferenced/UnversionedNoCascadeDereferencedCollectionTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/dereferenced/VersionedCascadeDereferencedCollectionTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/dereferenced/VersionedNoCascadeDereferencedCollectionTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/idbag/PersistentIdBagTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/list/PersistentListTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/map/PersistentMapTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/multisession/MultipleSessionCollectionTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/multisession/MultipleSessionCollectionWarningTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/set/PersistentSetTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/AbstractCollectionEventTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/jpa/query/QueryParametersValidationTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/asbasic/CommaDelimitedStringsConverter.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/asbasic/CommaDelimitedStringsConverterTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/Name.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/NameComparator.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/bag/BagTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/bag/EntityWithBagAsCollection.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/bag/EntityWithBagAsList.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/explicit/EntityWithExplicitSetClassification.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/list/EntityWithIndexBasedList.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/list/EntityWithList.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/list/EntityWithOrderColumnList.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/set/EntityWithNaturallySortedSet.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/set/EntityWithOrderedSet.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/set/EntityWithSet.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/classification/set/EntityWithSortedSet.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/nature/elemental/ElementalBagTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/nature/elemental/ElementalListTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/nature/elemental/Phone.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/nature/elemental/package-info.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/semantics/AnotherEntityWithUniqueList.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/semantics/CustomSemanticsTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/semantics/TheEntityWithUniqueList.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/semantics/UniqueListSemantic.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/semantics/UniqueListType.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/collections/semantics/UniqueListWrapper.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/onetomany/OneToManyEmptyCollectionTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/onetomany/OneToManySelfReferenceTest.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/basic/PersistentMyList.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/basic/User.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/declaredtype/PersistentHeadList.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/declaredtype/User.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/declaredtype/UserWithUnimplementedCollection.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/declaredtype/explicitsemantics/PersistentHeadList.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/declaredtype/explicitsemantics/User.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/parameterized/Entity.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/type/collection/custom/parameterized/PersistentDefaultableList.java
M hibernate-core/src/test/resources/log4j2.properties
M
hibernate-envers/src/test/java/org/hibernate/orm/test/envers/entities/customtype/ParametrizedTestUserType.java
M
hibernate-envers/src/test/java/org/hibernate/orm/test/envers/entities/ids/CustomEnumUserType.java
M migration-guide.adoc
M
tooling/metamodel-generator/src/test/java/org/hibernate/jpamodelgen/test/collectionbasictype/CommaDelimitedStringsMapType.java
Log Message:
-----------
Initial work to re-organize the Collections chapter in the UserGuide;
Docs for @CollectionType, @CollectionClassificationType and @CollectionSemantics;
Some api/spi/internal work;
Migration Guide;