Skip to content

Releases: mcollovati/vertx-vaadin

flow-14.6.0

12 Feb 12:18
Compare
Choose a tag to compare
  • Upgrade Vaadin to 14.8.4, Flow 2.7.11
  • Upgrade Vert.x to 4.2.3
  • Fix: use correct vertx context at startup
  • Fix: enumerate only string parameters on VaadinContext implementation
  • Fix: error propagation on Vaadin initialization
  • Fix: added missing gizmo resources

flow-14.5.0

04 Dec 14:28
Compare
Choose a tag to compare

Upgrade Vaadin to 14.7
Upgrade Vert.x to 4.2.1 (several breaking changes since 4.1.3)
Upgrade SockJS to 1.5.2 (fixes a JS instruction that failed to be parsed in some browsers)

Many thanks to @Dudeplayz for testing and troubleshooting

flow-21.0.0

09 Sep 19:06
Compare
Choose a tag to compare

Upgrade to Vaadin 21

flow-20.0.0

09 Aug 14:57
Compare
Choose a tag to compare

Upgrade to Vaadin 20
Upgrade to Vert.x 4.0+

flow-14.4.1

09 Aug 14:32
Compare
Choose a tag to compare

Added support for themeing

flow-14.4.0

26 May 18:37
Compare
Choose a tag to compare

Upgrade to Vaadin 14.6

flow-14.3.0

15 Apr 16:55
Compare
Choose a tag to compare

Upgrade to Vert.x 4
Porting of some fixes from Vaadin Flow

flow-19.0.0

17 Mar 21:15
Compare
Choose a tag to compare

Upgrade to Vaadin 19

flow-18.1.2

21 Feb 11:57
Compare
Choose a tag to compare

Transition to JFrog

Starting from this release, snapshots and vertx-vaadin-sockjs classifiers will be published on JFrog: https://mcollovati.jfrog.io/
NOTE: vertx-vaadin-sockjs classifiers will no more be published on maven central, so to use them a new repository must be added to your pom or gradle settings.

<repository>
	<id>vertx-vaadin-public</id>
	<url>https://mcollovati.jfrog.io/artifactory/vertx-vaadin-public</url>
    <releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
</repository>
repositories {
    maven { url 'https://mcollovati.jfrog.io/artifactory/vertx-vaadin-public' }
}

flow-18.1.0

07 Feb 11:53
Compare
Choose a tag to compare
  • Added support for Vaadin Connect Endpoints

WARNING: an implementation of Bean Validation provider must be present on classpath

e.g. for Hibernate Validator add this dependencies

        <dependency>
            <groupId>org.hibernate.validator</groupId>
            <artifactId>hibernate-validator</artifactId>
            <version>${hibernate-validator.versiom}</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.glassfish</groupId>
            <artifactId>javax.el</artifactId>
            <version>${glassfih-el.version}</version>
            <scope>runtime</scope>
        </dependency>

In future releases Vaadin Connect Endpoints support may be moved into a separated module, to make it and optional dependency of vertx-vaadin-flow.