Skip to content

Release 2.5.0-alpha1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 14 Dec 20:13
· 116 commits to main since this release
4780879

Changelog

Hilla 2.5.1

NOTE: If you plan to use the extension in combination with quarkus-spring-data-jpa or quarkus-hibernate-orm-panache, you need to pin Hibernate version to 6.2.x because higher versions are incompatible with Quarkus 3.6 artifacts.
Support for Hibernate 6.3+ should come with Quarkus 3.7.

    <properties>
       <hibernate.version>6.2.13.Final</hibernate.version>
    </properties>
    <dependencyManagement>
        <dependencies>
            <!--
                Hibernate version brought by Hilla is not compatible with Quarkus 3.6
                Pinning a supported version until Quarkus 3.7 will be out
            -->
            <dependency>
                <groupId>org.hibernate.orm</groupId>
                <artifactId>hibernate-core</artifactId>
                <version>${hibernate.version}</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate.orm</groupId>
                <artifactId>hibernate-graalvm</artifactId>
                <version>${hibernate.version}</version>
            </dependency>
        <dependencies>
    <dependencyManagement>

🐛 Fixes

Contributors

We'd like to thank the following people for their contributions:

  • Dario Götze
  • Marco Collovati