Welcome! Please see the About page for a little more info on how this works.

+1 vote
in tools.deps.graph by

Repro deps.edn:

{:deps {io.github.clojure/spec-alpha2 {:git/sha "99456b1856a6fd934e2c30b17920bd790dd81775"}}}

Running clj -X:project/graph-deps, where project/graph-deps is the following alias in ~/.clojure/deps.edn:

:project/graph-deps
{:replace-paths []
 :replace-deps  {org.clojure/tools.deps.graph {:mvn/version "1.0.63"}}
 :ns-default    clojure.tools.deps.graph
 :exec-fn       graph
 :exec-args     {:output "project-dependencies-graph.png"
                 :size   true}}

Results in:

Library io.github.clojure/spec-alpha2 has missing :sha in coordinate.

Bumping the version of tools.deps.alpha to 0.12.1090 seems to fix the issue

1 Answer

0 votes
by
selected by
 
Best answer

Thanks, released tools.deps.graph 1.1.68.

...