flow
flow copied to clipboard
Vaadin Flow is a Java framework binding Vaadin web components to Java. This is part of Vaadin 10+.
`DataProvider.size` method returns an `int` and I find myself to always cast `long`s from repositories, e.g. JPA `CriteriaBuilder.count` or Spring's `CrudRepository.count` which both returns longs. Why not making `DataProvider.size` to...
Sort of reported [here](https://vaadin.com/forum/t/on-development-mode-and-production-mode/168386/2) . In this [fix](https://github.com/vaadin/flow/pull/20346/) the `flow-build-info.json` token file was scheduled to be deleted on jvm exit. However, there are things like [mvnd](https://github.com/apache/maven-mvnd), which keeps maven instances...
### Describe your motivation There was previously an automatic fallback bundle that included frontend dependencies for all components on the classpath that the bytecode analysis considered to not be used....
### Describe your motivation The sync id mismatch handling in `ServerRpcHandler` logs additional details only as debug messages. This might have made sense to avoid spamming the log previously when...
### Description of the bug After updating Microsoft Edge to version 143, the Vaadin application no longer starts reliably. A blank screen is frequently displayed, especially when launching the application...
Replace usage of ForkJoinPool.commonPool() in consumeProcessStreams() with a dedicated cached thread pool to prevent common pool exhaustion during parallel Maven builds. The common pool has limited parallelism (typically CPU cores...
The `wrapperElement` field in the `UI` class was incorrectly declared as `public`, which violates encapsulation principles and exposes internal implementation details. This PR addresses the issue by: 1. **Making the...
Configure flow-server to create a test-jar artifact and add it as a dependency to vaadin-dev-server. This allows vaadin-dev-server tests to use test utility classes from flow-server without creating a circular...
## Description Fixed the docs link to use `latest` branch, as `next` redirects to docs home page. Also removed mention of Vaadin 23 - that seems outdated and no longer...