This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-11-28
Channels
- # adventofcode (2)
- # aleph (4)
- # announcements (3)
- # asami (13)
- # babashka (27)
- # beginners (74)
- # clj-kondo (18)
- # cljdoc (1)
- # cljs-dev (27)
- # cljsrn (5)
- # clojure (75)
- # clojure-australia (5)
- # clojure-europe (25)
- # clojure-uk (2)
- # conjure (1)
- # core-logic (1)
- # deps-new (1)
- # fulcro (13)
- # gratitude (8)
- # honeysql (1)
- # lsp (24)
- # missionary (45)
- # mount (2)
- # nextjournal (24)
- # off-topic (10)
- # pathom (5)
- # portal (3)
- # releases (1)
- # shadow-cljs (7)
- # specter (1)
- # tools-deps (1)
https://github.com/seancorfield/honeysql 2.1.829 -- Turn Clojure data structures into SQL -- bug fixes for :not
and :nest
; enhancements for :add-column
and :drop-column
; various doc/build/test enhancements too (including automatically building, testing, and releasing to Clojars when a new release is created on GitHub)

tools-deps-native
0.0.5 is out which can be used as a pod with #babashka
Run tools-deps-alpha as a native binary.
https://github.com/babashka/tools-deps-native/releases/tag/v0.0.4
New:
• Windows support
• Available in the pod registry
Example usage as pod:
(require '[babashka.pods :as pods])
(pods/load-pod 'org.babashka/tools-deps-native "0.0.5")
(require '[clojure.tools.deps.alpha :as tda])
(->> (tda/create-basis {:project "deps.edn"
:extra '{:deps {buddy/buddy-core {:mvn/version "1.10.1"}}}})
:classpath-roots
(take 2))
;;=> ("src" "/Users/borkdude/.m2/repository/buddy/buddy-core/1.10.1/buddy-core-1.10.1.jar")
You can also use it with tools.bbuild which is designed to work with tools-deps-native.
https://github.com/babashka/tools.bbuild
Use with caution as these projects are still marked as experimental, although all tools.build tests pass.
Join #babashka for discussion.A new version of babashka/fs
: file system util library (mostly based on java.nio).
https://github.com/babashka/fs/blob/master/CHANGELOG.md
v0.1.2
• Add `with-temp-dir` macro https://github.com/babashka/fs/issues/37 (https://github.com/hugoduncan)
• Add `fs/home` and `fs/expand-home` https://github.com/babashka/fs/issues/12 https://github.com/babashka/fs/issues/13 (https://github.com/Kineolyan)
• Improve `which` on Windows: take into account `.com`, `.exe`, `.bat.`, `.cmd` when searching for program
v0.1.1
• Allow raw pattern to be passed to `fs/match` https://github.com/babashka/fs/issues/32
• unzip
: entry in dir can come before dir in zip entries https://github.com/babashka/fs/issues/35