-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Migration Guide 3.5
A user tag is now executed as an isolated template by default, i.e. without access to the context of the template that calls the tag.
If you need to change the default behavior and disable the isolation, just add _isolated=false
or _unisolated
argument to the call site. For example {#itemDetail item showImage=true _isolated=false /}
or {#itemDetail item showImage=true _unisolated /}
. See also the discussion for more details.
io.quarkus.qute.ResultNode
is now an abstract class (it was an interface). In general, the ResultNode
should not be implemented by users but it’s part of the public API.
The Qute API is built on top of java.util.concurrent.CompletionStage
. Up to now, any implementation could be used in the API. Since Quarkus 3.5 only the java.util.concurrent.CompletableFuture
and the internal io.quarkus.qute.CompletedStage
are supported by default. The behavior can be changed with the system property -Dquarkus.qute.unrestricted-completion-stage-support=true
.