Skip to content

Releases: mcollovati/quarkus-hilla

Release 24.4.0-alpha1

23 Mar 09:30
e4a900b
Compare
Choose a tag to compare
Release 24.4.0-alpha1 Pre-release
Pre-release

Changelog

Refactoring required to adapt to Vaadin unified platform (24.4+).

This is the first alpha version that comes with support for the new-coming Vaadin unified platform.
Because of changes in Hilla artifacts, bumping quarkus-hilla version may not be enough to migrate an existing project.

A partial list of modifications that should be applied:

  • dev.hilla:hilla-bom should be replaced by com.vaadin:vaadin-bom
  • dev.hilla:hilla-maven-plugin should be replaced by com.vaadin:vaadin-maven-plugin
  • Hilla classes packages in imports should be changed from dev.hilla to com.vaadin.hilla
  • Hilla NPM packages should be changed from @hilla/... to the equivalent @vaadin/... (e.g. @hilla/react-components to @vaadin/react-components, or @hilla/react-crud to @vaadin/hilla-react-crud)

Release 24.0.0-alpha2

23 Mar 09:22
e4a900b
Compare
Choose a tag to compare
Release 24.0.0-alpha2 Pre-release
Pre-release

Changelog

🐛 Fixes

🔄️ Changes

Contributors

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

  • Marco Collovati
  • mcollovati

Release 24.0.0-alpha1

19 Feb 16:04
fd7dbc4
Compare
Choose a tag to compare
Release 24.0.0-alpha1 Pre-release
Pre-release

Changelog

Refactoring required to adapt to Vaadin unified platform.

This is the first alpha version that comes with support for the new-coming Vaadin unified platform.
Because of changes in Hilla artifacts, bumping quarkus-hilla version may not be enough to migrate an existing project.

A partial list of modifications that should be applied:

  • dev.hilla:hilla-bom should be replaced by com.vaadin:vaadin-bom
  • dev.hilla:hilla-maven-plugin should be replaced by com.vaadin:vaadin-maven-plugin
  • Hilla classes packages in imports should be changed from dev.hilla to com.vaadin.hilla
  • Hilla NPM packages should be changed from @hilla/... to the equivalent @vaadin/... (e.g. @hilla/react-components to @vaadin/react-components, or @hilla/react-crud to @vaadin/hilla-react-crud)

Contributors

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

  • Marco Collovati

Release 2.5.0

25 Jan 17:31
d491fa9
Compare
Choose a tag to compare

Changelog

Update dependencies

Contributors

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

  • Marco Collovati

Release 2.5.0-alpha2

30 Dec 10:35
d99f55e
Compare
Choose a tag to compare
Release 2.5.0-alpha2 Pre-release
Pre-release

Changelog

🚀 Features

Contributors

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

  • Marco Collovati

Release 2.5.0-alpha1

14 Dec 20:13
4780879
Compare
Choose a tag to compare
Release 2.5.0-alpha1 Pre-release
Pre-release

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

Release 2.4.2

30 Nov 21:52
480c655
Compare
Choose a tag to compare

Changelog

🐛 Fixes

  • 480c655 read quarkus-hilla version from commons artifact

Contributors

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

  • Marco Collovati

Release 2.4.1

29 Nov 20:30
03500b7
Compare
Choose a tag to compare

News

To simplify the usage of quarkus-hilla with React a new quarkus-hilla-react extension has been introduced.

Both quakus-hilla and quarkus-hilla-react contain their own codestart that creates a working application.

The extensions also provide implementations of CrudRepositoryService and ListRepositoryService to be used with quarkus-spring-data-jpa or quarkus-hibernate-orm-panache.
That means an application based on quarkus-hilla-react can benefit from the amazing AutoCrud and AutoForm Hilla features.

Changelog

🚀 Features

Contributors

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

  • Dario Götze
  • Marco Collovati

Release 2.3.1

28 Nov 21:10
3e40593
Compare
Choose a tag to compare

Changelog

No code changes. This version pins Hilla to 2.3.4 to fix npm packages issues.

Contributors

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

  • Marco Collovati

Release 1.3.0

27 Nov 18:30
e4e164b
Compare
Choose a tag to compare

Changelog

🐛 Fixes

  • 8aeeb10 fix urls in flattened POM files (#132)
  • f7fc4e5 actions: skip validation check for ignored paths (#120)

Contributors

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

  • Dario Götze
  • Marco Collovati