Dario Seidl
Dario Seidl
I was getting an error too when I run yarn install, on a project that indirectly depends on coa@^2.0.2. ``` yarn install v1.22.10 [1/4] Resolving packages... [2/4] Fetching packages... error...
@avtokey Are you using npm or yarn (or something else)? Do you have a direct dependency on coa in your package.json or just some other package that depends on coa?...
With yarn you can use `yarn why coa` to find out which package depends on it, and yarn supports `resolutions` in the package.json. npm doesn't have either, but you can...
In my case, MariaDB's `wait_timeout` was set to 600 s (by the docker container which uses the Debian package default instead of the upstream default 28800 s). [Setting the wait_timeout...
Without a rational for each recommendation, the checklist is not very useful (to me at least). Security is never perfect or absolute, so whether and how to secure something depends...
IMO, this is the easiest "solution". Docker doesn't respect the UFW rules, so the best thing to do is never to tell Docker to bind a port on all IPs...
I was facing the same problem (with an optional boolean in a `@ReponseBody` `data class`), and the only way to make it not required in the schema was to make...
@apatrida Thanks for the insight! I was struggling with this as well. If anyone is wondering, this means that the problem isn't so much with data classes, but with attributes...
For Java, JSR 303 support would be nice. Similarly for Kotlin, it would be great if the implementation could create null-checks depending on the nullability of the Kotlin types in...
There's a dependency on `jackson-databind` already (not optional, as far as I can see).