Martin Häusler
Martin Häusler
I apparently had the same issue as @stilllife00 and @brianmriley and I can confirm that pinning the version of `history` to 4.10.1 did indeed resolve the issue. I'm glad that...
@LyleDavis `AsyncLocal` sounds like what is needed here. I think what we're supposed to use is the coroutine context. However, back in the day when I attempted to do this...
Spring had the `SecurityContextHolder` for a long time, which is globally acessible in an (internally managed) `ThreadLocal`. They're doing just fine with it, never had any complaints about it. The...
On a related note, React actually prints a warning when adding non-passive event listeners to certain events.  I get this warning several times when mounting a CodeMirror component.
I would very much welcome a `oneOf` method. My use case is that in the test I get a list of two (complex) objects. I know all assertions I need...
I think that this one is actually quite important. In fact, the cases where the assertion fails are way more important to print to the console than the cases where...
In theory it should be possible to define a single `isNotNull` method that works on both nullable and non-nullable types, right? Or is the generic typebound on `Builder` getting in...
Seems like I spoke too soon: I just did some quick testing with contracts, and they are not officially out of the experimental phase. The consequence is that all code...
@rwinch The issue occurred on Eclipse Adoptium 17.0.3 (successor to AdoptOpenJDK). We're using the embedded tomcat that comes with Spring Boot 2.7.0.
@rwinch my team employs a rather strict policy when it comes to dependency management (and their versions). Most of the time we're on the latest patch level; maybe this was...