Andriy Slobodyanyk
Andriy Slobodyanyk
Luckily that old working version remained at my private laptop ``` ❯ docker run -it --rm --network some_network arm64v8/alpine getent hosts oracle 192.168.5.2 oracle oracle ``` The entry is resolved...
So, made a binary search :-) to detect the issue. It worked latest at `0.5.6`, stopped working at `0.6.0`. I seem to have to downgrade as [described](https://github.com/abiosoft/colima/issues/877) as `brew install...
@jdmarshall brew installs just the latest version of colima, if you need other one you seem to have to install it [manually](https://github.com/abiosoft/colima/issues/877)
Hi, I have the similar issue and I know its cause, not sure how widespread it is. **TL; DR**. At the corporate environment there is CyberARK installed that prevents using...
@osjoholm @s33dunda So, as I expected the corporate support didn't make me an exception for CyberARK but I made a simple workaround. What did I need a network address for?...
That was done recently for the regular Java clients https://github.com/OpenAPITools/openapi-generator/issues/19600 but not for Spring unfortunately.
If I am not mistaken, `@Nullable` should mark either non-**required** fields or ones with `nullable: true`
@pcuriel I've just submitted the [PR](https://github.com/OpenAPITools/openapi-generator/pull/20345). Preferred to use `@Nullable` from Spring. That is not I am against JSpecify one but it should be done as a separate story. Also,...
@frecco75 I was thinking about it but for the **required** and **non-nullable** (`nullable: false` with is a default) the generator creates ```java public class Pet { @JsonProperty("name") private String requiredName...