Releases: mcollovati/vertx-vaadin
flow-14.6.0
- 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
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
Upgrade to Vaadin 21
flow-20.0.0
Upgrade to Vaadin 20
Upgrade to Vert.x 4.0+
flow-14.4.1
Added support for themeing
flow-14.4.0
Upgrade to Vaadin 14.6
flow-14.3.0
Upgrade to Vert.x 4
Porting of some fixes from Vaadin Flow
flow-19.0.0
Upgrade to Vaadin 19
flow-18.1.2
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
- 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.