Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: vaadin/quarkus

Tags

3.0.0-beta2

Toggle 3.0.0-beta2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: update codestart to use aura theme (#221)

3.0.0-beta1

Toggle 3.0.0-beta1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: bump Quarkus to 3.27 (#216)

3.0.0-alpha3

Toggle 3.0.0-alpha3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: bump Quarkus to 3.27 (#216)

3.0.0-alpha2

Toggle 3.0.0-alpha2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: handle missing reflection hints (#214)

Add reflection hints for AvailableViewInfo.DetailSerializer and AvailableViewInfo.DetailDeserializer
that are not automatically handled by quarkus-jackson because it supports only Jackson 2.
Also adds missing hint for Signals Id class. Other Signal types (e.g. commands) are registerd
by quarkus-jackson extension, since the used annotation are still from Jackson 2 package.

3.0.0-alpha1

Toggle 3.0.0-alpha1's commit message
chore: update codestart

Moved frontend files to src/main/frontend and removes
legacy component styling causing bundle rebuild.

2.2.1

Toggle 2.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: prevent the extension to be listed in DevUI (#210)

Adds the unlisted key to the extension metadata to prevent it
to be shown in Dev UI.
The platform extension will have the flag set to false, so
that there will be only one Vaadin extension shown in Dev UI.

Fixes #160

2.2.0

Toggle 2.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: detect specific Executor for VaadinService (#203)

Enhances Quarkus VaadinService implementation trying to detect the best Executor
option available at runtime. It first looks for an Executor bean annotated with
@VaadinServiceEnabled and then it fallbacks to the Quarkus provided
ManagedExecutor.

Closes #200

2.2.0.rc1

Toggle 2.2.0.rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: detect specific Executor for VaadinService (#203)

Enhances Quarkus VaadinService implementation trying to detect the best Executor
option available at runtime. It first looks for an Executor bean annotated with
@VaadinServiceEnabled and then it fallbacks to the Quarkus provided
ManagedExecutor.

Closes #200

2.2.0.alpha1

Toggle 2.2.0.alpha1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: detect specific Executor for VaadinService (#203)

Enhances Quarkus VaadinService implementation trying to detect the best Executor
option available at runtime. It first looks for an Executor bean annotated with
@VaadinServiceEnabled and then it fallbacks to the Quarkus provided
ManagedExecutor.

Closes #200

2.1.3

Toggle 2.1.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: add replacement for VaadinSpringDataHelpers in native build (#195)

Some Vaadin Java components like Grid and Combobox define methods using
VaadinSpringDataHelper utility from vaadin-spring module. In a Quarkus
application that module is usually not present, and causes native build
to fail.
This change provides a stub implementation that throws exception when
methods are invoked.

Fixes #194