Fork me on GitHub
#tools-deps
<
2018-05-13
>
Alex Miller (Clojure team)14:05:01

Now available: - tools.deps.alpha 0.5.435 - clj 1.9.0.381 - Support for Maven deps in authenticated repositories (TDEPS-9 - thanks Dominic Monroe!) - In local jar dependencies like {:local/root “path/to.jar”}, if the jar has an embedded pom, it will be used to traverse and include transitive deps - Use exec for final Java invocation in scripts (TDEPS-76 - thanks Mikhail Gusarov!) - Convey lib map via Java system property - a first step towards add-lib and other future functionality For Maven deps in authenticated repositories, existing Maven infrastructure is used to convey credentials via the ~/.m2/settings.xml:

<servers>
    …
    <server>
      <id>my-auth-repo</id>
      <username>zango</username>
      <password>123</password>
    </server>
    …
  </servers>
Then in your deps.edn include a repo with a name matching the <id>:
{:deps
 {authenticated/dep {:mvn/version "1.2.3"}}
 :mvn/repos
 {"my-auth-repo" {:url ""}}}

🎉 12
zentrope22:05:06

Are these release-notes/change-logs recorded anywhere? I see new homebrew versions every now and then and wonder what the changes are.

zentrope22:05:52

In other words, release notes of the whole thing CLI utility, not just individual libs?

zentrope23:05:52

I wish brew packages came with a change log of some sort built-in. Or brew info would show the latest changes. Mostly I don’t care, but sometimes it’s interesting.