Rüdiger zu Dohna
Rüdiger zu Dohna
Say I have multiple methods in a GraphQL API class with the same name but different parameters: ```java @GraphQLApi public class Users { @Mutation public String add(User user) { ......
Support `@Union` in typesafe client.
I just found the following code in `RequestImpl` that necessitates the dependency on yasson, which we should get rid of. ```java try (Jsonb jsonb = JsonbBuilder.create()) { JsonStructure struct =...
I run my integration tests in parallel and every test needs a different configuration. In order to make this possible, I wrote a [Thread Local Config Source](https://github.com/t1/thread-local-config-source/). But now my...
## Overview As (almost) suggested in #944, I've added a method `ExtensionContext#getResolvedParameters` (and `getRequiredResolvedParameters`) and an interface `ResolvedParameters`. The `AbstractExtensionContext` can store and return those. The `ParameterResolutionUtils` store them, but...
### Page(s) https://playwright.dev/java/docs/ci-intro ### Description I think there are two details that could be improved: * In the [Introduction](https://playwright.dev/java/docs/ci-intro#introduction), the "detailed doc on Continuous Integration" could link to https://playwright.dev/java/docs/ci *...
We want to use the BeanValidation Groups feature to validate the same parameter with different validators. E.g.: ```java @Path("/names") public class Names { @POST public Name createName(@Valid @NotNull @ConvertGroup(to =...