releases

A place to post minor releases of libraries and projects that you would not otherwise post in #announcements
borkdude 2021-03-03T09:16:20.001200Z

alexmiller 2021-03-03T22:15:17.001400Z

I have done a prerelease of the Clojure CLI (1.10.2.801) that switches git/ssh to shell out rather than using jgit/jsch. this potentially fixes many existing git/ssh issues in that it is just shelling out to git, so if it works there, it should work through clj. I would love to see any and all tire-kicking on this: • public https repos • https repos with user/pw auth (not previously supported, subject to whatever credentials you have set up through git) • private ssh git repos • newer key exchange methods like ecdsa-sha2-nistp256 • .ssh/config options that didn't work before • ed25519 identity keys • concurrency issues in parallel downloads (I think this is improved but I never had a working repro for it) • doesn't work on M1 macs • Windows • CI systems like Travis/Circle/etc when you're testing, don't forget that a) git dirs and working trees are cached in ~/.gitlibs - consider selectively clearing/moving that while testing), and b) classpaths are cached in .cpcache dirs - use clj -Sforce to force that to override

🖤 1
🎉 4
alexmiller 2021-03-03T22:19:19.001500Z

On Mac/Linux brew, do something like brew uninstall clojure and brew install clojure/tools/clojure@1.10.2.801 (you may also need to uninstall or re-link, brew will tell you) On Linux or Windows, use normal install https://clojure.org/guides/getting_started but with the 1.10.2.801 version

borkdude 2021-03-03T23:07:03.001800Z

brew install clojure/tools/clojure@1.10.2.801
doesn't work for me

borkdude 2021-03-03T23:07:10.002Z

without the version it does work

borkdude 2021-03-03T23:08:23.002200Z

oh sorry, I turned off brew updating, so I have to do it manually

borkdude 2021-03-03T23:08:31.002400Z

works now