Help

3.3.0.GA got released the other day with an uncaught problem. A public method got removed from some of the events (specifically PreInsertEvent and PreUpdateEvent) which is causing problems with Hibernate Validator and which will probably cause problems for any applications utilizing custom listeners for those events.

Therefore, later today I will be releasing 3.3.0.SP1 to correct that oversight. I apologize for any inconveniences.

The SP1 release has been done and is available as either the full distribution from SourceForge or as artifacts from the JBoss Maven repository.

2 comments:
10. Sep 2008, 22:14 CET | Link

The 3.3.0.SP1 hibernate jar does not appear to be in the JBoss Maven repository, nor are the sources. I would have expected to find them here.

Is this deliberate, or am I mis-understanding the dependencies?

ReplyQuote
10. Sep 2008, 23:25 CET | Link
Tom
http://repository.jboss.org/maven2/org/hibernate/hibernate-core/3.3.0.SP1/
http://maven.apache.org/guides/introduction/introduction-to-the-pom.html
http://repository.jboss.org/maven2/org/hibernate/hibernate/3.3.0.SP1/hibernate-3.3.0.SP1.pom

   <modules>
        <module>parent</module>
        <module>core</module>
        <module>cache-ehcache</module>
        <module>cache-jbosscache</module>
        <module>cache-jbosscache2</module>
        <module>cache-oscache</module>
        <module>cache-swarmcache</module>
        <module>connection-c3p0</module>
        <module>connection-proxool</module>
        <module>jmx</module>
        <module>testing</module>
        <module>testsuite</module>
        <module>tutorials</module>
    </modules>

Hope that helps.
Post Comment