Hibernate 3.6.1-Final has mainly bug fixes with several improvements.
Of particular interest are:
- HHH-5830 improves how Hibernate handles large string and binary (BLOB, LOB, LONGVARCHAR, LONGVARBINARY) SQL types, expecially for Oracle, PostgreSQL, and MS SQL Server.
- Fixes related to JPA 2.0.
- Improvements to better support MS SQL Server 2005 and 2008.
For more details about Hibernate 3.6.1-Final, see the release notes.
The artifacts have all been published to the JBoss Maven repository.
The release bundles have been uploaded to SourceForge.
Please report any issues to Jira. Visit us on IRC or the forums if you have usage questions.
Thanks!
Created: 03. Feb 2011, 23:27 CET (Gail Badner)
Last Modified: 04. Feb 2011, 00:23 CET (Gail Badner)
There is some place where I can see what is planning for Hibernate 4.0?
Thanks
Hibernate Roadmap
The Maven repository at https://repository.jboss.org/nexus/ (and at any other maven repository) does not contain any hibernate release that is even somewhere near up-to-date, and most of the hibernate versions posted there are empty pom files without the jar packages.. please fix this
The releases are at https://repository.jboss.org/nexus/content/repositories/releases/org/hibernate/ .
Yes, that's right. Hibernate annotations is part of hibernate-core now.
At Compile time everything works fine, but the call Persistence.createEntityManagerFactory("name"); fails: concrete the call from javax.persistence.spi.PersistenceProviderResolverHolder$PersistenceProviderResolverPerClassLoader$CachingPersistenceProviderResolver [line: 121] that tries to find PersistenceProvider implementations fails to find hibernate's PersistenceProvider unless I manually add hibernate3.jar from the release bundle from sourceforge (and add javassist as dependency). If this extra hibernate3.jar is added to the classpath then the resource URL "pathtojar/hibernate3.jar!/META-INF/services/javax.persistence.spi.PersistenceProvider" is found, and my EntityManagerFactory is correctly created.
Can somebody help me? what did I miss, which maven artefact from which repository contains hibernate's PersistenceProvider?