vemv

Results 785 comments of vemv

Hi Mike, awesome, I appreciate a lot the thorough effort. Now it might be a matter of nailing down the issue to a specific Fig version. Does it work correctly...

In case it helps, on a unixy box you can try the older Lein by downloading https://github.com/technomancy/leiningen/blob/2.9.8/bin/lein to somewhere in your path. Normaly I do `curl https://raw.githubusercontent.com/technomancy/leiningen/2.9.8/bin/lein > lein298` so...

Hi @eval-exec, thanks for the report. I use cider-doc quite often and haven't experienced that. Are you aware that the ns form where the `string` alias is declared has to...

Thanks for the report! I might be wrong but it may be because we create a ssh tunnel that doesn't get destroyed after use, something like that.

Nice! I've checked recent issues related to nrepl ssh tunnels and there wasn't one for this scenario specifically. I'm not immediately sure if disposing of this tunnel would be a...

Hi Lee! Thanks for the report. It would be reasonable to infer that if a web API is down, then it's down for all consumers. I'll leave the issue open...

Thanks! Let's see if I can update the core dep asap. Please nudge me if I don't.

Thanks for the notes! I'd recommend to override the dep as I can't guarantee that I'll be able to cut a release soon. Most times it's as easy as that....

You can view dependency-check-core's dependencies in: https://mvnrepository.com/artifact/org.owasp/dependency-check-core/10.0.3 You can declare them explicitly in that project.clj or exclude conflicting dependencies using `:exclusions`: [nvd-clojure "4.0.0" :exclusions [,,,]] (do this only for log4j...

Apparently you can: ``` clojure -Ttools install nvd-clojure/nvd-clojure '{:mvn/version "RELEASE"}' :as nvd clj -Sdeps '{:aliases {:change {:override-deps {clansi/clansi {:mvn/version "1.0.0"}}}}}' -A:change -Tnvd ``` `clansi/clansi` is an example, the actual overrides...