Stéphane Épardaud

Results 147 issues of Stéphane Épardaud

Apple has a new requirement that if we're creating accounts using OIDC we need to be able to delete them, and revoke the OIDC tokens: https://developer.apple.com/news/?id=12m75xbj We should add support...

As seen on quarkus-dev, we may have to check our processors for usage of two methods: There's a few breaking changes in Jandex 3.0 and the 2.4.3 release is supposed...

ATM we tell users to handle validation themselves because we want to allow more complex validation use-cases, and we want them to be able to control where to redirect to,...

```java public class Foo extends Controller { public native TemplateInstance index(); public TemplateInstance foo(){ return index(); } } public class Bar extends Controller { public TemplateInstance foo(){ return template(Foo.class).index(); }...

Like we do for URIs? It would allow us to skip non-required/injected params.

We should try to internationalise the sample TODO app and see if we have all the required bits from Qute/Quarkus in order to be able to set the language and...

ATM we generate `@Transactional` for `@POST/@PUT/@DELETE` endpoints, but that's a dependency on narayana-jta, which is only supported by Hibernate ORM. We should generate `@ReactiveTransactional` if the return type is async,...

ATM we generate missing `@Path` annotations based on the class and method name, but we should probably turn them from CamelCase into kebab-case. This needs docs updates too.

Related to #31340 Fixes #35064 Fixes #34577 partly - Added an option for "lightweight" keycloak Dev Service, currently behind a config option. IMO this should be the default and users...

area/oidc

Please @gavinking can you review this? - Support ORM/HR+Panache types such as anything that extends `PanacheEntityBase` or `PanacheRepositoryBase` to make sure to use their session getter type, but never generate...