4.1.8.FINAL release
This commit is contained in:
parent
f16a55f99c
commit
d0960620fb
|
@ -51,7 +51,7 @@ subprojects { subProject ->
|
|||
defaultTasks 'build'
|
||||
|
||||
group = 'org.hibernate'
|
||||
version = '4.1.8-SNAPSHOT'
|
||||
version = '4.1.8.FINAL'
|
||||
|
||||
// minimize changes, at least for now (gradle uses 'build' by default)..
|
||||
buildDir = "target"
|
||||
|
|
|
@ -5,7 +5,69 @@ match the actual issue resolution (i.e. a bug might not be a bug). Please
|
|||
refer to the particular case on JIRA using the issue tracking number to learn
|
||||
more about each case.
|
||||
|
||||
Changes in version 4.1.8 (2012.10.31)
|
||||
------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
** Bug
|
||||
* [HHH-1283] - ScrollableResults JoinFetch don't set child collection correctly after the second parent object
|
||||
* [HHH-1570] - criteria-api: filtering by key-many-to-one causes invalid sql
|
||||
* [HHH-4459] - Query with Composite Primary Key parameter crashes when query cache is on
|
||||
* [HHH-4635] - Oracle ORA-24816 inserting and updating data for entities containg LOB attributes
|
||||
* [HHH-5209] - org.hibernate.hql.ast.QuerySyntaxException when running a JPQL query with a MEMBER OF on an @ElementCollection
|
||||
* [HHH-5267] - NPE when updating a detached entity with a one-to-one association changed to null that is mapped with delete-orphan
|
||||
* [HHH-5376] - Tests contain invalid SQL
|
||||
* [HHH-5836] - Mapping collection of entities with same name and notnull constraints from two different entities results in duplicate property mapping of Backref
|
||||
* [HHH-6043] - PostLoad method invoked before collection initialised
|
||||
* [HHH-6349] - AuditJoinTable rows missing when detached entities with collections are merged into the persistence context
|
||||
* [HHH-6655] - trim function on DB2 is broken
|
||||
* [HHH-6972] - Support PostgreSQL and Oracle LOBs
|
||||
* [HHH-7309] - Natural-id not cached in shared cache after insert
|
||||
* [HHH-7359] - Trace logging causes numerous test errors
|
||||
* [HHH-7487] - org.hibernate.type.EnumType incorrectly logs binded values
|
||||
* [HHH-7541] - When using HSQLDB, inserting any CLOB value larger than 16Mb always fails with an exception
|
||||
* [HHH-7569] - Correct test-only failures in hibernate-core-master-matrix CI job
|
||||
* [HHH-7575] - Hibernate Getting Started Guide refers to incorrect tutorial directory for annotations tutoral
|
||||
* [HHH-7577] - Dialect's supportsNotNullUnique not working when false
|
||||
* [HHH-7578] - Sybase does not support "unique not null"
|
||||
* [HHH-7579] - Oracle does not support "unique not null"
|
||||
* [HHH-7584] - Sybase dialects attempting to use BLOB types
|
||||
* [HHH-7586] - Re-architect Type or TypeFactory dynamic descriptors
|
||||
* [HHH-7603] - NullPointerException being thrown instead of LazyInitializationException with collection reattach change
|
||||
* [HHH-7640] - Enhancements to speed up and reduce mem consumption for Infinispan 2LC
|
||||
* [HHH-7644] - Correct memory leak introduced by HHH-7557
|
||||
* [HHH-7669] - JtaTransaction test fails on Oracle RAC
|
||||
* [HHH-7674] - DB locks not cleared on LazyLoadingTest#testLazyCollectionLoadingWithClearedSession
|
||||
* [HHH-7690] - Fix for @ManyToOne using @embeddedid with @ManyToOne inside
|
||||
* [HHH-7692] - Postgres 9 and 9.1 use 8.1 dialect instead of 8.2 by default
|
||||
* [HHH-7693] - SQL Server 2012 gets the SQL Server 2000 dialect by default
|
||||
* [HHH-7711] - SchemaExport doesn't create file with script if both parameters exportToDatabase and scriptToConsole are false
|
||||
* [HHH-7721] - SQLFunctionRegistry findSQLFunction does not honor case sensitivity
|
||||
* [HHH-7724] - JpaLargeBlobTest failing on multiple DBs
|
||||
* [HHH-7730] - SchemaExportManagedConnectionTest#testGenerateDdlToFile failing on Oracle & Sybase
|
||||
* [HHH-7732] - QueryTest#testMemberOfSyntax failing on Oracle
|
||||
* [HHH-7733] - NativeSQLQueriesTest failing on Postgres
|
||||
* [HHH-7734] - SerializableTypeTest#testNewSerializableType failing for Oracle 11G R1
|
||||
|
||||
** Improvement
|
||||
* [HHH-1775] - collection batch fetching
|
||||
* [HHH-6452] - PostgreSQL Dialect does not fully implement NOWAIT locking
|
||||
* [HHH-6682] - add support for oracle "bitand" function to Oracle Dialect
|
||||
* [HHH-7631] - Improve performance of UpdateTimestampsCache
|
||||
* [HHH-7633] - Improve performance of IdentityMap
|
||||
* [HHH-7683] - Optimize performance of AbstractLazyInitializer.prepareForPossibleSpecialSpecjInitialization()
|
||||
* [HHH-7698] - In efficient LOB creations backed by streams
|
||||
* [HHH-7725] - Make handling multi-table bulk HQL operations more pluggable
|
||||
* [HHH-7728] - Add equals method in the table class
|
||||
|
||||
** Patch
|
||||
* [HHH-6361] - Collection events may contain wrong stored snapshot after merging a detached entity into the persistencecontext
|
||||
|
||||
** Task
|
||||
* [HHH-7710] - Align Infinispan 5.x versions in 2LC implementation in 4.1.x branch
|
||||
|
||||
|
||||
Changes in version 4.1.7 (2012.09.06)
|
||||
------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
** Bug
|
||||
* [HHH-5188] - Use provided enum type ordinal/string when reading
|
||||
|
|
Loading…
Reference in New Issue