Moritz Heidkamp
Moritz Heidkamp
Given that Clojure 1.11 is about to be released any day now, how about cutting a new release which includes https://github.com/dm3/clojure.java-time/pull/83 to get rid of the warning? Thanks for the...
As per [this comment](https://github.com/clj-commons/aleph/pull/484#issuecomment-1206366457), I get the impression that Netty's builtin leak detector is too unreliable to be useful. For example, [when introducing an intionally leaking test case](https://github.com/bevuta/aleph/commit/4f6554fe2310b237f4fd82f76f4f093e7a7e4ade) like this:...
This is a cherry-pick of dac2852c73c8ceeecaa15549c9de08dbcd530efd from the `1.0.0` adjusted to latest `master` and with some additions and corrections to docstrings. As per https://github.com/clj-commons/aleph/pull/608#issuecomment-1200103587
Hi, I'm having an issue with the combination of mutable registries and schema references, namely that references to schemas in the registry are dereferenced only once when a schema is...
Looks like there is no way to make `malli.util/closed-schema` recurse into `:ref` schemas. Reproduction, given the following schema definition: ```clojure (require '[malli.core :as m] '[malli.util :as mu]) (def some-schema [:map...
Hi, thanks for this neat little library! While exploring it, I was wondering why `::tk/states` is a sequence of maps with `::tk/name` rather than a map with `::tk/name` as keys....
Declaring new conversions via `def-conversion` which would make conversion between two types less costly are ineffective if the conversion in question has occurred at least once before. This is caused...
Converters are instantiated (and then memoized) lazily on first use. Since this is a rather heavy operation, it can influence timing-sensitive code as [recently observed in Aleph's test suite](https://github.com/clj-commons/aleph/issues/626). This...
When working on optimizing test performance, it would be very handy to have timing information in the test report. Something like this: Tested 1 namespaces in 12666 ms Ran 75...
This patch adds an option to filter the dependencies to be copied into the libdir. Possible values are a regular expression which is matched on the dependency jar file names...