Branch: refs/heads/6.2
Home:
https://github.com/hibernate/hibernate-orm
Commit: 15b24d6c1428dfc587dcf9b0afd581902cbde0a1
https://github.com/hibernate/hibernate-orm/commit/15b24d6c1428dfc587dcf9b...
Author: Steve Ebersole <steve(a)hibernate.org>
Date: 2023-02-10 (Fri, 10 Feb 2023)
Changed paths:
M
documentation/src/main/asciidoc/userguide/chapters/domain/extras/immutability/collection-immutability-update-example.log.txt
M documentation/src/main/asciidoc/userguide/chapters/domain/immutability.adoc
R
documentation/src/test/java/org/hibernate/userguide/immutability/CollectionImmutabilityTest.java
R
documentation/src/test/java/org/hibernate/userguide/immutability/EntityImmutabilityTest.java
M hibernate-core/src/main/java/org/hibernate/annotations/Mutability.java
M
hibernate-core/src/main/java/org/hibernate/boot/model/internal/BasicValueBinder.java
M hibernate-core/src/main/java/org/hibernate/boot/model/internal/EntityBinder.java
M
hibernate-core/src/main/java/org/hibernate/boot/model/process/internal/InferredBasicValueResolver.java
M hibernate-core/src/main/java/org/hibernate/mapping/BasicValue.java
M
hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/MappingModelCreationHelper.java
A hibernate-core/src/main/java/org/hibernate/type/descriptor/java/Immutability.java
M
hibernate-core/src/main/java/org/hibernate/type/descriptor/java/ImmutableMutabilityPlan.java
R
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/converted/converter/mutabiity/ConvertedMapImmutableTests.java
R
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/converted/converter/mutabiity/ConvertedMapMutableTests.java
R
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/converted/converter/mutabiity/ConvertedMutabilityTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/MutabilityBaselineEntity.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/attribute/BasicAttributeMutabilityTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/attribute/EntityAttributeMutabilityTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/attribute/ImmutabilityMapAsBasicTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/attribute/ImmutableMapAsBasicTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/attribute/MutableMapAsBasicTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/attribute/PluralAttributeMutabilityTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/DateConverter.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/ImmutabilityConverterTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/ImmutabilityDateConverter.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/ImmutabilityMapConverter.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/ImmutableConvertedBaselineTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/ImmutableConverterTests.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/ImmutableDateConverter.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/ImmutableMapConverter.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/converted/MapConverter.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/entity/EntityImmutabilityTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/entity/EntityMutabilityPlanTest.java
A
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/mutability/entity/package-info.java
M
hibernate-testing/src/main/java/org/hibernate/testing/orm/junit/DomainModelScope.java
M
hibernate-testing/src/main/java/org/hibernate/testing/orm/junit/SessionFactoryScope.java
Log Message:
-----------
HHH-16148 - Introduce Immutability (MutabilityPlan) for use with @Mutability
HHH-16141 - Support @Mutability and @Immutable on UserType
HHH-16147 - Support @Mutability and @Immutable on AttributeConverter
HHH-16146 - Improve User Guide documentation for (im)mutability