Floyd May
Floyd May
The latest `create-react-app` installs version 17. Is it possible to update `peerDependencies` to include `^17.0.0` so I don't have a screenful of unmet peer dependency warnings?
The kube-lego container tends to climb in memory usage. Definitely has the appearance of a memory leak. I've had to kill the deployed pod and let it get rescheduled because...
The InMemory provider puts entities into the change tracker, so that code that works on a real database fails when using the InMemory provider. For example: ```csharp await context.Upsert(new Thing...
### What happened? Unable to authenticate using a client certificate; error message `the Client Certificate Path is not a valid pfx file: pkcs12: unknown digest algorithm: 2.16.840.1.101.3.4.2.1]`. There is an...
When loading files using the text loader, the loader doesn't strip byte order marks from the beginning of the file. For HTML files, for instance, this can turn into awkward...
The AbpWebApiClient does not reuse the underlying HttpClient, which causes unnecessary TCP connections. In my case, this caused TCP port exhaustion. By default, HttpClient uses KeepAlive = true, which reuses...